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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -