Hello,
I just visited this page (http://docs.cksource.com/CKEditor_3.x/D ... figuration) to understand how to add my own image upload system but does not identify which file CKeditor it is necessary to add the following line:
CKEDITOR.replace( 'editor1',
{
filebrowserBrowseUrl : '/browser/browse.php',
filebrowserUploadUrl : '/uploader/upload.php'
});
Can you help me? Thank you in advance!
Re: Which file to edit FileBrowser ?
The "replace" function is used in the page where you have the CKEditor instance (more explained here). You have to put the code right after </textarea>, so it would look like this:
You might need to replace editor1 with whatever you call your instance.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Re: Which file to edit FileBrowser ?