PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 4th, 1999, 03:37 AM
pan
Guest
Dev Shed Newbie (0 - 499 posts)
 
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

Reply With Quote
  #2  
Old November 5th, 1999, 07:00 PM
jpenix
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
It's not necessarily a matter of what YOU have rights to - it's a matter of what the WEB SERVER has rights to (assuming PHP compiled into Apache).

You're going to have to find out what user/group the web server runs as and then set your file permissions accordingly.

Easiest would be to set the file's owner to yourself and set the file's group to the webserver's group.

Then chmod 664 (rw-rw-r--) or 660 (rw-rw----) to give the webserver's group write permissions.

Or check to make sure that PHP isn't running in safe mode (in which case it won't deal with files outside its directory).

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > canīt open file on the server to read and write

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap