user10075991
user10075991

Reputation:

tinymce - change the url path of the uploaded images

Im using laravel-tinymce-simple-imageupload so that is possible to have the tinymce plugin with image upload.

But Im not understanding where to change the url path of the uploaded images so that is used an absolute path url?

Upvotes: 0

Views: 1160

Answers (1)

BENARD Patrick
BENARD Patrick

Reputation: 30975

As you can see, the plugin use a controller : https://github.com/petehouston/laravel-tinymce-simple-imageupload/blob/master/src/TinymceController.php

public function uploadImage(Request $request)
{
    $image = $request->file('image');
    $filename = 'image_'.time().'_'.$image->hashName();
    $image = $image->move(public_path('img'), $filename);
    return mce_back($filename);
}

So as explained here : https://github.com/petehouston/laravel-tinymce-simple-imageupload#some-notes

You just have to create a new Controller Action in your application, route it and call it as explained :

@include('mceImageUpload::upload_form', ['upload_url' =>'YOUR_URL_FOR_HANDLING_IMAGE_UPLOAD'])

Upvotes: 1

Related Questions