question about "ssl"

ljwhite

Well-Known Member
Jun 20, 2005
363
0
166
I installed ssl on domain.com. But when i open https://domain.com, it is said:
This page contains both secure and nonsecure items.
Do you want to display nonsecure items?

What is wrong? What shall i do?
Many thanks in advance!
 

elliotcooper

Well-Known Member
PartnerNOC
May 18, 2005
56
0
156
This problem is caused when you include links in the html of the page that are not pulled via an https connection. For exanple an image link usually looks like this:

<a href="http://www.domain.com/example.jpg"</a>

The fact that it is pulled with http means that it will cause the error message that you are seeing. If you change it to:

<a href="https://www.domain.com/example.jpg"</a>

then you will not get the error. You need to ensure that any link in the html to any resource is via an httpd link and you will avoide the error.