Cedricmi
Forum Replies Created
-
Hi,
Thanks for the answer.
I tried something like that but only for the http.conf file, since there were a few lines in the wordfence rules concerning https.
I’ll try again.
What is strange is that although the cache told me it was populating, I could never get a page with wordfence debug info (as selected in options), with either http or https.
Thanks,
I solved the problem with a full reinstall
Thanks!
Unfortunately, it doesn’t work.
The user has to manually refresh the page in the browser, which s/he’ll never do and should not have to do.Thanks,
I’ll give it a try.By the way, it seems Wordfence uses cookies in relation to cache.
Unfortunately, in some conditions this means viewer view old pages. In a typical blog this is as if the blog didn’t change for days and they don’t see the new posts.
Ideally, there would be some kind of panic button in Wordfence Plugin “Ignore Cookies older than x days”.
This would solve the problem of asking the viewers to delete cookies on their computers, because most are unable and/or unwilling to do so.
Nevermind, a full reset of Disqus did the trick.
Thanks again,
CedricHi Peter,
Thanks I can confirm that I can now click on the Social Settings tab.I’ll try to write a new post but probably not before tomorrow I have a live conf soon.
Regarding Disqus disappearance, you don’t think it is linked?
Cheers & thanks,
CedricHi,
I sent the info as requested.
Cedric
Hi,
Yes I did.
Btw not sure if this is the update to 2.2 or the activation of Social Meta or a coincidence, but disqus comment doesn’t appear on my site anymore.
I spoke too soon.
As soon as I activate Wordfence Falcon, the htaccess is not interpreted correctly and charset info is not delivered.
Please fix this.
For info here is at least what does not work after activating the cache:
AddCharset UTF-8 .html
<Files “index.php”>
AddCharset UTF-8 .php
</Files>Forum: Plugins
In reply to: [WP Fastest Cache] Homepage and menu are not actualizedPlease contact me per email. cedric [at] lediligent.com
I have infos that may be of interest to you.
Forum: Plugins
In reply to: [WP Fastest Cache] Homepage and menu are not actualizedOk, I will test further in the next days.
BTW, I see that most of the slowness come from external sources, mostly Discus but also Wordfence & google doubleclick.net
Is there somehow a way to separate their scripts from the minified hmtl & js files so that they are called once the rest of the page has already been done?
Forum: Plugins
In reply to: [WP Fastest Cache] Homepage and menu are not actualizedYes this is a problem I may have to go back to another plugin.
After a new test, I don’t get the up to date version of the page unless I refresh it in Internet Explorer.
I don’t know if it has anything to do with it but protection against Tracking is activated, I’ll try to find another computer without protection.
Also I’m using CloudFlare + Jetpack’s Proton.Forum: Plugins
In reply to: [WP Fastest Cache] Homepage and menu are not actualizedHi Emre.
Thank you for answering.
Strangely, I had 3 different views of the homepage in 3 different browsers (Chrome, IE and Opera).I hava added the code in htaccess. So far it seems to work, I will confirm after a few days of testing.
So to recap, the new code in ht access + the selected and unselected options as shown above are the right way to configure wp fastest cache?
P.S. Here is the modified htaccess.
Because it is the 3rd caching module I tried, perhaps something is wrong with it.# BEGIN WpFastestCache
<FilesMatch “\.(html|htm)$”>
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control “max-age=0, no-cache, no-store, must-revalidate”
Header set Pragma “no-cache”
Header set Expires “Wed, 11 Jan 1984 05:00:00 GMT”
</ifModule>
</FilesMatch>
<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 REDACTED/public_html/wp/wp-content/cache/all/$1/index.html -f
RewriteRule ^(.*) “/wp/wp-content/cache/all/$1/index.html” [L]
</IfModule>
# END WpFastestCache
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault “access plus 1 month”
# My favicon
ExpiresByType image/x-icon “access plus 1 year”
# Images
ExpiresByType image/gif “access plus 1 month”
ExpiresByType image/png “access plus 1 month”
ExpiresByType image/jpg “access plus 1 month”
ExpiresByType image/jpeg “access plus 1 month”
# CSS
ExpiresByType text/css “access 1 month”
# Fonts
ExpiresByType font/ttf “access plus 1 year”
ExpiresByType font/otf “access plus 1 year”
ExpiresByType font/x-woff “access plus 1 year”
# Javascript
ExpiresByType application/javascript “access plus 1 year”
</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