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:
where have setup autoload file? says core/autoload.php can not find.
any suggestions? how can resolve issue?
thank you!
Comments
Post a Comment