I have been trying to apply Unisharp Laravel Filemanager. But, the issue I am facing is that when ever I try to insert image in CKeditor and click on the Browse Server button, a new window pops up with an HTTP 404 error response code saying:
The requested URL was not found on this server.
I have followed all the steps as mentioned in the docs of Unisharp Laravel Filemanager for installation and integration. Also I am using Laravel 5.4 and Unisharp FileManager 1.6 (released August 2016).
What is causing this 404 error and how can I correct it?
In the lfm.php file the very first setting is a routes setting. That needs to be changed from false to true.
First make sure the following lines were added before App\Providers\AppServiceProvider::class, on the config/app.php
Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
then.
if you followed the installation guide and those are not present use php artisan config:cache then run the two vendor publish command on the guide
Hope this helps