Can you paste the contents of your .htaccess file? You said that the issue still occurs when you use the disk basic method for page cache? That should be impossible it’s a completely different engine.
Can you paste the contents of your .htaccess file? You said that the issue still occurs when you use the disk basic method for page cache? That should be impossible it’s a completely different engine.
Can you paste the contents of your .htaccess file? You said that the issue still occurs when you use the disk basic method for page cache? That should be impossible it’s a completely different engine.
Frederick,
Problem solved my error – plugin working using ‘Disc (basic)’.
Thanks, Nigel
Ok. I would still like to see your .htaccess file if you don’t mind.
Hi Frederick,
Here’s the .htaccess from the /wp-content/w3tc/min folder. Is this the one you want?
# BEGIN W3TC Minify
<IfModule mod_mime.c>
AddEncoding gzip .gzip
<Files *.css.gzip>
ForceType text/css
</Files>
<Files *.js.gzip>
ForceType application/x-javascript
</Files>
AddEncoding deflate .deflate
<Files *.css.deflate>
ForceType text/css
</Files>
<Files *.js.deflate>
ForceType application/x-javascript
</Files>
</IfModule>
<IfModule mod_setenvif.c>
SetEnvIfNoCase Accept-Encoding (gzip|deflate) APPEND_EXT=.$1
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.(gzip|deflate)$ no-gzip
</IfModule>
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css M86400
ExpiresByType application/x-javascript M86400
</IfModule>
<IfModule mod_headers.c>
Header set Pragma public
Header set X-Powered-By “W3 Total Cache/0.8.5.2”
Header set Vary “Accept-Encoding”
Header append Cache-Control “public, must-revalidate, proxy-revalidate”
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}%{ENV:APPEND_EXT} -f
RewriteRule (.*) $1%{ENV:APPEND_EXT} [L]
RewriteRule ^([a-z0-9\-_]+)\.(include(-footer)?(-nb)?)\.(css|js)$ index.php?gg=$1&g=$2&t=$5 [L]
</IfModule>
# END W3TC Minify
Regards,
Nigel
No, I want the one from your document root.
Here’s the one in the root directory of my site:
SetEnv DEFAULT_PHP_VERSION 5
Options -Indexes
SetEnv PHP_EXTENSION .html
AddType application/x-httpd-php .php .html .htm
and the one from the WordPress directory:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
There must be some directive in http.conf preventing access to files of this type. Are you able to confirm?
Hi. I had the same problem. I switched page caching to disc basic and it worked.
@nhowarth? The way that this problem occurs by a conflict with some other directives only.
Frederick Townes – I was able to repro this on MultiSite in a weird way.
The subDIRECTORY install is fine with enhanced. The subDOMAIN install barfs unless it’s basic.
Each install has w3tc activated and configured PER site (no network activation or MU stuff, just one install and then a config done manually per site).
Don’t know if that helps you!