TinyMCE image upload API not showing image select icon

We followed the instructions for this tutorial, but for some reason, the download button (the search folder icon next to the image url) is not displayed in the image dialog:

http://www.tinymce.com/wiki.php/Handling_Asynchronous_Image_Uploads

We tried to use only the parameter images_upload_url

as well as all the parameters, but the loading icon is never shown:

tinymce.init({
    ...
    images_upload_url: "postAcceptor.php",
    images_upload_base_path: "/some/basepath", //optional
    images_upload_credentials: true //optional
});

      

The articles assume that all you really need to do is specify images_upload_url

, and TinyMCE will allow you to upload images.

We are working 4.2.5. This feature is available since 4.2.0. I have been confirmed by the parent company TinyMCE (Ephox) that the image upload feature is a community feature. So has anyone got this to work?

+2


source to share


1 answer


It shouldn't show you the image picker icon. It loads images from files that you paste into the editor.

If you want to select a file picker, you must use file_picker_callback .



If you want a file selection icon, you need to paste image

into the toolbar .

+2


source







All Articles