laravel-debugbar: Route debugbar:openhandler not defined
I have the following error in the logs and Debugbar doesnt show up:
[2015-02-05 12:02:22] local.ERROR: Debugbar exception: Route [debugbar.openhandler] not defined.
I have a fresh new L5 install, only laravel-debugbar (v2.0) package added, and published the config file. Package is enabled, env is local Am I missing something?
EDIT: in the prev version it was a debugbar folder in the storage folder. Now in L5 there isn’t, is it OK?
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 19 (5 by maintainers)
Same issue here. clearing all the cache is fixing the issue for me: php artisan clear-compiled; php artisan cache:clear; php artisan route:clear
Strange, I am having the exact same problem. Nothing appearing in the browser and the same error message in the log. Tried it now in the latest version of Firefox, Chrome and IE but none of the browsers displays the debugbar. Also repeated the steps that resolved the issue for subdesign but to no avail. Any suggestions?
Same happened to me… I think this problem shows up when you have APP_DEBUG=false and run php artisan route:cache. Then you switch APP_DEBUG to true and there is this error. When I run route:cache with APP_DEBUG=true everything works fine…