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.
Re: CKFinder multiple instances on page with own configurati
Assign a different ID depending on which configuration option you'd like to use and then based on that ID, adjust your server side configuration. See a similar post: viewtopic.php?t=18575
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+
Re: CKFinder multiple instances on page with own configurati
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?
Re: CKFinder multiple instances on page with own configurati
To connect CKFinder with CKEditor and pass the ID to the connector, you must change the way how you integrate both applications.
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:
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
And how to get this id in the
And how to get this id in the CheckAuthentication()?
$_GET['id'] do not work!