Tadhg Hanrahan
Tadhg Hanrahan

Reputation: 3

My site has a valid SSL Cert why would my browser say it's not secure?

My cert appears to be valid but on the registration page I see an insecure connection warning. Other pages of the site are secure.

Upvotes: 0

Views: 70

Answers (2)

Dana
Dana

Reputation: 372

There should be three cases for your query:

  1. You are using single domain ssl certificate that secures only one domain and your registration page is running on sub domain or other domain name.

Solution:

If your page is running on other domain name either sub domain or totally different domain name and if requirement to secure only that domain name then take other single domain SSL certificate to secure only registration page.

  1. You have not enabled SSL certificate for registration page.

Solution:

Enable SSL certificate for your registration page,if you forgot to include that page. Also use jitbit ssl tool to find that are there other http urls remain on which the same SSL has not enabled. If found any then enable SSL on them too to avoid mixed content warning.

  1. Some Content (like images, url etc.) of registration page is on http page.

Solution:

Checkout reference link how to deal with secure and non secure content warning.

Upvotes: 0

Anand Bhat
Anand Bhat

Reputation: 5819

Check the console in your browser (F12) for warnings. You probably have resources (CSS/ scripts/ images) served over insecure HTTP on that page.

Upvotes: 1

Related Questions