Posted by "Mark Rees" on 10/19/05 16:10
>
> > This is line 57 $file_handle = fopen("./" . $file_name, "r");
>
> It seems that the user your web server runs as may not have permission to
> open that file. Also, you might want to double check that ./$ile_name is a
> valid path.
And if you're planning to write to the file, you need to specify that. "r"
means "open for reading only". Read up on the possibilities here:
http://uk2.php.net/fopen
[Back to original message]
|