The official documentation is less than clear - what's the correct way to integrate a custom file browser/uploader with CKEditor? (v3 - not FCKEditor)
|
feedback
|
protected by Will♦ Sep 21 '10 at 11:55
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Start by registering your custom browser/uploader when you instantiate CKEditor. You can designate different URLs for an image browser vs. a general file browser.
Your custom code will receive a GET parameter, CKEditorFuncName. Save it - that's your callback function. Let's say you put it into When someone selects a file, run this JavaScript to inform CKEditor which file was selected:
Where "url" is the URL of the file they picked. An optional third parameter can be text that you want displayed in a standard alert dialog, such as "illegal file" or something. Set url to an empty string if the third parameter is an error message. CKEditor's "upload" tab will submit a file in the field "upload" - in PHP, that goes to $_FILES['upload']. What CKEditor wants your server to output is a complete JavaScript block:
Again, you need to give it that callback parameter, the URL of the file, and optionally a message. If the message is an empty string, nothing will display; if the message is an error, then url should be an empty string. The official CKEditor documentation is incomplete on all this, but if you follow the above it'll work like a champ. | |||||||||||||||||
feedback
|
|
I have posted one small tutorial about integrating the FileBrowser available in old FCKEditor into CKEditor. http://www.mixedwaves.com/2010/02/integrating-fckeditor-filemanager-in-ckeditor/ It contains step by step instructions for doing so and its pretty simple. I hope anybody in search of this will find this tutorial helpful. | ||||
feedback
|
|
I spent a while trying to figure this one out and here is what I did. I've broken it down very simply as that is what I needed. Directly below your ckeditor text area, enter the upload file like this >>>>
'and then add your upload file, here is mine which is written in ASP. If you're using PHP, etc. simply replace the ASP with your upload script but make sure the page outputs the same thing.
| ||||
|
feedback
|
|
This is the approach I've used. It's quite straightforward, and works just fine. In the CK editor root directory there is a file named config.js I added this (you don't need the querystring stuff, this is just for our file manager). I also included some skinning and changing of the default buttons shown:
Then, our file manager calls this:
| |||
|
feedback
|
|
An article at zerokspot entitled Custom filebrowser callbacks in CKEditor 3.0 handles this. The most relevant section is quoted below:
| |||||||||||||
feedback
|
|
Thanks for the info, Don. I have been trying to do this as well. A resource that others might fine helpful: | |||||
feedback
|
|
Here are the dev docs for some additional info... | |||
|
feedback
|
|
You can also try PGRFileManager. It integrates with CKEditor easily | |||
|
feedback
|
|
Shameless plug: I've written a jquery file browser that supports ckeditor out of the box: http://www.sensebrowser.org/ | |||
|
feedback
|