HTTPS Destroys my Website (MyBB Forum)

So Today i created a Topic that my Website wont load anymore an the Problem were the Nameservers. Now i just installed a SSL Certificate btw HTTPS on my Domain and now the Website is loading but its like just the HTML Code is loading and it looks terrible. Do i need to wait or is there anyway to fix this fast?

Can you give your website’s url?

Uh yes sorry for that The Url is : http://cloudvace.ml/

Some of your resources are loaded as HTTP and some of it was HTTPS. This means that the browser can’t trust the http requests since you are using HTTPS and all files and requests must be HTTPS. The problem is called “Mixed Content”.

I dont know myBB forum much but you can check this official article from MyBB forum:

https://docs.mybb.com/1.8/administration/security/https/


That article shows the cause and the possible solutions for your problem.
4 Likes

Simply rename all http links into https from your index.html or any other html that your site have, for example, inside your homepage:

<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/latestposts.css" />
<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/avatarep.css" />
<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/global.css" />
<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/extra.css" />
<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/css3.css" />
<link type="text/css" rel="stylesheet" href="http://cloudvace.ml/cache/themes/theme3/footer.css" />

Rename the http into https, and so on.

or you can just reinstall your forum with https instead of http to make it faster.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.