Without a link to your site, it’s hard to judge. I would recommend disabling any optimization plugins you use. Maybe something got caught in their cache. You can also deactivate the plugins via FTP by deleting the respective directories.
you are right, here’s a link not to my site but to an application installed on a subdomain, so it has no plugins and I guess it would be easier to investigate. The console suggests it’s a mixed content issue, but I wonder how since the sites have not had any mixed content ever.
This is a Matomo installation. I can’t say anything about it because this is the wordpress forum. Show a link to your wordpress installation where the problem exists.
for instance this page, the map doesn’t load, the page stays on loading and if a minute later you press the “stop loading” browser button, then you’ll see the map content trying to load but it doesnt. If you leave it (but I’m not asking you to do it), it will take over 10 minutes to load the map.
-
This reply was modified 3 years, 2 months ago by
devsaredead.
You are loading files somewhere there from https://crm.agendadelvolo.info which in turn is loading data from http://37.4.250.96 and the latter is causing the delay in loading. You would have to check why this happens. It has nothing to do with wordpress as far as I can see.
…Also, it’s weird that it loads file from an application on a subdomain. It’s all caused by the SSL !
But thank you for confirming it has nothing to do with Worpress, now I got something to tell to the host.
I have resolved, this was the issue (if anyone bumps into the same problem:
for some reason upon updating the SSL certificate, my htaccess contained a rewrite rule:
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?mydomain.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?mydomain.com$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?google.com/.$ [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?google.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://checkout.stripe.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://checkout.stripe.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://(.)?mydomain.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http://(.)?mydomain.com$ [NC]
RewriteRule ..(.)$ http://%{REMOTE_ADDR}/$ [R,NC]
so I changed it to a simpler
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
so, unless anyone got something to say in terms of safety (or bad practice), I reckon this issue is resolved. π