I know it has been asked over and over again on the internet and i spend hours digging deeper into the web. But the no answer so far.
Why we get this error when you upload a file
The uploaded file could not be moved to wp-content/uploads
define( 'UPLOADS', 'wp-content/uploads' );
wp/options.php
location for upload_path.wp-content
folder does not have any folder named uploads
But nothing so far..
Local Server
There is no issue so far in the local server.
I am just a beginner and learning WordPress from scratch. The only issue i got stuck is this file upload thing.
Can anyone help me!
I know it has been asked over and over again on the internet and i spend hours digging deeper into the web. But the no answer so far.
Why we get this error when you upload a file
The uploaded file could not be moved to wp-content/uploads
define( 'UPLOADS', 'wp-content/uploads' );
wp/options.php
location for upload_path.wp-content
folder does not have any folder named uploads
But nothing so far..
Local Server
There is no issue so far in the local server.
I am just a beginner and learning WordPress from scratch. The only issue i got stuck is this file upload thing.
Can anyone help me!
I experienced this error while preparing an AWS ec2 Bitnami micro-instance configured for WordPress. This approach requires the command-line, so please launch a terminal-session and begin via SSH into the deployed production.
cd
into the application document-root:
/home/bitnami/apps/wordpress/htdocs:
Execute the below command to identify the Apache web-server:
ps aux | egrep '(apache|httpd)'
Revealing daemon
in this case, as captured within the terminal-output screenshot below:
Ultimately, the below-command remediated the error; users should now have the ability to successfully media-upload content via the WordPress Content Management system/admin-panel:
sudo chown -R daemon:daemon wp-content
I recommend the following dox for guidance regarding the Linux-commands referenced herein:
Update: Permissions were correct, there was enough storage.
What fixed it for me was deleting the month folder (08 in my case) and when re-uploading image, website recreated the folder and it worked fine :)
write
access to thewp-content/uploads
directory in order to upload files. You may have to consult your hosting company for assistance. – Pat J Commented Oct 13, 2016 at 14:42