prakritiaryan1@gmail Posted January 1, 2014 Share Posted January 1, 2014 (edited) hi,my website name is https://www.aqualec-ufh.co.uk/en/ and it is showing grey triangle, however i have purchase authenticate ssl certificate. I read some threads and i did some changes like in1)adminpanel -> preferences -> Enable SSL2) in .htaccessRewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://www.aqualec-ufh.co.uk/$1 [R=permanent,L]but still it is not showing proper secure connection , please tell what else i can do for this. Thanks Prakriti Edited January 1, 2014 by prakritiaryan1@gmail (see edit history) Link to comment Share on other sites More sharing options...
walidon Posted January 1, 2014 Share Posted January 1, 2014 (edited) Please read the following article. http://www.prestashop.com/blog/en/guest-blogger-series-prestashop-ssl-installation-troubleshooting/ if it doesn't answer your question, come back and we will try to fix it. Edited January 1, 2014 by walidon (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted January 1, 2014 Share Posted January 1, 2014 your website contains "external" resources without ssl certificate, like google fonts: <link href="http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700" rel="stylesheet" type="text/css"> <link rel="alternate" type="application/rss+xml" title="Aqualec-ufh.co.uk" href="http://www.aqualec-ufh.co.uk/modules/feeder/rss.php?id_category=0&orderby=position&orderway=asc"> this causing your problem. you have to change http to https for these external stuff. Link to comment Share on other sites More sharing options...
prakritiaryan1@gmail Posted January 2, 2014 Author Share Posted January 2, 2014 hi, yes you right the problem is with external http, do i need to change manually all http to https from theme or is there any other alternate method?? Thanks Prakriti Link to comment Share on other sites More sharing options...
vekia Posted January 2, 2014 Share Posted January 2, 2014 everything depends on how these libraries are attached, i suppose that they are attached in simple way with tpl file (via module .tpl files or in header.tpl file of your template) for example, instead of <link href="http://fonts.googlea...sed:400,300,700" rel="stylesheet" type="text/css"> you have to use <link href="//fonts.googlea...sed:400,300,700" rel="stylesheet" type="text/css"> - it's the best method, because when someone is connected via http (nonssl) code above will generate url with non-ssl connection. when someone open your website with ssl connection, then script will use https it's necessary due to the "mixed content" filtering (new feature in browsers) 1 Link to comment Share on other sites More sharing options...
prakritiaryan1@gmail Posted January 3, 2014 Author Share Posted January 3, 2014 hi walidon, I read that article but its not giving any solution. vekia is right that the problem is with external http, but i donot understand do i need to change manually all http to https from theme or is there any other alternate method?? thanks prakriti Link to comment Share on other sites More sharing options...
vekia Posted January 3, 2014 Share Posted January 3, 2014 there is no other method, you have to change these urls manually, unfortunately. 1 Link to comment Share on other sites More sharing options...
Recommended Posts