SSL certificate revoke

Hello,

I am looking to revoke this SSL certificate please:

The reason why is because it leads to 404 errors when clicking on some pages and I usually use GoGetSSL because it works fine with it. In the case revoking the certificate from Google trust isn’t possible, would it be possible to help me and tell me why isn’t it working please?

This is the website link: CSZ Home | Winter’s army (rf.gd). When writing https, it looks like the css is broken and when clicking on other pages, it leads to 404 error.

Yours sincerely,

You have mixed content issues:

So no matter what SSL provider you use, this will still happen. (Switching to GoGetSSL will not fix this)

This happens because in your code:

        <link href="http://winter-army.rf.gd/corecss.css" rel="stylesheet" type="text/css" />
<link href="http://winter-army.rf.gd/assets/css/jquery-ui-themes-1.11.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<link href="http://winter-army.rf.gd/assets/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="http://winter-army.rf.gd/assets/js/plugins/select2/select2.min.css" rel="stylesheet" type="text/css" />
<link href="http://winter-army.rf.gd/assets/js/plugins/datetimepicker/jquery.datetimepicker.min.css" rel="stylesheet" type="text/css" />

You are defining http://, so the browser is pulling the files over http://. However, since the page you are loading is secure, the browser blocks these requests.

The fix is quite simple, just replace all the http:// calls with https:// ones.

5 Likes

Sorry, I may sound noob but by “The fix is quite simple, just replace all the http:// calls with https:// ones.”, do you mean on the website?

Because if so, then it breaks the css:

Additionally I used a template, so I don’t even know where that code part is, would you mind telling me where can I find it please?

In the HTML code that you are uploading to your website, you need to replace all of the http://winter-army.rf.gd links with https://winter-army.rf.gd

1 Like


this, right?

Edit: changing it to https sadly didn’t work

That’s because the links haven’t been changed to HTTPS, not for me at least:

Might want to check this out:

4 Likes

I see you’re using CSZ CMS on your site. If you’re using a CMS, there is probably a setting somewhere in the software where you can configure the URL of your site. You’ll want to change that from http://winter-army.rf.gd to https://winter-army.rf.gd.

I don’t know where exactly that setting is, I’ve never used that script before. Usually you can either find it in a settings page in the admin area, but sometimes it’s found in a configuration file too.

6 Likes

It is forced to https after I changed every http to https://

But now it just says the page is not found saying this:

However the page exists

There was indeed a setting for each page, but now it just says the page is unknown (screens sent above)

It seems to me that while trying to add .htaccess rules to force HTTPS, you may have accidentally delete the .htaccess rules necessary for your site to work. Which explains why every page except for the home page doesn’t work.

To fix this, you’ll need to restore the default .haccess rules from your CMS.

The easiest way to do so is to simply download a fresh copy of your CMS from the official website, and retrieve the file called .htacces. Then simply append the content of that file into your current .htaccess file.

6 Likes

I will try that and let you know. Thanks

Well it completely broke the website, I’ll stat over using another template. Thanks for trying to help though, much appreciated <3

3 Likes

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