This error just started popping up all over our site.
Permission denied to call method to Location.toString
I’m seeing google posts that suggest that this is related to flash and our crossdomain.xml. What caused this to occur and how do you fix?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you using javascript to communicate between frames/iframes which point to different domains? This is not permitted by the JS ‘same origin/domain’ security policy. Ie, if you have
And the script on bar.com tries to access
window['foo'].Location.toString, you will get this (or similar) exceptions. Please also note that the same origin policy can also kick in if you have content from different subdomains. Here you can find a short and to the point explanation of it with examples.