Re: [PHP] PHP Cached Templates

2004-09-02 Thread William Moore
On Tue, 31 Aug 2004 16:24:19 -0400, rogue <[EMAIL PROTECTED]> wrote: > Sorry if this is the wrong place for this post. I am having problems > where PHP templates that I modify via ftp are not showing changes for > like 1 minute or so. I assume this is some kind of server caching but I > am not sure

Re: [PHP] Parsing large file

2004-08-31 Thread William Moore
> We have a text file that is 2.2gb in size that we are trying to parse > using PHP to put the content into a mysql database. This file contains > 40 million individual lines of data. Basically PHP isn't parsing it. > Any suggestions of how we could do this? Without knowing more information (eg:

Re: [PHP] unlink() & rmdir() ... Problems.

2004-08-24 Thread William Moore
The reason this works is because you are doing a recursive remove of the directory. The PHP rmdir() does not remove a directory with contents in it. If you modify your script so that it walks the users directory and removes each file and subdirectory then it would probally have worked correctly.