Jump to content

SSL Certificate error


Recommended Posts

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 in
1)adminpanel -> preferences -> Enable SSL

2) in .htaccess

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ 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 by prakritiaryan1@gmail (see edit history)
Link to comment
Share on other sites

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

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)

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...