nicjansma
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Getting Content Encoding ErrorThat (disabling Compression/gzip in Browser Cache) seemed to work for me.
However, I will note that I’ve been running with that setting enabled for several years without an issue. Nothing else on the server was changed, except WordPress/plugin updates recently.
Forum: Plugins
In reply to: [W3 Total Cache] Getting Content Encoding ErrorI’m getting possibly the same issue.
What I see is garbled letters, almost as if Chrome is trying to display gzipped content.
Latest Chrome, IE and FF on Windows:
Response headers:
The Content-Encoding says gzip, but the decompressed content also appears to be gzipped (or just garbage?).
It doesn’t happen on every page load. If I force a reload, the page seems to work most of the time.
Disabling W3 Total Cache fixes this.
Strangely curl from the command line doesn’t seem to reproduce this.
- This reply was modified 8 years, 5 months ago by nicjansma.
Seeing the same issue as well.
Forum: Plugins
In reply to: [W3 Total Cache] Update to minified file names after content updateStill having this issue. Has anyone else solved this?
I’ve worked around it by versioning the file name of the included files in my templates (eg style-1.css, style-2.css instead of always being style.css), but that’s a manual process and not ideal.
Forum: Plugins
In reply to: [W3 Total Cache] How's 0.9.2.1 working out for everyone?I was able to fix this by editing my .htaccess as described here
https://www.ads-software.com/support/topic/upgraded-to-092-broken-in-firefox-401-and-ie-9/page/2?replies=42#post-2106346Forum: Plugins
In reply to: [W3 Total Cache] Page Cache URL rewriting is not workingI was able to fix this by updating my .htaccess as documented here:
https://www.ads-software.com/support/topic/upgraded-to-092-broken-in-firefox-401-and-ie-9/page/2?replies=42#post-2106346SOLUTION:
Open wp-content/w3tc/min
Edit .htaccessYou have to change two lines, between # BEGIN W3TC Minify core and #END
Change this line:
RewriteRule ^w3tc_rewrite_test$ index.php?w3tc_rewrite_test=1 [L]
To:
RewriteRule ^w3tc_rewrite_test$ index.php?w3tc_rewrite_test=1 [QSA,L]Change this line:
RewriteRule (.*) index.php?file=$1 [L]
To:
RewriteRule (.*) index.php?file=$1 [QSA,L]Basically, you need to change [L] to [QSA,L]