How to do CKEditor 5 Image Uploading?
ClassicEditor .create( editorElement, { ckfinder: { uploadUrl: 'my_server_url' } } ) .then( ... ) .catch( ... ); What should be my server response? I am using Java in the backend. Whatever my response is, it throws a dialog box 'cannot upload file'. Ganesh prajapati Success response : { "uploaded": true, "url": "http://127.0.0.1/uploaded-image.jpeg" } Failure response : { "uploaded": false, "error": { "message": "could not upload this image" } } this is my code for Ckeditor 5 and Phalcon framework.#products_desc point to textarea id. <script> var myEditor; ClassicEditor .create( document