Reputation: 99
This error keeps on appearing. How to remove this? My site is an https and the content of the iframe is also coming from an https source, I don't know what seems to be the problem?
// edited:
this is the detailed error that appears. and yes, I am using IE6.
Upvotes: 0
Views: 2695
Reputation: 12367
1) Make sure that it's the <iframe>
that is causing your problem. Do as @JonathonReinhart suggested and comment it out so that you can ascertain that your issue is from there. (Edit: never mind, it appears that the <iframe>
is indeed your issue)
2) Browsers are very sensitive to iframes because they can access content that is a) not yours and b) insecure. In general, though, whenever you have an HTTPS page that accesses anything (scripts, frames, images) from an HTTP page, it'll throw you a warning. However, with iframes, the browser will shut you down, with most of them disabling the iframe completely unless the user confirms that they want to access the content. I'm not sure how lenient IE6 is with this, but if there's anything that's the slightest bit fishy about the way you're accessing the content, the browser is not going to like it. You shouldn't have an issue if the HTTPS page is accessing HTTPS content, but you need to scope out all of your resources (perhaps in another browser?) to make sure that you're accessing everything securely.
3) Also keep in mind that the page you're accessing (though it may be secure itself) may access insecure resources. I would recommend going to that page and checking its resources as well, because the browser will still count it accessing those resources insecurely as your page accessing them insecurely.
Upvotes: 0
Reputation: 2562
There are nonsecure items in either your page or in the iFramed page. Look at the source code for any URL that does not begin with https://.
You will have to look very closely at all your resource references.
Upvotes: 1