
November 4th, 1999, 03:37 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Hello, Iīm trying to open a file on the server using the following (which works fine on my machine):
v$fd = fopen("/path_to_folder/x-files.txt", "r+");
while ($text = fgets($fd, 4096)) {
echo $text;
}
fclose($fd);
I can only open it to read (using r), if I try to write to it as well ( r+ ) I get a "Permission Denied" error message. Strange thing: my serveradmin tells me that I have all the necessary rights so that writing shouldnīt fail. What is wrong? What kind of rights exactly do I need (chmod to :...)??
Thanks
|