main(): Failed opening required 'core/autoload.php' (include_path='.:') laravel 5.2 -


i trying add files route, used in application , file paths

base_path().'/public/assets/global/plugins/ckeditor/kcfinder/browse.php'; base_path().'/public/assets/global/plugins/ckeditor/kcfinder/upload.php'; 

i created 2 routes in routes.php:

route::get('kcfinder/browse.php', function()             {                 include base_path().'/public/assets/global/plugins/ckeditor/kcfinder/browse.php';             });             route::get('kcfinder/upload.php', function()             {                 include base_path().'/public/assets/global/plugins/ckeditor/kcfinder/upload.php';             }); 

after doing getting error:

enter image description here

where have setup autoload file? says core/autoload.php can not find.

any suggestions? how can resolve issue?

thank you!


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -