Error with Minify
-
I am running WordPress 3.5.2 with the latest version of W3 Total Cache. I am also running the Genesis Framework with a custom coded child theme.
I have CloudFlare installed/setup on the site and it is configured with W3 TC. I also am using MaxCDN for my CDN network.
When ever I enable the Minify settings in the General tab, set to auto, I get the following error.
I have confirmed that the necessary code is in the .htaccess file:
# BEGIN W3TC Minify cache
Options -MultiViews
FileETag MTime Size
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css M31536000
ExpiresByType application/x-javascript M31536000
</IfModule>
<IfModule mod_headers.c>
Header set X-Powered-By “W3 Total Cache/0.9.2.11”
Header set Pragma “public”
Header set Cache-Control “public, must-revalidate, proxy-revalidate”
</IfModule>
# END W3TC Minify cache
# BEGIN W3TC Minify core
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp-content/cache/minify/
RewriteRule /w3tc_rewrite_test$ ../../plugins/w3-total-cache/pub/minify.php?w3tc_rewrite_test=1 [L]
RewriteCond %{REQUEST_FILENAME}%{ENV:APPEND_EXT} -f
RewriteRule (.*) $1%{ENV:APPEND_EXT} [L]
RewriteRule ^(.+/[X]+\.css)$ ../../plugins/w3-total-cache/pub/minify.php?test_file=$1 [L]
RewriteRule ^(.+\.(css|js))$ ../../plugins/w3-total-cache/pub/minify.php?file=$1 [L]
</IfModule>
# END W3TC Minify corePlease advise.
- The topic ‘Error with Minify’ is closed to new replies.