-
Notifications
You must be signed in to change notification settings - Fork 196
Unable to handle errors in v1 #653
Comments
Expressive has error handling included, even v1 (which is not supported anymore I think). It has default 404 and error handlers and comes with WhoopsErrorHandler for debugging purposes.
I wonder how much time you have spend or where you searched because it is documented here: https://docs.zendframework.com/zend-expressive/v1/features/error-handling/ If you used the skeleton to install expressive it is added by default.
Expressive works the same, you can override the default middleware with custom ones.
This sounds like a bug we discovered a while ago in Diactoros which was fixed in verions 2.0.3 and 2.1.1. But since you are using expressive v1, I'm not sure if it affects you. With the little information you gave I can't tell if this affect you, but I hope this helps you somehow figuring out what is wrong. |
Thank you for the reply. At the top of my bootstrap (/public/index.php) I have this: Then in my config/autoload/local.php Without raise_throwables the problem remains, even with PHP error reporting on, so this is vital. |
This repository has been closed and moved to mezzio/mezzio; a new issue has been opened at mezzio/mezzio#3. |
I cannot see a proper stack trace of errors while I'm developing, which is obviously very frustrating.
However, when I switch php error reporting on I can see an exception raised by Diactoros (...Unsupported response reason phrase; must be a string, received NULL...zendframework/zend-diactoros/src/Response.php:185 Stack trace...) , but no trace/indication of where the problem actually occurred, when php error reporting is off then I get a blank screen with server 500 error.
I thought Zend Expressive has default exception and other response handling built in i.e. 404, methodNotAllowed etc, instead of just bombing out on all problems... or is it up to the developer to write this core functionality?
I've wasted so much time searching for examples, but as usual nothing that that works... I cannot believe this is so badly documented (or an architecture flaw in v1?)
I mostly use PHP Slim and it has the above baked in, the developer can also override it with custom handlers...simple and to-the-point. I can unfortunately not use Slim and have to solve this error reporting issue with Zend Expressive.. please help
The text was updated successfully, but these errors were encountered: