HTTPS security is compromised error. How to fix? [closed]

送分小仙女□ 提交于 2019-12-03 18:01:26

问题


Click on href - on this page i has embed the iframe. Its iframe contents links. If i go to playlist tab and try to click on pictures in console of IE9 i see:

SEC7111: HTTPS security is compromised

Could anyone help me? Thanks a lot!


回答1:


The error message is IE's new way of warning about mixed content (HTTP and HTTPS resources on a secure page).

Fabio




回答2:


This is an Internet Explorer error when it encounters mixed content (or what it thinks may be mixed content). Usually the error message also specifies which file is at fault, as in

SEC7111: HTTPS security is compromised by https://example.com/example.html

If you link to any images, JavaScript or CSS files from an https site you need to do so using https.




回答3:


In my case what caused the error was a javascript call to

document.write("something");

After I removed this script block the exception was no more thrown.



来源:https://stackoverflow.com/questions/16168132/https-security-is-compromised-error-how-to-fix

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!