I love this module. Works perfect. I would like to change to NicEdit as the default WYSIWYG editor. Unfortunately I can't see an option to integrate the Image Upload/Browser into it. Can you please help?

Thanks!

Comments

EugenMayer’s picture

Title: No integration with NicEdit » Integration with NicEdit
Project: WYSIWYG image upload - Inline images for your WYSIWYG » Wysiwyg
Version: 6.x-1.9 » 6.x-2.1
Component: User interface » Code

Well this issue should be a feature request for the WYSIWYG module, because the editor-integration is done there (in a great job!).

bluestarstudios’s picture

Can anybody please help in making "WYSIWYG image upload" available in NicEdit?

TwoD’s picture

Title: Integration with NicEdit » Drupal plugin support
Component: Code » Editor - nicEdit

Marked #847736: WYSIWYG image upload extenstion not visiable in nicEdit editor a duplicate of this one. I have some basic code ready for this and I'll see if I can turn it into a nice patch this weekend.

EugenMayer’s picture

Thank you TwoD

FooZee’s picture

If you are busy, could you point out the way to me :) I really need this ... even as a basic idea, not as a patch if a patch is not ready!

and thanks for your efforts :)

rwohleb’s picture

Hmm, I can't believe this has been open so long. Any update on getting 'proxy plugin' implemented in nicedit and some of the other editors?

marcnewport’s picture

Added the image upload button by whacking it in the buttons array inside the wysiwyg_nicedit_plugins function in nicedit.inc file, then you can choose it on the settings page.

By default it uploads it to imageshack, but if you add the uploadURL to the $settings array in wysiwyg_nicedit_settings function you can point to your own image handling script.

robbin.zhao’s picture

Thanks @marcnewport
I post the details in here to help others. (D7)

nicedit.inc

## +line89 in wysiwyg_nicedit_settings
 $settings['uploadURI'] = 'http://www.yoursite.com/upload';
## +line116 in wysiwyg_nicedit_plugins 
'upload' => t('Upload Image')

then in settings page, choose 'Upload Image' button for you wysiwyg.

ps: here is the upload php file
http://svn.nicedit.com//trunk/nicUpload/php/nicUpload.php