RE: [PHP] quick friday query

2001-11-16 Thread Brian Paulson
n.com -Original Message- From: Caspar Kennerdale [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 9:49 AM To: Php-General Subject: [PHP] quick friday query I am writing files to my server using $fp = fopen("myfile.txt", "w"); this all works. However in the php manual

RE: [PHP] quick friday query

2001-11-16 Thread caspar kennerdale
ahh write permission the folder- duh- not thinkingtoday thank alot -Original Message- From: R'twick Niceorgaw [mailto:[EMAIL PROTECTED]] Sent: 16 November 2001 18:14 To: Caspar Kennerdale; Php-General Subject: Re: [PHP] quick friday query check under what user Apache is ru

Re: [PHP] quick friday query

2001-11-16 Thread R'twick Niceorgaw
_root and give write access on it to nobody ( Apache user id) and write your file there. - Original Message - From: "Caspar Kennerdale" <[EMAIL PROTECTED]> To: "Php-General" <[EMAIL PROTECTED]> Sent: Friday, November 16, 2001 12:49 PM Subject: [PHP] quick frid

Re: [PHP] quick friday query

2001-11-16 Thread James Green
On Fri, 2001-11-16 at 17:49, Caspar Kennerdale wrote: > I am writing files to my server using > > $fp = fopen("myfile.txt", "w"); > > this all works. However in the php manual it says that by using the "w" > switch that php will create the file if it doesn exist > > However this does not seem t

[PHP] quick friday query

2001-11-16 Thread Caspar Kennerdale
I am writing files to my server using $fp = fopen("myfile.txt", "w"); this all works. However in the php manual it says that by using the "w" switch that php will create the file if it doesn exist However this does not seem to work I can only write to a file that already exists and has CHMOD 7