Re: [PHP] File Upload Problem Solving?

2001-09-01 Thread Marc Davenport

On Fri, 31 Aug 2001, Jeff Oien wrote:

 I have a user who is unable to upload files but I don't know where
 to start with the troubleshooting process. I have this:
 
 @copy($img1, /blah/$username/$img1_name) 
 or die(File upload didn't work.); 
 
 and they are getting the die message. All but one person are able
 to upload.
 Jeff Oien

Check the following things.
1. Permissions. The Directory of the particular user might be set
different and therefore be the reason for the upload.
2. Max File Size. I'm assuming that you are trying the same file for all
people, but if not then the one person that can upload might just be
uploading a smaller file than the rest. Just a thought.

You may want to use is_uploaded_file() and move_uploaded_file() if you are
using PHP 4.0.2 or greater.

hope this helps
cheers,
marc davenport
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] File Upload Problem Solving?

2001-08-31 Thread Jeff Oien

I found the problem. A user was logged in under their username
with a different case (capital/small letters) and that caused a problem.
Jeff Oien

 I have a user who is unable to upload files but I don't know where
 to start with the troubleshooting process. I have this:
 
 @copy($img1, /blah/$username/$img1_name) 
 or die(File upload didn't work.); 
 
 and they are getting the die message. All but one person are able
 to upload.
 Jeff Oien
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]