Conflict with caching plugin
-
I recently switched to ZenCache for a caching solution but lost mobile detect functionality. When I disable ZenCache, mobile detect works.
Can you recommend a caching solution that doesn’t conflict with Mobile Detect?
My htaccess file:
**********************************************
# Use PHP54 Single php.ini as default
AddHandler application/x-httpd-php54s .php<IfModule mod_deflate.c>
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/plain text/html application/x-httpd-php-source
AddOutputFilterByType DEFLATE text/xml application/xml application/xhtml+xml application/xml-dtd
AddOutputFilterByType DEFLATE application/rdf+xml application/rss+xml application/atom+xml image/svg+xml
AddOutputFilterByType DEFLATE text/css text/javascript application/javascript application/x-javascript
AddOutputFilterByType DEFLATE font/truetype application/x-font-ttf font/opentype application/x-font-otf
</IfModule>
</IfModule># BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
***************************************
I moved the coding between and including BEGIN WordPress and END WordPress to the the top just above the IfModule mod_deflate code, but without success.
- The topic ‘Conflict with caching plugin’ is closed to new replies.