php - Zend Framework doesn't show errors -
every error happens in server not shown me... tried checking requisitions in firebug, everytime when there error, response fails.
only "internal server error 500" displayed.
i think missing concepts... can me, please?
thanks
you should keep in mind in development environment should turn on error display
, set error reporting level
e_all
.
just write these 2 lines in code or in init() function
error_reporting(e_all); ini_set('display_errors', true);
Comments
Post a Comment