Hello.
I would like to know if it is possible to create multiple instances of CKEditor for PHP (with CKFinder) on the same page with different configuration (such as maximum image size or uploads directory). If it is possible - how can I load different configuration files or options? It would be great to see some code examples.
I would like to know if it is possible to create multiple instances of CKEditor for PHP (with CKFinder) on the same page with different configuration (such as maximum image size or uploads directory). If it is possible - how can I load different configuration files or options? It would be great to see some code examples.

Check also: config.id
http://docs.cksource.com/ckfinder_2.x_a ... g.html#.id
From the documentation:
Wiktor Walc
CTO
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
GET data at server:
Id patameter is passing normally when CKFInder is standalone only:
GET data at server:
How to pass CKFinder application id when I'm using It together with CKEditor?
Pass additional file browser configuration settings to the config property of the CKEditor instance, including your custom id in the query string:
http://docs.cksource.com/CKFinder_2.x/D ... ntegration
In short, do something more or less like this:
var editor = CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl: '/ckfinder/ckfinder.html?id=foobar' } );Wiktor Walc
CTO
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+