Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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!

like image 829
Nikoole Avatar asked Apr 23 '13 11:04

Nikoole


2 Answers

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

Fabio

like image 131
fcerullo Avatar answered Nov 11 '22 17:11

fcerullo


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.

like image 31
Mauritz Hansen Avatar answered Nov 11 '22 17:11

Mauritz Hansen