webwright
Forum Replies Created
-
Forum: Reviews
In reply to: [Duplicate Post] yippeeexcellent functionality and a real time-saver!
update
If I disable query strings option, divi works.
unchecked: Remove query strings from static content
checked: Enable GZIP compression (compress text, html, javascript, css, xml and so on)
checked: Set expire caching (Leverage Browser Caching)
I too had issue. was unable to edit any content until I disabled WP Performance Score Booster. disabled all plugins and reactivated one by one. when I reactivated the booster it again made editing impossible.
you asked in one response to view .htaccess…I have included mine in the pursuit of a fix. your plugin is an important one and we divi users are anxious for a fix.
Booster is currently disabled at http://www.saintmaryadoption.com
========================================================
# BEGIN WPSuperCache
# END WPSuperCache# BEGIN WP Performance Score Booster Settings
## BEGIN Enable GZIP Compression ##
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/x-httpd-php
AddOutputFilterByType DEFLATE application/x-httpd-fastphp
AddOutputFilterByType DEFLATE image/svg+xml
SetOutputFilter DEFLATE
</IfModule>
## END Enable GZIP Compression #### BEGIN Vary: Accept-Encoding Header ##
<IfModule mod_headers.c>
<FilesMatch “\.(js|css|xml|gz)$”>
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
## END Vary: Accept-Encoding Header #### BEGIN Expires Caching (Leverage Browser Caching) ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg “access 2 week”
ExpiresByType image/jpeg “access 2 week”
ExpiresByType image/gif “access 2 week”
ExpiresByType image/png “access 2 week”
ExpiresByType text/css “access 2 week”
ExpiresByType application/pdf “access 2 week”
ExpiresByType text/x-javascript “access 2 week”
ExpiresByType application/x-shockwave-flash “access 2 week”
ExpiresByType image/x-icon “access 2 week”
ExpiresDefault “access 2 week”
</IfModule>
## END Expires Caching (Leverage Browser Caching) ### END WP Performance Score Booster Settings
# 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