https://tinyurl.com/2f3tuc3m
I would need your help to fix this problem. Thanks in advance.
]]>I’m still waiting for the clarification on my query for the topic of clearing cache after theme or plugin update setting but it seems the plugin has stopped working for me.
I did a GT Metrix test on my website and not only has the speed come down but the Leverage Browser Caching element for which I use the plugin is showing a F Grade.
Please advise what I need to do.
I’m a long time user of this plugin and have even left a 5 star review in the past so I know you’ll help me out.
]]>After fixing a related issue of broken images loaded from an old Jetpack CDN in Fastest Cache, now I see that caching is not helping to speed up my site.
Latest GTmetrix Results
PageSpeed Score – 37%
YSlow Score – 61%
Fully Loaded Time – 13.50s
Total Page Size – 5260KB
Requests – 112
I also saw that in my wp-config.php file, Super Cache plugin (I tried around 2 weeks back) has added the caching line and I cannot find Fastest Cache anywhere, so looks like this plugin is not able to cache my site?
/define('WP_CACHE', true); //Added by WP-Cache Manager
define( 'WPCACHEHOME', '/home1/chennaj6/public_html/wp-content/plugins/wp-super-cache/' );
Please help.
]]>image screen
My Settings plugin:
Thank you for your help
https://www.ads-software.com/plugins/wp-appbox/
]]>When I use the cache tester, I receive this message:
Fetching https://www.mdsaude.com/ to prime cache: OK
Fetching first copy of https://www.mdsaude.com/: OK (1.html)
Fetching second copy of https://www.mdsaude.com/: OK (2.html)
The pages do not match! Timestamps differ or were not found!
I have used this plugin for more than a year without any problems until now.
Regards,
Pedro.
https://www.ads-software.com/plugins/wp-super-cache/
]]>Now when I activate the caching plugin it does not work until I turn off Woo due to the DONOTCACHEPAGE constant found here I believe – class-wc-cache-helper.php
I have tried overriding this by adding <?php
define( “DONOTCACHEPAGE”, “false”);
?> to my theme’s header.php but this causes Woocommerce to stop producing the pages/posts on the front end of the site.
I know that each setup is very different but I would like to know if there is anything I can do to make these plugins work together? Please be very basic as I am no PHP developer…
I use WC to only display products not sell them so don’t mind if the WC pages/posts get cached.
https://www.ads-software.com/plugins/woocommerce/
]]>However there are pages cached when I look at the cache folder in wp-content.
I don’t know what to do I really need this to work. I run a website with a lot of adult content however if you want to take a look at it click here There is no spam or anything like that it’s actually a prety nice site but I need the caching because I have more than 12000 pages and my website loading time is tooooo slow. Any advice and tips are welcome.
https://www.ads-software.com/plugins/wp-super-cache/
]]>Summary: The cache is building fine in cache/all/ (there are files), but the files are not being served. There is not reference to WP Fastest Cache in my source at the bottom or anywhere.
– I’m using 3.8.1
– All minify CSS seems to be working. According to https://gtmetrix.com/reports/sunriseadvertising.com/JUNNt6Lu I still need to “Leverage browser caching” though!
– Permissions on .htaccess (644) and /cache/ (755) are correct.
– Yes, I have installed, then removed and reinstalled per instructions
– I have no other caching plugins installed. I prior installed WP Super Cache and had the same issue (browser caching not working and no reference in page source). This has to be a clue! It’s now uninstalled.
– I’ve cleared the cache and it rebuilds fine
Thanks so much!
My site is https://www.sunriseadvertising.com
Here is my entire .htaccess:
—
# BEGIN LBCWpFastestCache
<FilesMatch “\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf|x-html|css|xml|js|woff|ttf|svg|eot)(\.gz)?$”>
<IfModule mod_expires.so>
ExpiresActive On
ExpiresDefault A0
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/ico A2592000
ExpiresByType text/css A2592000
ExpiresByType text/javascript A2592000
</IfModule>
<IfModule mod_headers.c>
Header set Expires “max-age=2592000, public”
Header unset ETag
</IfModule>
FileETag None
</FilesMatch>
# END LBCWpFastestCache
# BEGIN GzipWpFastestCache
<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
</IfModule>
# END GzipWpFastestCache
# BEGIN WpFastestCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
AddDefaultCharset UTF-8
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{REQUEST_URI} !^/wp-login.php
RewriteCond %{REQUEST_URI} !^/wp-admin
RewriteCond %{REQUEST_URI} !^/wp-content
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond /home/sunrisea/public_html/wp-content/cache/all/$1/index.html -f
RewriteRule ^(.*) “/wp-content/cache/all/$1/index.html” [L]
</IfModule>
# END WpFastestCache
#DO NOT REMOVE THESE RULES!
# BEGIN s2Member GZIP exclusions
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} (^|\?|&)s2member_file_download\=.+ [OR]
RewriteCond %{QUERY_STRING} (^|\?|&)no-gzip\=1
RewriteRule .* – [E=no-gzip:1]
</IfModule>
# END s2Member GZIP exclusions
# 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
—
https://www.ads-software.com/plugins/wp-fastest-cache/
]]>