up vote 18 down vote favorite
5
share [g+] share [fb]

When I go to our web site through HTTPS mode, Chome is reporting an error saying that the page contains secure and not secure items. However, I used Firebug, Fiddler, and HttpDebuggerPro, all which are telling me that everything is going through HTTPS. Is this a bug in Chrome?

Sorry but I'm unable to give out the actual URL.

link|improve this question

25% accept rate
1  
Search the source for "http:" – s_hewitt Jul 6 '09 at 15:31
Hmmm...it seems to have stopped reporting the error on its own. I'm not too sure what happened, I'm certain it wasn't a caching error though. Maybe Google saw this post, fixed the bug and pushed out an update without me knowing :) – Frank Edwards Jul 13 '09 at 13:36
feedback

5 Answers

A bit late to the party here but I've been having issues recently and once I had found a http resource and changed it was still getting the red padlock symbol. When I closed the tab and opened a new one it changed to a green padlock so I guess Chrome caches this information for the lifetime of the tab

link|improve this answer
2  
If you quit chrome (on mac) and then re-open it, at which point it restores the tabs, the red padlock still stays. However closing the tab and creating a new one seems to clear whatever cache it's using – ianbarker May 20 '11 at 13:03
You can also use a new incognito tab (ctrl+shift+n) for this. – Protector one Jun 14 '11 at 12:05
This post should be marked as the answer, spot on. – Bjørn Jan 15 at 16:13
I also had this problem .. cached. Son of a gun. New tab fixes issue. – Jamsi Jan 20 at 5:26
Wow! Who would have thought. This worked for me! – Vince Panuccio Jan 24 at 3:46
show 1 more comment
feedback

Current versions of Chrome will show the mixed content's URL in the error console. Hit CTRL+Shift+J and you'll see text like:

"The page at https://www.fiddler2.com/test/securepageinsecureimage.htm contains insecure content from http://www.fiddler2.com/Eric/images/me.jpg."

link|improve this answer
1  
Also, keep in mind that you should flush your browser cache when doing testing like this, because a cached insecure resource request will not hit the network and thus won't be shown by proxy debuggers. – EricLaw -MSFT- Jul 6 '09 at 23:44
On Mac CMD+Shift+J is giving me the downloads window. Is there a menu item that does what you're describing? – cwd Sep 19 '11 at 18:01
Under the wrench menu, Tools -> JavaScript Console does it for me. – archbishop Nov 1 '11 at 22:07
feedback

It is possible that a non-secure URL is referenced but not accessed (e.g. the codebase for a Flash <object>).

link|improve this answer
feedback

Check the source of the page for any external objects (scripts, stylesheets, images, objects) linked using http://... rather than https://... or a relative path. Change the links to use relative paths, or absolute paths without protocol, i.e. href="/path/to/file".

If all that if fine, it could be something included from Javascript. For example, the Google Analytics code uses document.write to add a new script to the page, but it has code to check for HTTPS in case the calling page is secure:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
link|improve this answer
feedback

If all your resources are indeed secure, then it is a bug. http://code.google.com/p/chromium/issues/detail?id=72015 . Luckily it was fixed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.