CKeditor integration with FCKeditor filebrowser

Posted by -provideralexander.rios on Stack Overflow See other posts from Stack Overflow or by -provideralexander.rios
Published on 2009-12-14T21:08:25Z Indexed on 2010/04/03 10:13 UTC
Read the original article Hit count: 651

Filed under:
|

Hi everybody. I'm using CKeditor 3 and I need integrate a filebrowser/uploader. It need to be free. I tried to integrate the one what come with FCKeditor but I allways got and xml error: http://pastie.org/743024

I'm trying to do it in this way:

<script type="text/javascript">
 window.onload = function(){
  CKEDITOR.config.language='es';
  CKEDITOR.config.forcePasteAsPlainText = true;
  CKEDITOR.config.enterMode = CKEDITOR.ENTER_DIV;
  CKEDITOR.replace('ncCont',{
    filebrowserBrowseUrl: 'filemanager/browser/default/browser.html',
    filebrowserUploadUrl : 'filemanager/connectors/php/upload.php'
  });
 };
</script>

Can the FCKeditor get integrated with CKeditor?? if yes, how this can get done? if don't, knows somebody a free filebrowser/uploader??

Thanks in advance.

© Stack Overflow or respective owner

Related posts about fckeditor

Related posts about ckeditor