Mobile app version of vmapp.org
Login or Join
Welton855

: SSL not working on home page Recently set up a server for a client and installed a Comodo Positive SSL certificate. In firefox everywhere on the website I can see the padlock icon which

@Welton855

Posted in: #Apache2 #Https #SecurityCertificate

Recently set up a server for a client and installed a Comodo Positive SSL certificate. In firefox everywhere on the website I can see the padlock icon which shows the Comodo verification, except the home page.

Click on any internal link and the padlock shows up. Just not on the home page which continues to say "Website does not provide identity information".

Is there a configuration problem with my SSL installation or Apache config? How can I fix this so the home page validates as secure?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

1 Comments

Sorted by latest first Latest Oldest Best

 

@Karen161

The problem is because you have some of the images hard-coded to load through http protocol on your index page. You should change the links to be protocol-agnostic by using //, e.g.:

<img src="http://example.com/image.png">


Change with:

<img src="//example.com/image.png">


These links will make content load through https if site is also using https and will use http if site is using http.

Example from index page:

<img alt="" src="http://s510779130.onlinehome.us/image/data/Category_logo/KNIVES.jpg" style="width: 225px; height: 163px; border-width: 2px; border-style: solid; margin-left: 2px; margin-right: 2px;" />

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme