EDIT:: didnt realize id typed so much :P sorry for the book, but i hope it provides you with some good info.
^_^ ahh no problem at all and technically while it is https, its not secured.. more than likely its because there are files probably being loaded not hosted by a https source.
Let me have a look ::looks at security audit logs for site::
Yep thats the problem
This page is not secure.
Resources - mixed content
This page includes HTTP resources.
Reload the page to record requests for HTTP resources.
Certificate - valid and trusted
The connection to this site is using a valid, trusted server certificate issued by Let's Encrypt Authority X3.
View certificate
Connection - secure (strong TLS 1.2)
The connection to this site is encrypted and authenticated using TLS 1.2 (a strong protocol), ECDHE_RSA with P-256 (a strong key exchange), and AES_128_GCM (a strong cipher).
Umm based on what i can find
wiki/lib/exe/fetch.php?media=wiki:logo.png
Which i beleive is the torchmodders wiki logo its being pulled from (http) while on (https)
easy fix is either making a php script such as
<img link="<?php (isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];?>
torchmodders.com/wiki/lib/exe/fetch.php?media=wiki:logo.png">
with css styling
<img link="<?php (isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];?>
torchmodders.com/wiki/lib/exe/fetch.php?media=wiki:logo.png" alt="" class="bbc_img">
and placing it on the page which displays the logo.
The above will place http or https depending on what is typed in the url. not necessary, but its effective
also, theres a lot of different ways, maybe even more secured ways... but thats a easy fix for a easy problem.
http://i.imgur.com/BIZBIWm.png
That is the logo for the forums, wierd its not hosted here. buut simply change the url link to https, since imgur supports https nativly. its the same url.
But yeah also if theres not automatic redirect, you could force the page to redirect by using
if(empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == "off"){
$redirect = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
header('Location: ' . $redirect);
exit();
}
a little basic but this code would work as well
describing that code
if $_SERVER['HTTPS'] is empty or $_SERVER['HTTPS'] is equal to off(meaning they went to http)
go here ('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];)
https:// torchmodders.com(HTTP_HOST) /forums/suggestions-feedback/https/(REQUEST_URI)"