can you tell me the site url please?
I fixed the problem. Please update to latest version wp fastest cache.
Wordpress 6.1 still shows the notice in health check for my sites although latest version of Fastest Cache is installed and active…
can you tell me your site url please?
are you using Nginx web-server?
Thread Starter
dimal
(@dimalifragis)
@metasequoia
Try to disable the browser caching in Fastest Cache, if you have enabled it.
It’s an Apache web server.
Disabling browser caching in Fastest Cache has not solved the issue…
This is what UpdraftPlus plugin tells me:
Webserver: Apache (Linux s133.goserver.host 64-bit #1 SMP Debian 5.10.149-2 (2022-10-21))
did you try another cache plugin for testing?
Yes, I just tried Cachify plugin: the notice in health check is gone!
are you sure that cache is served via the Rewrite rule? I see the “last-modified” value in the header.
This is what the plugin told me to add to .htaccess file:
# BEGIN CACHIFY
<IfModule mod_rewrite.c>
# ENGINE ON
RewriteEngine on
# set hostname directory
RewriteCond %{HTTPS} on
RewriteRule .* – [E=CACHIFY_HOST:https-%{HTTP_HOST}]
RewriteCond %{HTTPS} off
RewriteRule .* – [E=CACHIFY_HOST:%{HTTP_HOST}]
# set subdirectory
RewriteCond %{REQUEST_URI} /$
RewriteRule .* – [E=CACHIFY_DIR:%{REQUEST_URI}]
RewriteCond %{REQUEST_URI} ^$
RewriteRule .* – [E=CACHIFY_DIR:/]
# gzip
RewriteRule .* – [E=CACHIFY_SUFFIX:]
<IfModule mod_mime.c>
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=CACHIFY_SUFFIX:.gz]
AddType text/html .gz
AddEncoding gzip .gz
</IfModule>
# Main Rules
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =””
RewriteCond %{REQUEST_URI} !^/(wp-admin|wp-content/cache)/.*
RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_
RewriteCond /home/www/seifengarten.de/wp-content/cache/cachify/%{ENV:CACHIFY_HOST}%{ENV:CACHIFY_DIR}index.html -f
RewriteRule ^(.*) /wp-content/cache/cachify/%{ENV:CACHIFY_HOST}%{ENV:CACHIFY_DIR}index.html%{ENV:CACHIFY_SUFFIX} [L]
</IfModule>
# END CACHIFY`