Long time ago, I decided to move all my media uploads away from wp-content/uploads. I created another directory within the public_html folder for that purpose.
So when you look at my WordPress install (within public_html), the structure is:
cgi-bin
wp-admin
wp-content
wp-includes
files = This is where I store my media files
all other wp- .html, .php, and .txt files
My media uploads are located within public_html/files. I did this by inserting define('UPLOADS', 'files');
in the wp-config file.
All plugins and themes remain at public_html/wp-content/. For example, the Redux Framework URI directory is public_html/wp-content/plugins/redux-framework-4-master.
When I activated the plugin, I noticed that it ate a lot of my server CPU resources every time I make an upload. For example, when I uploaded a logo at the Theme Options section, the website went offline. It appears that the plugin forces to upload the logo at public_html/wp-content/uploads, not at public_html/files.
I also checked SiteHealth. When redux is NOT installed or deactivated, the uploads directory location is /public_html/files.
However, when I activated redux, the uploads directory location was updated to /public_html/wp-content/uploads. This value is in conflict with the uploads directory defined in my wp-config file, which is /public_html/files.
-
This reply was modified 4 years, 7 months ago by riccian.