• Resolved devsaredead

    (@devsaredead)


    I don’t think WordPress is to blame upon this but my host insists that I should check the scripts & urls and align them correctly with the https.

    The problem is that my SSL certificate has updated and my site doesn’t work smoothly. Pages loads forever and don’t show some content, also some applications I have in subdomains (like crm or analytics) show a login page without CSS and I cannot login anymore.

    The site has always been on https so I don’t know what has caused the issue. Can anyone suggest what I should tell to the host (who’s blaming Wp/theme/plugins) or any way of fixing this?

Viewing 7 replies - 1 through 7 (of 7 total)
  • threadi

    (@threadi)

    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.

    Thread Starter devsaredead

    (@devsaredead)

    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.

    threadi

    (@threadi)

    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.

    Thread Starter devsaredead

    (@devsaredead)

    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.

    threadi

    (@threadi)

    You are loading files somewhere there from https://crm.agendadelvolo.info which in turn is loading data from https://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.

    Thread Starter devsaredead

    (@devsaredead)

    …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.

    Thread Starter devsaredead

    (@devsaredead)

    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} !^https://(.)?mydomain.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://(.)?mydomain.com$ [NC]
    RewriteRule ..(.)$ https://%{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. ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘SSL certificate update breaks loading website’ is closed to new replies.