Dashboard speed section problem

Hi there,

I changed my web site’s theme and i am still seeing old version on my cloudflare dashboard.

I don’t know what a big problem, because of this I stopped my site until this problem was fixed.

I am waiting for your reply as soon as possible.

Thank you very much.

Hi @emrhcnbydr,

If this is on the speed test, that is normal and won’t affect your site. The test only runs once and you would have to contact support and ask them to reset it if you want to run it again.

Hi @domjh,
Tahnk you very much for your answer. Actually I read same answers before but I couldn’t find to cloudflare support. Could you write here their mail adress or support page adress. Thanks again.
Best,

To contact Cloudflare Customer Support, login & go to https://dash.cloudflare.com/?account=support and select get more help. If you receive an automatic response that does not help you, please reply and indicate you need more help.

Hi @emrhcnbydr, what problem reaching your site are you having? I noticed your ticket to support and loaded your site fine, ssl in place, but you have mixed content issues that causes https to break on some pages.

I don’t know how you’d like the site to look, but clear your local cache, try from a mobile, or incognito mode.

If the site is your old site, go to Cloudflare dash, caching app, configuration and select purge cache.

To fix mixed content, those errors mean that your website is being loaded over HTTPS but some of the resources are being loaded over HTTP. To fix this you will need to edit your source code and change all resources to load over a relative path, or directly over HTTPS.

For example, if you load your images with a full URL:

<img src="http://example.com/image.jpg" />

You would want to change this to:

<img src="//example.com/image.jpg" />

By removing the http:, the browser will use whichever protocol the visitor is already using. An alternative option would be to enable the Automatic HTTPS Rewrites feature that can potentially fix these errors for you automatically. Do be aware that resources loaded by JavaScript or CSS will not be automatically rewritten and mixed content warnings will still appear.

See this Community Tip for further details

This topic was automatically closed after 30 days. New replies are no longer allowed.