How IT Should Be
Powered by Squarespace

Go Green
Recommended in our Store
  • Switch: How to Change Things When Change Is Hard
    Switch: How to Change Things When Change Is Hard
    by Chip Heath, Dan Heath
« Q&A: Which Windows 7: Full or Upgrade? | Main | Configure Firefox to use Gmail or Google Apps for MailTo Links »
Sunday
Jul122009

Fixing the IE 8 warning - ‘Do you want to view only the webpage content that was delivered securely?’

(from http://blog.httpwatch.com)

To download the content a user would nowhave to click on the No button. As we know, most people using the web only scan text and avoid reading it if at all possible! They will usually go for the Yes button if there isnot an OK button.

Some sites are going to find that their secure pages in IE 8 have the following problems:

  • Any non-secure HTTP image beacons used for analytics data gathering will often be ignored
  • The page may not display or even work correctly if it relies on non-secure images, CSS or Javascript

Therefore, avoiding mixed content on HTTPS pages is even more important now that IE 8 has been released. It often becomes an issue when using third party services such as analytics or Content Delivery Networks (CDN). For example, we avoided the use of Google hosted Ajax libraries on our site until Google added HTTPS support.

An IE user you can disable this warning by:

  1. Going to Tools->Internet Options->Security
  2. Select the ‘Security’ tab
  3. Click the ‘Custom Level’ button
  4. In the ‘Miscellaneous’ section change “Display mixed content” to Enable

Reader Comments (1)

This is for .Net developers who are having security message problem ---
this message is due to mixed(http+https) content on the page. please make sure that ur https page contains only https content on the https page.

i had same problem of security message. my https page did not have any http reference and it was working fine in IE7, and mozila, but testing in IE8 gave me security warning message. using httpwatch i could come to know that following 2 auto generated files(scripts) by .Net were having http refereces (in view source of the page they displayed with relative path so did not get detected as http reference but httpwatch found them as http references:))
1.WebResource.axd(related to js) 2.ScriptResource.axd (related to ajax). i kept both this files in web.config sucure page collection list as below
<file path="WebResource.axd" />
<file path="ScriptResource.axd" />
and now page works fine in IE8 without Security message. Thnx a ton httpwatch n its Team :)
Reference Link : http://blog.httpwatch.com/
using this software you can find all http references in https page.

October 27, 2009 | Unregistered CommenterMahesh Thakkar

PostPost a New Comment

Enter your information below to add a new comment.

My response is on my own website »
Author Email (optional):
Author URL (optional):
Post:
 
Some HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>