Access denied unless I add trailing /
I found the answer, I am putting it here incase it might be useful for someone: change: location /blog into location /blog/
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.
Yes, it is good, but other options are also good. There is no silver bullet in term of webservers and caching software, if there was everybody would have been using the same tools. It depends both on what are your actual needs and how comfortable are you with managing the tools. For example it might … Read more
It’s very primitive method but works in any case; Make a dump from MySQL Open it with text editor or maybe another tool you liked (If your dump is so big, you’ll need a strong computer.) Find all http://example.com, replace with https://example.com and save. Rename/move the old database for backup, import the edited database. Leave … Read more
Open CPanel Domain Cache Manager Enable or Diable Google
Provided info by you is SO huge… so i can only advice. run nginx – it works? goto step 2 run nginx with php, see info.php with phpinfo() insie? goto step 3. run nginx with php and global host rewrite to this index script. It works ? go to step 4. run nginx with php … Read more
Alright I figured it out. Thank you guys. What it came down to was a little snippet of code I put in a while back to redirect a user to the home page if not logged in…. stupid me. I really appreciate your help in this though. By disabling everything but wordpress (all plugins, caching, … Read more
If you’re using Varnish and you’re not seeing the admin bar it’s because you probably have a rule in /etc/varnish/default.vcl that looks like this: sub vcl_recv { if (!(req.url ~ “wp-(login|admin)”)) { unset req.http.cookie; } } That’s going to keep the admin bar from showing up because you’re dropping cookie stuff from all pages except … Read more