Title: tarkin79's Replies | WordPress.org

---

# tarkin79

  [  ](https://wordpress.org/support/users/tarkin79/)

 *   [Profile](https://wordpress.org/support/users/tarkin79/)
 *   [Topics Started](https://wordpress.org/support/users/tarkin79/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tarkin79/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tarkin79/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tarkin79/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tarkin79/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tarkin79/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Koko Analytics - Privacy-Friendly WordPress Analytics] Widget — exclude post/page](https://wordpress.org/support/topic/widget-exclude-post-page/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/widget-exclude-post-page/#post-15298186)
 * Thank you!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Statically] Not multi CDN](https://wordpress.org/support/topic/not-multi-cdn/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/not-multi-cdn/#post-13923041)
 * Thank you for that response. I think that better explains the plugin. I was looking
   for a plugin where I could use my own CDN account, but that wasn’t clear on the
   description before.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Statically] Not multi CDN](https://wordpress.org/support/topic/not-multi-cdn/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/not-multi-cdn/#post-13808389)
 * The first item in the plugin description is “Multi-CDN (Cloudflare, Fastly, BunnyCDN,
   Google Cloud, and CloudFront).”
 * However, when you install it, the only option is to sign up for a Statically 
   account and use the Statically CDN. There is no option to choose another CDN,
   such Cloudfront, Google Cloud, or Digital Ocean.
 * So, can you explain how it _**is**_ multi-CDN?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Change title of events page from “Events” to something else](https://wordpress.org/support/topic/change-title-of-events-page-from-events-to-something-else/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/change-title-of-events-page-from-events-to-something-else/#post-12442593)
 * Just bumping this up to see if anyone can help…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Bug: Disk-enhanced caching on Nginx fails, due to a typo in the nginx.conf file](https://wordpress.org/support/topic/bug-disk-enhanced-caching-on-nginx-fails-due-to-a-typo-in-the-nginxconf-file/)
 *  [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/bug-disk-enhanced-caching-on-nginx-fails-due-to-a-typo-in-the-nginxconf-file/#post-3454927)
 * Still not fixed in the latest release. Pothi’s fix above has to be re-applied
   after upgrade.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Nginx: disk enhanced page cache breaks](https://wordpress.org/support/topic/nginx-disk-enhanced-page-cache-breaks/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/nginx-disk-enhanced-page-cache-breaks/#post-3450312)
 * oh, and I also changed the nginx.conf file’s ownership to root so that w3tc wouldn’t
   overwrite the changes.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Nginx: disk enhanced page cache breaks](https://wordpress.org/support/topic/nginx-disk-enhanced-page-cache-breaks/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/nginx-disk-enhanced-page-cache-breaks/#post-3450311)
 * I think I was able to correct the nginx configuration.
 * The default is:
 *     ```
       # BEGIN W3TC Page Cache core
       set $w3tc_rewrite 1;
       if ($request_method = POST) {
           set $w3tc_rewrite 0;
       }
       if ($query_string != "") {
           set $w3tc_rewrite 0;
       }
       if ($request_uri !~ \/$) {
           set $w3tc_rewrite 0;
       }
       if ($http_cookie ~* "(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle)") {
           set $w3tc_rewrite 0;
       }
       if ($http_user_agent ~* "(W3\ Total\ Cache/0\.9\.2\.7)") {
           set $w3tc_rewrite 0;
       }
       set $w3tc_enc "";
       if ($http_accept_encoding ~ gzip) {
           set $w3tc_enc _gzip;
       }
       if (-f "$document_root/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc") {
         set $w3tc_rewrite 0;
       }
       if ($w3tc_rewrite = 1) {
           rewrite .* "/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc" last;
       }
       # END W3TC Page Cache core
       ```
   
 * My edits are below. I changed the default rewrite variable to 0 and, added quotes
   around the “_gzip” variable, and got rid of the document_root variable and changed
   the variable to 1 if the cached file exists:
 *     ```
       # BEGIN W3TC Page Cache core
       set $w3tc_rewrite 0;
       if ($request_method = POST) {
           set $w3tc_rewrite 0;
       }
       if ($query_string != "") {
           set $w3tc_rewrite 0;
       }
       if ($request_uri !~ \/$) {
           set $w3tc_rewrite 0;
       }
       if ($http_cookie ~* "(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle)") {
           set $w3tc_rewrite 0;
       }
       if ($http_user_agent ~* "(W3\ Total\ Cache/0\.9\.2\.7)") {
           set $w3tc_rewrite 0;
       }
       set $w3tc_enc "";
       if ($http_accept_encoding ~ gzip) {
           set $w3tc_enc "_gzip";
       }
       if (-f "/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc") {
         set $w3tc_rewrite 1;
       }
       if ($w3tc_rewrite = 1) {
           rewrite .* "/wp-content/cache/page_enhanced/$http_host/$request_uri/_index.html$w3tc_enc" last;
       }
       # END W3TC Page Cache core
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Transposh WordPress Translation] Integration with Google XML sitemaps seems to have broken](https://wordpress.org/support/topic/integration-with-google-xml-sitemaps-seems-to-have-broken/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/integration-with-google-xml-sitemaps-seems-to-have-broken/#post-3299769)
 * Removing () fixed it, thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Global Translator] Author has abandoned this plugin](https://wordpress.org/support/topic/author-has-abandoned-this-plugin/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/author-has-abandoned-this-plugin/#post-2127647)
 * This is a bump of this topic so people see that this plugin is broken and abandoned
   by its author. DO NOT INSTALL IT, there are lots of reports of it breaking newer
   WordPress versions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[XML Sitemap Generator for Google] [BETA] Rewrite problems with Nginx](https://wordpress.org/support/topic/beta-rewrite-problems-with-nginx/)
 *  [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/beta-rewrite-problems-with-nginx/#post-2256411)
 * > I fixed this temporary adding a static $pl = false; in the function GetXmlUrl.
 * Thanks, this helped fix the problem in nginx for me too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Global Translator] Author has abandoned this plugin](https://wordpress.org/support/topic/author-has-abandoned-this-plugin/)
 *  Thread Starter [tarkin79](https://wordpress.org/support/users/tarkin79/)
 * (@tarkin79)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/author-has-abandoned-this-plugin/#post-2127520)
 * I also paid for it and the author re-billed me earlier this year for annual support,
   yet the author appears to have disappeared. His blog hasn’t been updated in quite
   a while.
 * I’ve installed the plugin Transposh. I’m shocked how well it works. It’s much
   better than Global Translator (Pro) was.

Viewing 11 replies - 1 through 11 (of 11 total)