Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to track down "this page contains both secure and nonsecure items"

As far as I can tell, there are no unsecure items --- when I browse to the site with IE7 or FireFox 3 I don't get any such warning, but if I hit the site with IE6 I get the security informaiton dialog box "This page contains both secure and nonsecure items Do you want to display te nonsecure items?"

How can I track down the cause of that message?

like image 366
Ralph Shillington Avatar asked Jun 01 '09 15:06

Ralph Shillington


2 Answers

Use Fiddler, after clearing your cache. It'll show everything that your web browser fetches from the remote site. Look for anything that's not https.

like image 105
Aric TenEyck Avatar answered Sep 22 '22 05:09

Aric TenEyck


As it turns out it has nothing to do with nonsecure traffic per se, but with a hack that one of the HTML boys did --- they have an empty iframe (without a source) that they place on the page, so they can then do some placed content on top of that --- gut the iframe out of the code and the warning dialog box went away. IE7/8 and FF doesn't do it.

AFter adding a blank.gif we're able to https to that gif (what a pain) and now it's all good.

like image 30
Ralph Shillington Avatar answered Sep 22 '22 05:09

Ralph Shillington