Thanks Alfonso, now i see the lines that JS debugger prompt.
Here is the errors and the files: fckkeystrokehandler.js 1.- permission denied for line: 136. This is the end of the file.¿? 2.- syntax error in line: 135. the line is 'return true ;'
fck_ie.js Permission denied in line: 83. the line is 'var e = FCK.EditorWindow.event ;'; syntax error in line: 84. This line is empty.
Maybe you can have better luck using the MS script debugger or editor or however it's called, at least it should stop really on the first line with the error and not in an empty line.
But you should try to create a minimal test case, start with one of the samples and add just the minimum code to reproduce the error (or start with your code and remove everything until the error disappears)
I am using asp.net 3.0 and FCK Editor version 2.6. When i refresh the page i get "permission denied" error. I have update panel on my page.Is this creating error???.I can't remove update panel from my page.Is there any solution for it??? It was working fine before I applied update panel on my pages. Even when the page loads first time it does nto show this weird error.Bt next time after refersh I get this error. We have some solutions too,But none of them is working: 1. Give write permissio's to the FCK folder. 2.I have read in other forums that FCK editor and website should be on same domain.Which is valid in our case.The FCk editor and website is on same domain. What could be the solution for it.Promp reply is highly appreciated.
I was struggling with this error a lot too. Once you're sure you've waited long enough for the editor to load (by hooking in to the FCKeditor_OnComplete function call), it's also possible to get this error by calling SetHTML very quickly in succession (i.e. in response to the same event).
I fixed both issues by wrapping SetHTML in a function which deferred the setting if either FCK wasn't loaded, or SetHTML had already been called in the last 0.5 seconds. Since then no more Permission Denied errors.
RE: fckeditorcode_ie permission denied
Any help?
thanks
LeChuck
RE: fckeditorcode_ie permission denied
RE: fckeditorcode_ie permission denied
Here is the errors and the files:
fckkeystrokehandler.js
1.- permission denied for line: 136. This is the end of the file.¿?
2.- syntax error in line: 135. the line is 'return true ;'
fck_ie.js
Permission denied in line: 83. the line is 'var e = FCK.EditorWindow.event ;';
syntax error in line: 84. This line is empty.
Any help with this?
thanks
attn
LeChuck
RE: fckeditorcode_ie permission denied
But you should try to create a minimal test case, start with one of the samples and add just the minimum code to reproduce the error (or start with your code and remove everything until the error disappears)
Re: fckeditorcode_ie permission denied
Visual Studio debugger reports it to be on fck.js line 402
FCK.EditorDocument.detachEvent("onselectionchange", Doc_OnSelectionChange)
using IE 7.
The error only occurs whilst using IE, works fine in FF and Safari. Any help to get this fixed would be greatly appreciated.
Re: fckeditorcode_ie permission denied
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: fckeditorcode_ie permission denied
I am using asp.net 3.0 and FCK Editor version 2.6. When i refresh the page i get "permission denied" error.
I have update panel on my page.Is this creating error???.I can't remove update panel from my page.Is there any solution for it???
It was working fine before I applied update panel on my pages. Even when the page loads first time it does nto show this weird error.Bt next time after refersh I get this error.
We have some solutions too,But none of them is working:
1. Give write permissio's to the FCK folder.
2.I have read in other forums that FCK editor and website should be on same domain.Which is valid in our case.The FCk editor and website is on same domain.
What could be the solution for it.Promp reply is highly appreciated.
Thanks
Yuvika
Re: fckeditorcode_ie permission denied
I fixed both issues by wrapping SetHTML in a function which deferred the setting if either FCK wasn't loaded, or SetHTML had already been called in the last 0.5 seconds. Since then no more Permission Denied errors.
Hope this helps.
Regards
JAmes
Re: fckeditorcode_ie permission denied