Hi guys I'm working with Zend framework and just hate the fact that I seem to encounter hundreds of exception errors like if I try to reference a non existant property of an object my application just dies and crashes. However I have no idea where to see these errors or how to be able to display them on screen. I've set display errors to true and error reporting to E_ALL but when an error is thrown all I see is a blank page rendered only until a bit before where the error apparently occurred or the exception was thrown.
Help please my debugging hours are dragging
If you create an application skeleton with Zend Tool, you'll typically have an error controller which will catch runtime errors and display them. You'll want to follow timdev's advice to
SetEnv APPLICATION_ENV development
and then, in your application/configs/application.ini:What's the value of the APPLICATION_ENV environment variable.
The standard public/index.php in a ZF application does the following:
This means that if no APPLICATION_ENV is set, the environment is set as "production". If you look at your application.ini file, you'll see that the framework suppresses errors if the environment is production.
Of course, you're developing, so you want to use the 'development' environment.
If you're running under Apache/mod_php, you can set this in your httpd.conf, or an .htaccess file:
Or you could always get ugly and hack away at your public/index.php:
Referencing a non-existant property is an error in PHP, not an Exception. Errors are generally in the output of the html if you enable display_errors in your php.ini. But beware: they can as well occur within an invisible html tag like:
... so you need to check the HTML output of your page (CTRL-U in firefox) and scroll to the bottom