Open claytongf opened 5 years ago
I have the same problem Package version : dev-master and Package version : v2.0.0-alpha8
I have the same problem Package version : dev-master and Package version : v2.0.0-alpha8
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
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
Did anyone solved it?
me to Did anyone solved it? my laravel is 6
up
i have this problem :((( Did anyone solved it?
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
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.