The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

Website not secure

what CMS do you use and have you added any custom code that include images?
If yes, then you might have added some images as http instead of https?

You dont have an error other than the site is not secure?
 
you need SSL certificate.
you have also to force your website to use https instead of http.
 
In some of the sub-pages of the website, is shows connection is not secure. Why it is so?

In which sub pages shows connection not secure then follow these steps.
View source of the page
Find any url that starts with http://
replace it with https:// or // in your orignal code page which generates this page
Now relax and see again
You will see "website not secure" is not a problem now.
 
you will need to force https in that pages.
some people uses .htaccess file to do that.
you can also use PHP to do it and here is an example i am using to force https :
Code:
if ($_SERVER['HTTPS'] != "on") {
    $url = "https://www.". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    header("Location: $url");
    exit;
}
 
Chrome and other major browsers as of july have started to show non https sites as not secure. You must have a ssl certificate to fix it


Jack from Piqued Digi Media
 
banners
Back