Unisharp laravel filemanager无法在ckeditor中“浏览服务器”

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?

enter image description here

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.

  1. Make sure lfm.php is present in config folder.
  2. Make sure the routes were loaded by running php artisan route:list

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