I'm trying to integrate CKEditor and CKFinder, but when I pop open the image upload box, under the Image Info tab I cannot see the Browse Server button. The code I'm using in CKEditor's config.js file is
Also, how do I change the path to where the files are uploaded?
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'MyToolbar';
config.toolbar_MyToolbar =
[
['Source','-','Preview'],
[ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ],
[ 'Find','Replace','-','SelectAll','-','SpellChecker' ],
[ 'Bold','Italic','Underline','-','RemoveFormat' ],
[ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote',,'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ],
[ 'Link','Unlink','Anchor', 'Image' ],
[ 'Styles','Format','Font','FontSize' ] ,
[ 'TextColor','BGColor' ]
];
//Editor size
config.width = 650;
config.height = '700px';
//Remove element tag at bottom of editor
config.removePlugins = 'elementspath';
//Remove toolbar collapse button
config.toolbarCanCollapse = false;
};
CKFinder.setupCKEditor( null, '/ckfinder/' );
var editor = CKEDITOR.replace( 'editor' );Also, how do I change the path to where the files are uploaded?
