-- benoit <[email protected]> wrote (on Wednesday, 24 November 2010, 05:21 AM -0800): > I was exploring the gestion of the exceptions in Zf. In my application.ini, > i saw these 3 lines: > > phpSettings.display_startup_errors = 1 > phpSettings.display_errors = 1 > resources.frontController.params.displayExceptions = 1 > > I know that the two first are setting php routines, for displaying php > error, but i can't find what is the goal of > "resources.frontController.params.displayExceptions" ? > I turned it to 0, but nothing change, and i didn't find anything on the > online manual.
The project generated by the "zf" command includes a switch in the error action view script that, if this flag is enabled, will display the backtrace for an exception handled by the error controller. -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/ PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
