CKeditor: missing download tab in image properties

I am trying to use CKEditor 3.6.2 in a custom CMS. So far, I have followed the instructions and downloaded the ZIP package , extracted it and uploaded it to my root path. The problem is that everything works, except for the “Download” tab in the image properties. I tried changing Upload: hidden true to false in the image.js file, but still nothing has changed. This occurs even in instances of CKEditor included samples. Therefore, I guess that this is what I am missing.

Somebody knows?!:)

+5
source share
3 answers

I searched for it myself.

You can buy "CkFinder" to do this, as soon as you plug it in, the "Download" tab will appear.

But there is a free version that integrates fully with CKeditor, providing the same features:

http://kcfinder.sunhater.com/

This is what you are looking for to upload files to your server (and select files from the server!) Using ckeditor.

+2
source

I assume you configured ckeditor with config.js. If so, add 'filebrowserImageBrowseUrl' and 'filebrowserImageUploadUrl' to the configuration file too.

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

};
+7
source

, . , :

<%= f.input :body, as: :ckeditor, input_html: { ckeditor: { filebrowserImageBrowseUrl: '/ckeditor/pictures', filebrowserImageUploadUrl: '/ckeditor/pictures' } } %>

, .

+1

All Articles