I'm starting to use the ckeditor plugin, I can usually send an image to the editor, but when I drag the image to another place, it disappears, and the warning of that second image here, when I copy and paste an image in the editor, the same problem. Has anyone had this problem?
My config.js file looks like this:
CKEDITOR.editorConfig = function( config ) {
config.extraPlugins = 'uploadimage';
config.uploadUrl = '/img';
config.inlinesave = {
postUrl: '../data'
};
config.mathJaxLib = '//cdn.mathjax.org/mathjax/2.6-latest/MathJax.js?config=TeX-AMS_HTML';
};
Does anyone know what it can be?