This is a plugin that automatically uploads to the server the images pasted from the clipboard with Firefox, or with Drag&drop in most current browsers in CKEditor.
Alfonso Martínez de Lizarrondo
Extract the contents of the zip in you plugins directory, so it ends up like
this
ckeditor\ ... images\ lang\ plugins\ ... imagepaste\ plugin.js docs\ install.html ... skins\ themes\
Now add the plugin in your config.js or custom js configuration
file:
config.extraPlugins='imagepaste';
You have to configure the filebrowserImageUploadUrl and filebrowserUploadUrl entry as you might have already done to allow the user to upload files and images.
Using Firefox, paste an image into the body of CKEditor. That image will be uploaded to the server and it will use the correct URL instead of "data:".
With the rest of the browsers, you can drag & drop a file from your desktop and it will be inserted as an image or a
link.
Supported browsers (Current versions or latest beta):
Opera 12 seems to implement the drag&drop uploads, but they don't provide an API to find the place where the image should be inserted (document.caretPositionFromPoint), so it's the only browser where this plugin won't work until they fix that.
CKEditor is © CKSource.com