Hi Team,
We are using CKEditor.js - version.
The editor works fine in intranet with IE 7/8, Mozilla Firefox 3.0.5 above/Chrome browsers. However when the same is accessed on secured layer (juniper firewall) the editor fails to load completely in IE & Mozilla. The same works fine in Chrome.
This issue is very critical. Appreciate quick help to close this issue. Thanks.
Error: Permission denied
while executing code: this.$['data-cke-expando']
File: CKEditor.js
Line: 12 Char: 1513
Regards,
Achyuth
We are using CKEditor.js - version.
The editor works fine in intranet with IE 7/8, Mozilla Firefox 3.0.5 above/Chrome browsers. However when the same is accessed on secured layer (juniper firewall) the editor fails to load completely in IE & Mozilla. The same works fine in Chrome.
This issue is very critical. Appreciate quick help to close this issue. Thanks.
Error: Permission denied
while executing code: this.$['data-cke-expando']
File: CKEditor.js
Line: 12 Char: 1513
Regards,
Achyuth
Re: CKEditor Permission denied
Any ideas how to fix and debug this issue?
By the way is there ready made unpacked version of ckeditor.js available for download from somewhere?
Re: CKEditor Permission denied
Apart from the JS error that you can see in web browsers, does this firewall log the error somewhere?
Could you check what exactly the firewall is blocking / what strings it is removing/replacing etc. ?
To load CKEditor from source (the uncompressed version), instead of loading ckeditor.js, load ckeditor_source.js. Please note that loading CKEditor from source will slow down the editor due to lots of HTTP requests required to load the editor.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: CKEditor Permission denied
Hi,
Unfortunatelly I don't have access to ssl-vpn device logs.
At least it converts all urls to https:// and adds extra folder to all .js paths. I can try to provide more details at later time. Or perhaps http://www.juniper.net/customers/support/ can provide more details if someone bothers to ask from there.
Re: CKEditor Permission denied
If possible, please attach a screenshot with HTTP requests called by CKEditor, e.g. from the "Net Panel" in Firebug.
Are there any 404 errors or any other suspicious requests?
Theoretically, you could also compare ckeditor.js that your browser receives with the one that is included in the package. Are they different (just guessing)?
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: CKEditor Permission denied
It occurs on a page where multiple CKEditor instances can be created with instanceReady calls, but only 1 is shown at a time, the bug was narrowed down to a few instances where we removed the CKEditor DOM elements but forgot to remove the instance from CKEDITOR.instances using CKEDITOR.remove(CKEDITOR.instances[key]); where key is the instance name
A peculiarity to note, this bug was stumbled upon with another bug, when this bug occurs the original textarea DOM element doesn't have the correct value (does not equal the text entered in CKEditor), I only managed to finally get the right value from the iframe CKEditor creates.
I'm going to try to build a test case to recreate the bug exactly, when I get a chance
Re: CKEditor Permission denied
textarea.empty().val('');
for some reason calling empty() and .val('') on a textarea in IE8 will sometimes throw a $.innerHTML is undefined error or null error... This is maybe why when CKEditor tries to reference the textarea it throws this error
Re: CKEditor Permission denied
Re: CKEditor Permission denied
Ckeditor losing data
Hi,
Hitting a similar issue, I am able to enter text in the editor but the text is not posted to the server, an empty text is sent. Its happening intermittently for me too.
Any recommendation on how we can resolve the issue?
Has anyone gotten any
Has anyone gotten any solution on this? I am having this same problem but I find no solutions to it. And it only happens in IE, every other browser is fine.