Blocking the direct access to images in the upload folder WordPress
Blocking the direct access to images in the upload folder WordPress
Blocking the direct access to images in the upload folder WordPress
Enable webp support Nginx+Apache reverse proxy with moss.sh [closed]
What permissions should I set on each of wp folders? Users will need to upload various assets (images, pdfs, office docs, audio, video). I found this article here that seems helpful, but would like to get some input from folks having done this? This will be the same as any other web server. Whatever user … Read more
If you think a plugin is causing the problem, disable all plugins by renaming the wp-content/plugins folder. Then put the plugins (in the subfolders of wp-content/plugins) back into a new wp-content/plugins folder. Do a couple/three at a time to see if you can find a bad plugin. You might also reload WP 4.7.2 via the … Read more
The Subscriber user role does not have write permissions. http://codex.wordpress.org/Roles_and_Capabilities#Subscriber Perhaps you should give the user the Contributor role. Contributor delete_posts edit_posts read http://codex.wordpress.org/Roles_and_Capabilities#Contributor
nginx doesn’t use the .htaccess file for configuration. Have you checked the wordpress Codex for specific instructions for setup when using nginx instead of straight apache? http://codex.wordpress.org/Nginx
I found the answer, I am putting it here incase it might be useful for someone: change: location /blog into location /blog/
Try httpS:// mysite.com/wp-admin If not then check with your hosting company if they are able to fix the issue. It could happen due to SSL (https redirects) or 301 redirects.
I do not know plugin to control FastCGI cache in nginx. However, there are a set of nginx rules to use the WP Super Cache cache directly. Let us think – what is going on when site page is accessed? nginx accepts request and sees that index.php is needed nginx starts php-fpm (what is not … Read more
Solved. Instead of if (-f “$document_root/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc”) { set $w3tc_rewrite 0; } should be if (!-f “$document_root/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc”) { set $w3tc_rewrite 0; } in W3 TC config.