I can not find jsp connector under:
editor/filemanager/browser/default/connectors
I have download the newest release FCKEditor2.0 RC3 and FckEditor Java programs.
Thanks!!
editor/filemanager/browser/default/connectors
I have download the newest release FCKEditor2.0 RC3 and FckEditor Java programs.
Thanks!!
RE: I cannot find jsp connector
there is not connector inside the directory.
The connector is a servlet that is mapped to the directory above.
To have it working you just need to register the servlet inside the web.xml file
This the statement you have to put in your file (but should already be inside the web.xml provided as example)
<servlet-mapping>
<servlet-name>Connector</servlet-name>
<url-pattern>/editor/filemanager/browser/default/connectors/jsp/connector</url-pattern>
</servlet-mapping>
Simone
RE: I cannot find jsp connector
Thanks very much, and i will try.
RE: I cannot find jsp connector
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector' ;
ALL works fine NOW.
RE: I cannot find jsp connector
anyway there should be no more need of changing the line in the fckconfig.js
I you see the samples provided you can just add an attribute inside the jsp tag to make it working without changing the config file