admin管理员组文章数量:1434972
folling this discussion and this link, I learnt that by adding document.domain = 'mydomain';
to the tinyMCE initializer file and tiny_mce_popup.js i can overe the cross domain problem.
I haven't tested it on a proper production server, but in my dev environment the base domain is localhost:8000 and my static files (also tinyMCE ones) are on localhost:88.
Adding document.domain = 'localhost:8000';
or document.domain = 'localhost:88';
doesn't solve the problem as I get the following error:
Uncaught Error: SECURITY_ERR: DOM Exception 18
Any help?
Thanks
folling this discussion and this link, I learnt that by adding document.domain = 'mydomain.';
to the tinyMCE initializer file and tiny_mce_popup.js i can overe the cross domain problem.
I haven't tested it on a proper production server, but in my dev environment the base domain is localhost:8000 and my static files (also tinyMCE ones) are on localhost:88.
Adding document.domain = 'localhost:8000';
or document.domain = 'localhost:88';
doesn't solve the problem as I get the following error:
Uncaught Error: SECURITY_ERR: DOM Exception 18
Any help?
Thanks
Share Improve this question edited May 23, 2017 at 12:13 CommunityBot 11 silver badge asked May 24, 2010 at 12:15 pistacchiopistacchio 59k110 gold badges287 silver badges434 bronze badges2 Answers
Reset to default 5The document.domain setting only works if your using subdomains, not pletely different domains (different ports count as different domains). So you can have server1.mydomain. and server2.mydomain., in which case you set domain to mydomain. in both the main page and tiny_mce_popup.js. You can't however use mydomain. and otherdomain.. For more information on these restrictions see https://developer.mozilla/en/DOM/document.domain or http://msdn.microsoft./en-us/library/cc196989(VS.85).aspx
I believe there are plans to adjust the way TinyMCE works so that it can have a CDN version which is usable from any domain, but that doesn't currently exist.
Regards,
Adrian Sutton
http://tinymce.ephox.
Are you using Django ? I've answered this question below pertaining specifically to tinymce in django.
Tiny MCE popups blank in Django admin
本文标签: javascriptCrossdomain TinyMCEStack Overflow
版权声明:本文标题:javascript - Crossdomain TinyMCE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745626148a2666983.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论