This add-on is outdated.
You can continue using it, but for new users we recommend to consider installing File Uploader 2 plugin.
Easy Image Uploader
CKEditor add-on
TinyMCE add-on
NEW
N1ED logo
N1ED is united plugin
for all JS+ plugins
N1ED logo Buy in bundle

Configuration

To configure CKEditor & TinyMCE Easy Image Uploader use these keys in config.js file (for CKEditor) or in initialization script (for TinyMCE).

jsplus_easy_image_uploader_url: URL
Default value: auto detection
Set this URL to specify location of images uploader manually. This option affects to all JS+ uploader add-ons.
jsplus_easy_image_allowed_ext: String
Default value: 'jpg,jpeg,png,bmp,gif'
Use this option to allow uploading only a set of file extentions. Use '*' as a value if you do not want to restrict it.
jsplus_easy_image_template: HTML
Default value: <img src="{IMAGE}"/>
Inside this template you can use {IMAGE} code to specify where to insert uploaded image's URL into template, {FILENAME} - filename part of URL. You can set border, background, add text or apply any other transformations to inserted image's markup.
NB! Always use only one root element in the template. When you need more then one root elements, just make them second level and wrap with <div> for example.
jsplus_easy_image_img_width: Integer
Default value: 0
Available values: 640
The width for uploaded images. If image has another width it will use this value as constraint. 0 means keeping original width.
jsplus_easy_image_img_height: Integer
Default value: 0
Available values: 480
The height for uploaded images. If image has another height it will use this value as constraint. 0 means keeping original height.
jsplus_easy_image_img_enlarge: Boolean
Default value: false
Available values: true, false
If the resolution of uploading image is lower then width and height constraints, it will be enlarged if this parameter is set to true.
jsplus_easy_image_show_progress: Boolean
Default value: true
Available values: false, true
The only UI (user interface) this plugin has is upload progress popup. You can show it and see upload progress or hide at all. It is turned on by default, use this option to disable this feature.

Cross domain uploads

Read our manual to learn about how to configure cross site uploads.