Re: [PHP] Re: Still problem with file reading

2007-01-05 Thread David Giragosian
Why don't you start by running file_exists() on another file in the same directory: if (file_exists("./findMe.php")) echo "It's here"; then, directory by directory, move towards where you want the real file to be read. If a move fails, check permissions as already suggested ( and capitali

[PHP] Re: Still problem with file reading

2007-01-05 Thread Al
You probably have a owner and/or permissions problem. Try setting the dir to 777. Read fopen() in the php manual. There are dozens of user notes on the subject. Delta Storm wrote: Hi, I wrote a while back saying of my problem... I tried to read a file I tried in a couple of ways and i poste