ekrembk
ekrembk

Reputation: 410

Why Chrome does not trust SSL?

SSL is installed to my VPS correctly. I want to use ssl in some pages of my website. Every form in these pages are starting with "https://", too. But browsers don't accept it.

What are the possible reasons?

SSL Problem

Upvotes: 0

Views: 233

Answers (3)

Cninroh
Cninroh

Reputation: 1796

You might also try running curl -verbose https://yourlink.com from the console in order to get detailed printout of where the hiccups are.

Upvotes: 0

Cninroh
Cninroh

Reputation: 1796

I would try checking it via something like this first : http://www.sslshopper.com/ssl-checker.html

Upvotes: 1

mingos
mingos

Reputation: 24542

There may be a number of reasons. Last time I got it on my site was when I was using an iframe with external content and a flash widget loaded via an external javascript. Both were accessed via HTTP and messed my site's trustworthiness.

So. Check all your external content: javascripts, widgets, iframes, images, stylesheets... You may be loading them via HTTP, which in turn may make Chrome claim the SSL certificate has a problem.

Upvotes: 1

Related Questions