Re: [fw-general] Error Plugin and Zend Application - cant get it to work

2009-08-23 Thread Ian Warner
Thanks Seems that these settings affected the installation: ;;; Front Controller Resource Setup ;;; resources.frontController.throwExceptions = false resources.frontController.throwErrors = false With throw exceptions set as true - it was outputting the Exception at an earlier stage. Next q

Re: [fw-general] Error Plugin and Zend Application - cant get it to work

2009-08-22 Thread keith Pope
2009/8/22 Ian Warner : > My code in my bootstrap > > As you can see my error handler is in a module > > I have > resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" > to load modules > >     $this->bootstrap('frontController'); > >     $options = array( >   'modu

[fw-general] Error Plugin and Zend Application - cant get it to work

2009-08-22 Thread Ian Warner
My code in my bootstrap As you can see my error handler is in a module I have resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" to load modules $this->bootstrap('frontController'); $options = array( 'module' => 'exception', 'controll