security - Blocked a frame with origin "<mydomain>" from accessing a frame with origin "https://www.facebook.com" -
first of all, checked post already: facebook: unsafe javascript issue (document.domain values should same)
but page on facebook. error i'm getting in chrome console on page on own website is:
blocked frame origin "<mydomain>" accessing frame origin "https://www.facebook.com". frame requesting access has protocol of "http", frame being accessed has protocol of "https". protocols must match. fckeditorcode_gecko.js:36
to sure, logged out facebook, still error occurs.
line 36 in fckeditorcode_gecko.js:36
starts with:
var fcktools={};fcktools.createbogusbr=function(a){var b=a.createelement('br');b.setattribute('type','_moz');return b;};
how fix this?
you can't, due same origin policy.
it appears trying add <br>
tag document in frame. domain, protocol , port must match achieve this, or cors must implemented requested resource in frame.
Comments
Post a Comment