The forum operates in read-only mode. Please head to StackOverflow for support.
This should be simpler as of CKFinder 2.1 thanks to the connectorPath option.
Wiktor Walc CTO, CKSource - http://cksource.com -- Follow CKEditor on: Twitter | Facebook | Google+
Re: How to change path to connector.php
find sting "this.oN=a.basePath+(q.config.connectorPath||'core/connector/')+r+'/connector.'+r;" in this file
and replaced by "this.oN='this_you/path';"
if you have dynamic generated paths that you can create global variable before call ckfinder.js in HTML file
example:
HTML:
...</title>
<script type="text/javascript">myFullPath = '/mySecuredConnector/path_without_php_extension/';</script>
<script type="text/javascript" src="/js/ckfinder.js"></script>
</head>....
ckfinder.js
sting "this.oN=a.basePath+(q.config.connectorPath||'core/connector/')+r+'/connector.'+r;" replaced by "this.oN=myFullPath;"
Re: How to change path to connector.php
This should be simpler as of CKFinder 2.1 thanks to the connectorPath option.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+