[PHP] phpUpLoad

2002-11-22 Thread Vicky
Hi! I'm using phpUpLoad but when I try to upload a file I get this error - Warning: Unable to create '/home/silversa/AC/files/Amber.pet': No such file or directory in /home/silversa/public_html/AC/do_upload.php on line 9 Couldn't copy file. I made a directory called files in the folder incase

Re: [PHP] phpUpLoad

2002-11-22 Thread 1LT John W. Holmes
I'm using phpUpLoad but when I try to upload a file I get this error - Warning: Unable to create '/home/silversa/AC/files/Amber.pet': No such file or directory in /home/silversa/public_html/AC/do_upload.php on line 9 Couldn't copy file. I made a directory called files in the folder incase

Re: [PHP] phpUpLoad

2002-11-22 Thread Dev
Need to ensure that your web sever is able to write to the location. You may need to chmod the dir to 775 or even 777 hope that helps. At 04:35 PM 11/22/2002 +, Vicky wrote: Hi! I'm using phpUpLoad but when I try to upload a file I get this error - Warning: Unable to create

Re: [PHP] phpUpLoad

2002-11-22 Thread Ray Hunter
Hint: Never change your directory or file to mod 777 that just invites hackers, plus it is a bad habit. The best thing is to make sure that your directory is owned by your apache server and that it is writeable for that user... Verify the user in your httpd.conf file and change the directory

Re: [PHP] phpUpLoad

2002-11-22 Thread Vicky
Yup, both directorys are chmoded to 755. Lots of users are going to use this script so... I'm still not sure what's wrong or what to do hehe. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpUpLoad

2002-11-22 Thread Adam Williams
You either need to make the directory 777 or change the ownership of the dir to apache or nobody (depending on which user httpd runs as) Adam On Fri, 22 Nov 2002, Vicky wrote: Yup, both directorys are chmoded to 755. Lots of users are going to use this script so...

Re: [PHP] phpUpLoad

2002-11-22 Thread Vicky
I tried making the dir. 777 too, but it didn't work. How do I change the ownership of the dir? -Vicky - Original Message - From: Adam Williams [EMAIL PROTECTED] To: Vicky [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 22, 2002 6:35 PM Subject: Re: [PHP] phpUpLoad You

Re: [PHP] phpUpLoad

2002-11-22 Thread Morgan Hughes
On Fri, 22 Nov 2002, Adam Williams wrote: You either need to make the directory 777 or change the ownership of the dir to apache or nobody (depending on which user httpd runs as) Adam ... or use a wrapper SUID to the user or group who owns the dir and have it wrap a

Re: [PHP] phpUpLoad

2002-11-22 Thread Marek Kilimajer
, November 22, 2002 6:35 PM Subject: Re: [PHP] phpUpLoad You either need to make the directory 777 or change the ownership of the dir to apache or nobody (depending on which user httpd runs as) Adam On Fri, 22 Nov 2002, Vicky wrote: Yup, both directorys are chmoded to 755. Lots of users