Hello,
there was already some conversation about this. I just cannot see any
error messages when I have a typo or other bug in my controllers.
I have this in my bootstrap:
$front = Zend_Controller_Front::getInstance();
$front->setControllerDirectory('./application/controllers');
$front->throwExceptions(true);
try {
$front->dispatch();
} catch (Exception $e)
{
echo 'Caught exception: ' . $e->getMessage();
}
As I can see exceptions are handled as expected but PHP errors vanish:
there's nothing just blank, white screen - development is really
frustrating this way :)
What should I do, to get those error messages?
Thanks,
Ádám