Hello!
I bought CKFinder for a couple of days ago but can't manage to implement it into the CKEditor. I hope someone in this forum can help me
This is the script I'm using now. The basepath for CKFinder is /ckfinder/.
<script type="text/javascript"> CKEDITOR.replace( 'email_text', { toolbar : [ ['Source','-','Preview','Cut','Copy','Paste','PasteText','PasteFromWord','Print'], ['Undo','Redo','-','Find','Replace','SelectAll','-','Image','Link','Unlink','SpecialChar','-','TextColor','BGColor','-','RemoveFormat','-','Maximize'], '/', ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Format','Font','FontSize'], ], }); CKEDITOR.editorConfig = function( config ) { config.language = 'da'; config.resize_maxWidth = 250; }; </script>