Hi every1,
got some problems with CKFinder Integration into WebObejcts
WebObjects is a Application Server, so i need to lear CKFinder to use one from me given URL for the connector actions. The URL is not static, it have a sessionID in it, whihc i very need to transfer back to server with every connector usage, so i can apply security rules on every request. However i cant find the method how could i put this URL into the CKFinder.
What i've done now, i edited the "ckfinder_gecko.js" and "ckfinder_ie.js", where i replace the mi:CKF_CORE_PATH+'connector/php/connector.php'
with
mi:'/cgi-bin/WebObjects/MyApplication.woa/wa/ckfinder'
However this does not allowes me to know what user use the finder now and what restrictions he have. Normally i put follow parameter in eveyr url of mine: sessionID=GENERATEDSESSIONID, this is how the WebObjects works
So my question is how could i put some dynamical URL for the connector info for CKFinder on the fly, coz the static method works only for tests )
Thanks in advance for your answers,
Dmitri
p.s. If any questions about what i tryed to explain here, ask me here, i try to clearify situation as soon as possible.
Fri, 05/07/2010 - 11:43
#1
Re: CKFinder integration with WebObjects
something like this:
var editorZiel= CKEDITOR.replace('EZiel',{
customConfig : 'ckeditor.js',
language : 'de',
connectorURL: myConnectorURL
}
or something like this:
CKFinder.SetupCKEditor(editor_EOProjekt_Ziel, connectorURL: myConnectorURL);
I mean it is possible to make it somehow in the time where i initialize the editor in the page?