Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I ran into the same problem, and have traced it to a bug in IE8. The comments on this page led me to a solution:</p> <p><a href="http://blogs.msdn.com/b/ieinternals/archive/2009/06/22/https-mixed-content-in-ie8.aspx" rel="nofollow">http://blogs.msdn.com/b/ieinternals/archive/2009/06/22/https-mixed-content-in-ie8.aspx</a></p> <p>This MS dev says:</p> <blockquote> <p>Fascinating. This is a race condition.</p> <p>The debugger reports that the following is the URL that is triggering the prompt:</p> <p>"about:/images/lightview/inner_slideshow_play.png"</p> <p>Of course, that URL doesn't actually exist in your markup. It looks like there's dynamic creation of an IFRAME and injection of content into that frame. The default URL for an empty frame is about:blank, which leads to the prompt.</p> <p>As a workaround, using an absolute URL would probably work, or by initializing the IFRAME with a the SRC of a blank page on your server (this should also fix the Mixed Content problem with IE6).</p> </blockquote> <p>Normal browsers don't have a problem with URLs for dynamic content that aren't fully qualified, protocol and all. But IE8 <em>sometimes</em> drops the ball and instead of putting in the protocol and host, it puts in "about:" in front of your path, and fails to trust that in a https context.</p> <p>I edited nivoslider to qualify the URLs of all the images it draws dynamically. Further development would be needed to allow use of query strings in image URLs.</p> <p>Here's my <a href="http://pastebin.com/znhGMhjh" rel="nofollow">edited source</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload