By steveDolphin
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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.