Skip to content
Advertisement

PHP upload file code works on Windows XAMPP but not on production Linux box

I’m using this PHP to upload CSV files:

JavaScript

and it works perfectly on my dev XAMPP setup.

When I deploy the site on the Linux box it behaves as if the file upload is successful but it isn’t in the desired folder or tmp folder.

My form is:

JavaScript

My browser returns from the echos:

JavaScript

I had a friend more familiar with Linux look at this and he has written a few upload scripts. We couldn’t figure out a solution.

Any hints?

Advertisement

Answer

If script does not return “Invalid file”, its probably the permissions. Do not do 777 chmod on production, but you have to be sure that the destination folder is writable and executable with www-data (apache2 user).

Commands for changing permissions are :

chown -R www-data:www-data path/to/writable/dir/

and for make the directory openable :

JavaScript

EDIT

It depends of your needs. Basically, the users you want to have read/write access to this folder should be add to www-data group. Command : useradd -G www-data users

But you can have some troubles if you create directories or files with another user than www-data. Because the group won’t be set to www-data, but of the group of your user. In this case, you have to set acl permissions. If you are in this case, just tell me so, I would help you to set acl 🙂

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement