I'm implementing the editor with my .NET app which works fine. When i try to view the file browser i get a js error that seems to point to the follow js code:
var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ;
var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ;
The fckeditor folder is currently sitting in my Admin folder so that users must login to the app to use the editor. When i move the fckeditor folder to the root of my site and make the appropriate path changes the file browser works fine? any ideas what could be causing this?
var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ;
var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ;
The fckeditor folder is currently sitting in my Admin folder so that users must login to the app to use the editor. When i move the fckeditor folder to the root of my site and make the appropriate path changes the file browser works fine? any ideas what could be causing this?