Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CKeditor: missing "Upload" tab on image properties

I am trying to use the CKEditor 3.6.2 in a custom CMS. So far I have followed the instructions and downloaded the ZIP packaged, extracted it and uploaded it in my root path. The problem is that everything works except for the "Upload" tab on the image properties. I tried changing the Upload: hidden true to false in the image.js file but still, nothing changed. This happens even on the CKEditor instances of the samples included. So I guess it's something I am missing.

Anyone knows?! :)

like image 907
Dimitris Damilos Avatar asked Nov 08 '11 13:11

Dimitris Damilos


1 Answers

I guess you customized ckeditor with config.js. If so, add 'filebrowserImageBrowseUrl', and 'filebrowserImageUploadUrl' in config file too.

CKEDITOR.editorConfig = function( config ) {
  // Other configs
  config.filebrowserImageBrowseUrl = '/ckeditor/pictures';
  config.filebrowserImageUploadUrl = '/ckeditor/pictures';

};
like image 186
Rain Diao Avatar answered Oct 05 '22 19:10

Rain Diao