Re: [PHP] Re: Permission Denied (in FTP)

2003-07-25 Thread Stephen
l" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 25, 2003 3:32 PM Subject: [PHP] Re: Permission Denied (in FTP) Hi, Doest your ftp account have sufficient access rights for deleting theses files ? Is your apache user is "nobody" , the chmod will not work

[PHP] Re: Permission Denied (in FTP)

2003-07-25 Thread Baroiller Pierre-Emmanuel
Hi, Doest your ftp account have sufficient access rights for deleting theses files ? Is your apache user is "nobody" , the chmod will not work ( take a look at your error log file), so, only nobody or root will able to remove these entries.. Regards, P.E. Baroiller "Stephen" <[EMAIL PROTECTED]>

Re: [PHP] Re: Permission Denied

2003-02-23 Thread Stephen Craton
http://www.melchior.us - Original Message - From: "John Taylor-Johnston" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 23, 2003 3:32 AM Subject: [PHP] Re: Permission Denied Stephen, It seems like I wen tdown that road once? I'm wondering

[PHP] Re: Permission Denied

2003-02-23 Thread Joel Colombo
u might have something on the ownership issue. i ran into the same thing... play with php's "chown" command. look it up php.net may help, i was having a similar issue a few months back. Joel "John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Stephen, > > It see

[PHP] Re: Permission Denied

2003-02-23 Thread John Taylor-Johnston
Stephen, It seems like I wen tdown that road once? I'm wondering/remembering two things to check? First what are the permissions of the directory your are working in? Go up one level and see what the CHMOD was on that? Second, it might be immaterial and I'm not sure how to do it on a command li

[PHP] Re: permission denied

2003-01-14 Thread Anthony Ritter
Lars, I use Win98 and Apache to test the .php script. My ISP has IIS. TR -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: permission denied

2003-01-14 Thread Lars Olsson
Hi Anthony! Have you tried giving the full path of 'data.txt' to fopen? Like this: $file = fopen("d:\\inetpub\\www.blahblah.org\\formtest.php", "a+"); Is it you or your ISP that uses win98? Kindly /Lars Olsson ([EMAIL PROTECTED]) Anthony Ritter wrote: Using MS Win98 / php 4: Any ideas on

[PHP] Re: Permission Denied

2002-08-30 Thread Richard Lynch
>I use PHP to send mail. Recently, emails originating >from the server stopped sending. After some >investigation, I looked at the /var/log/maillog file, >and saw the following errors when a mailing tried to >originate: > >Aug 29 13:16:10 x sendmail[1162]: g7TIGA001162: >SYSERR(apache): Can't crea

[PHP] Re: permission denied using COPY function?

2002-03-18 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Trying to use the COPY function to allow user uploads to a site, > along the lines of: > > copy(temp directory, directory on my server). > > However, I'm getting an error: > > Warning: Unable to create 'directory/image name': Permi

Re: [PHP] Re: Permission denied, although permissions are right

2001-12-13 Thread Wim Godden
So there's no way for me to open that file ? It's generated as zapman and I can't change that... Any ideas or tricks to get around the protection without causing a big security hole ? Fred wrote: > Your PHP script may be owned by zapman, but it is run as nobody. Therefore > your file that you

[PHP] Re: Permission denied, although permissions are right

2001-12-12 Thread Fred
Your PHP script may be owned by zapman, but it is run as nobody. Therefore your file that you need to access also needs to be owned by nobody. Fred Wim Godden <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I'm trying to open a file (using fopen) in t