UniSharp / laravel-filemanager

Media gallery with CKEditor, TinyMCE and Summernote support. Built on Laravel file system.
https://unisharp.github.io/laravel-filemanager/
MIT License
2.08k stars 723 forks source link

Getting Error 404 after uploading an image #821

Open claytongf opened 5 years ago

claytongf commented 5 years ago
gohari commented 5 years ago

I have the same problem Package version : dev-master and Package version : v2.0.0-alpha8

ikkosatrio commented 5 years ago

I have the same problem Package version : dev-master and Package version : v2.0.0-alpha8

ikkosatrio commented 5 years ago

how to resolve this issues?, which version can be use? i use 1.8 too. but also get 404 after upload. i already do php artisan storage:link and delete public/storage many times

mkcodepxl commented 4 years ago

Did anyone solved this issue already? I am getting the same issue

GET http://localhost:8000/storage/files/1/thumbs/sponsor.png?timestamp=1578085409 net::ERR_CONNECTION_REFUSED

dionajie commented 4 years ago

Did anyone solved it?

BornaItCo commented 4 years ago

me to Did anyone solved it? my laravel is 6

BornaItCo commented 4 years ago

up

rezarahmatiseo commented 4 years ago

i have this problem :((( Did anyone solved it?

alipar76 commented 3 years ago

I have this problem too in local. I upload images in public folder (in "/uploads/images" and upload is working well) and when i remove "/storage" from image url , image show correctly. How can i fix this? How can i change url from "/storage/uploads/image/example.jpg" to "/uploads/image/example.jpg" ? Can anyone help us please? Thanks

alipar76 commented 3 years ago

Hey guys I found a solution For showing images correctly , do these steps: 1- Go to config/filesystems.php and add below to disks part :

'ckeditor' => [
            'driver' => 'local',
            'root' => public_path('/'),
            'url' => '/',
            'visibility' => 'public',
        ],

2- Go to config/lfm.php and edit disk to: 'disk' => 'ckeditor',

I hope this works for you.