I'm trying to install FCK editor on my VB webapplication in .NET.
I get this error when trying to view my webbapp in browser.
Script error in Internet Explorer
Row: 22
Character: 1
Error: Permisson Denied
Code: 0
URL: file://C:\inetpub\wwwroot\ProjektC\FCKeditor\editor\fckeditor.html
Anybody know how to fix this?
I get this error when trying to view my webbapp in browser.
Script error in Internet Explorer
Row: 22
Character: 1
Error: Permisson Denied
Code: 0
URL: file://C:\inetpub\wwwroot\ProjektC\FCKeditor\editor\fckeditor.html
Anybody know how to fix this?
RE: Script Error when trying to load FCKeditor.
John
RE: Script Error when trying to load FCKeditor.
Al
RE: Script Error when trying to load FCKeditor.
RE: Script Error when trying to load FCKedito
The error appears in fck_editor.js file, in setLinkedField() function, at line 151, when the following code is executed (each time FckEditor is initalized):
var oFields = parent.document.getElementsByName(URLParams['FieldName']);
At this line, evaluating 'parent.document' triggers the
'Access is denied' error.
My configuration is: Internet Explorer 6.0, Windows 2003 Server standard edition, the web page with FCKEditor is loaded in Local Intranet security zone, in a separate window opened using window.open . There is no pop-up blocker or other antivirus/firewall that might interfere with JScript permissions in IE. The JScript security settings in IE are all set to "Allow".
Both the files used by FckEditor and the web page are loaded from the same web site.