Report this

What is the reason for this report?

Images not getting uploaded from frontend of a PHP Application

Posted on January 4, 2021

From the backend we are able to upload documents and images. Whereas from the front end, we are not able to upload images. It does not show any error, but it just doesn’t get uploaded. I believe this could be a folder permission issue. We have a function, where users can upload their profile images, this does not get uploaded from the front end. Same code works in AWS.

Please let me know if its a folder permission issue and if so, what should the command lines be?

I tired this command and uploading images from the application front end does not work: chown -R www-data:www-data /folderpath



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @steveDolphin,

It does sound like folder ownership or permission issue. The first thing I suggest doing is fixing the ownership. You should run, the command you posted chown -R www-data:www-data for your website, all of it. so it should look like so

chown -R www-data:www-data /path/to/website

Next, I would suggest, checking if all permissions are correct. Unless you have any specific permission requirements, the usual stuff is 644 for file and 755 for folders. You can fix them both with two commands like so

 find /path/to/website -type f -exec chmod 644 {} \; &&  find /path/to/website -type d -exec chmod 755 {} \;

Regards, KFSys

Heya,

You can use the browser developer tools to inspect the network requests when you attempt to upload an image from the front end. Check if there are any error responses or if the request is not being made at all. This can help you pinpoint where the issue might be occurring.

Review your web server configuration (e.g., Apache or Nginx) to ensure that it allows file uploads. Sometimes, server settings like upload_max_filesize and post_max_size in PHP settings (if you’re using PHP) may need to be adjusted to allow larger file uploads.

Regards

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.