vote up 4 vote down star
2

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.

flag

25% accept rate
Search the source for "http:" – s_hewitt Jul 6 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 at 13:36

3 Answers

vote up 2 vote down

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|flag
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 at 23:44
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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