Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 months ago.
I've recently had an SSL installed onto my server.
I'm getting the "Your connection to this site is not fully secure" warning when using Chrome. I understand this relates to passive elements being loaded over a non secure connection and I understand what this means.
I cannot find any elements on the site being loaded over a non secure network and I've run it through a tool to check and not found any. I've created a blank HTML page with nothing on it and so I presume no chance of there being an element loaded on a non secure connection but I still get the warning.
Does anyone know why this may be?
Thanks
I think you get that message when you use https, but Google Chrome cannot correctly verify your certificate chain. You might want to make sure you have followed the instructions on that end fully, and that all certificates are installed correctly.
If/when you have, this is how you can check that every request uses https:
- Open the website on Google Chrome
- Press F12
- Open the network tab
- Press f5 to reload everthing
- There it has all the information you should need. Hover over a request to check whether it uses http or https
In addition to Daniël's answer, I also found a insecure future form submit can cause this warning.
My web page has below form
<form action="http://example.com/..." >
<input >...
</form>
Changing the action's value from http to https fixed the warning.
Or change to a "relative" protocol.
<form action="//example.com/..." >
Also, in Chrome, hit F12 to open developer tools, go to Console, there is the details of the warning