Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BostonChowder

    mod_rewrite Avoiding "inheritance"

    I am using mod_rewrite to take all non-existant .htm files called and change them into .php then direct those called files that still do not exist to one file which works magic to run a web site. THe following is in a .htaccess file: RewriteEngine on rewritecond %{REQUEST_FILENAME} !-f...
  2. BostonChowder

    Using virtualhosts with MSIE without connecting to the internet

    I found that thread here: thread608-494818 it did not work for me. IE still wants to connect to the internet the moment I click a Fully Qualified Domain Name, including my own. I need to find a way perhaps to set up a DNS system on my PC, but there has got to be asimpler/smarter way.
  3. BostonChowder

    PHPlist: send automatically based on date/time??

    You might want to check into using cron.
  4. BostonChowder

    Framesets & PHP

    Perhaps if you do: <script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;> <!-- if (top==self) self.location.href=&quot;index.php?page=<?php echo $_SERVER['REQUEST_URI']; ?>&quot;; --> </script> and then have index.php load $_GET['page'] into the frame.
  5. BostonChowder

    Using virtualhosts with MSIE without connecting to the internet

    I do a lot of php script testing on my home box Win 98SE. I have apache running with virtualhosts set up and pointed to in my hosts file. In order to mimic what happens on the live server I have created the domains hosted on my computer with the tld of .bob so I connect to mydomain.bob instead...
  6. BostonChowder

    Recursive Delete

    I had some trouble with this. I used exec('rm -rf modules'); to remove the directory &quot;modules&quot; which was in the same directory as the php script holding this command. I had echo statemants on each side of the command and they printed out, but the directory was never deleted.
  7. BostonChowder

    Recursive Delete

    I am trying to delete a large tree of files on my server. What I need is a way to delete it quickly using php. I usually use telnet with rm -rf directory But I do not have telnet access to this particular server. How can I do this in PHP?
  8. BostonChowder

    cell color change onmouseout

    I have a table set up with a background image. When the mouse goes over a cell it changes color and when the mouse goes out the image peeks out again, but only in IE. Netscape changes the color on mouseover, but I can't get it to revert on mouse out. Oh, I also put in the javascript to make...

Part and Inventory Search

Back
Top