[PHP] uploading a file - here is the error message...

2002-07-01 Thread Phil Schwarzmann
Here is the error I'm receiving when attempting to upload a file Warning: Unable to create 'temp/test.txt': Permission denied in /home/.../www/website/upload3.php on line 11 ..could it be that my web host isn't giving me permissions to upload files ?

RE: [PHP] uploading a file - here is the error message...

2002-07-01 Thread Lazor, Ed
: Monday, July 01, 2002 10:13 AM To: [EMAIL PROTECTED] Subject: [PHP] uploading a file - here is the error message... Here is the error I'm receiving when attempting to upload a file Warning: Unable to create 'temp/test.txt': Permission denied in /home/.../www/website/upload3.php on line 11

Re: [PHP] uploading a file - here is the error message...

2002-07-01 Thread Kevin Stone
PROTECTED] Sent: Monday, July 01, 2002 11:13 AM Subject: [PHP] uploading a file - here is the error message... Here is the error I'm receiving when attempting to upload a file Warning: Unable to create 'temp/test.txt': Permission denied in /home/.../www/website/upload3.php on line 11

Re: [PHP] uploading a file - here is the error message...

2002-07-01 Thread Mirza Muharemagic
Hi Phil, first thing u should do is to check permission of this directory (CHMOD). the 2nd one, u should replace function copy with move_uploaded_file. than is should work. Mirza [EMAIL PROTECTED] 01.07.2002 19:13 Here is the error I'm receiving when attempting to upload

Re: [PHP] uploading a file - here is the error message...

2002-07-01 Thread Phil Schwarzmann
I took your advice first and tried move_uploaded_file and it kept saying It barfed (hehe). Then I switched to copY and got this new error. Thaks for your help!! [EMAIL PROTECTED] 07/01/02 01:29PM Hi Phil, first thing u should do is to check permission of this directory (CHMOD).