How to tell which resources are loaded "insecurely" with Chrome using https

8

1

I understand this is because I'm loading some stuff via http:// but does that mean a single http reference can't appear in the source? Even in examples like <a href="http://...">...</a>?

How can I find specially which resources are causing the problems?

Thanks!

macek

Posted 2011-01-13T23:41:32.563

Reputation: 5 157

Answers

3

See this question which describes how to see a list all resources. It includes the URL, which you can inspect to see if is http instead of https.

Zoredache

Posted 2011-01-13T23:41:32.563

Reputation: 18 453

Absolutely, it's invaluable. When I got bitten, it turned out to be that my securely loaded CSS was using Google Web Fonts with an http: load to add a new font; changed that to an https and the problem was solved. I'd never have tracked it down without the DevTools Resources panel. – Phil P – 2011-01-14T01:37:39.347

2

Hyperlinks do not load resources unless clicked. Typical culprits are usually images or frames loaded without the https prefix. I'd take a look through the source for http links for a better idea.

John T

Posted 2011-01-13T23:41:32.563

Reputation: 149 037