vote up 0 vote down star

I am using this upload script here: http://www.webcheatsheet.com/php/file%5Fupload.php

It is working in server 1 but not server 2

This is server 1 http://bit.ly/Cf3bm

This is server 2 http://bit.ly/1LZMRY

Anyone knows why? Thanks

flag

44% accept rate
How did you find that it's not working? – Ivan Nevostruev Nov 1 at 21:35
What kind of errors do you get? We're going to need a little more info than the actual links of the scripts. Start with phpinfo() on both servers. Then maybe let us see the code of the script you're using. – centr0 Nov 1 at 21:36
I testet and it uploads fine. Just jpg adn smaler than 300kb. Can you post some code? that would realy help ! – streetparade Nov 1 at 21:38

1 Answer

vote up 1 vote down check

You need to set permissions correctly on the second server. The actual upload is succeeding, but it's not able to copy the file to the directory you're trying to put it in.

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/usr/tmp/phprPH6xW' to '/usr/www/users/morganf/slideshows/testupload/upload/blah.jpg' in /usr/www/users/morganf/slideshows/testupload/upload.php on line 28

You can fix in any of the following ways:

Most secure way

cd /usr/www/users/morganf/slideshows/testupload/
chgrp www-data ./upload
chmod g+w ./upload

Note: This assumes that "www-data" is the apache user.

If you can't chgrp it to the Apache user, the command below would do the trick as well.

chmod 777 /usr/www/users/morganf/slideshows/testupload/upload/

Note: This means any user on the server can access these files.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.