My question is how to set config.connectorInfo on CKFinder when using it with a CKEditor integration. I can get it to work fine standalone with this:
I can't figure out how to do it when using CKFinder with CKEditor, preferably using only JavaScript since my implementation is using Python. That doesn't seem to be a configuration option that can be passed in. Am I missing something? Can I configure the CKFinder first and then attach it to the editor somehow?
Any help is most appreciated.
CKFinder.popup( { connectorInfo : 'page={{ somVar }}' } );I can't figure out how to do it when using CKFinder with CKEditor, preferably using only JavaScript since my implementation is using Python. That doesn't seem to be a configuration option that can be passed in. Am I missing something? Can I configure the CKFinder first and then attach it to the editor somehow?
Any help is most appreciated.

Re: Setting connectorInfo with CKEditor Integration
var editor = CKEDITOR.replace( 'editor1', { fileBrowserUrl : } ); CKFinder.setupCKEditor( editor, { basePath : '/ckfinder/', connectorInfo : 'page=123' }) ; // connectorInfo is the additional information appended to the URL, // so we need this trick to alter the URL for "Quick uploads" used // by the Upload tab in CKEditor: editor.config.filebrowserUploadUrl += '&page=123' editor.config.filebrowserImageUploadUrl += '&page=123' editor.config.filebrowserFlashUploadUrl += '&page=123'Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+