artemius wrote: > > [development : production] > phpSettings.display_startup_errors = 1 > phpSettings.display_errors = 1 > resources.view[] = "" > Hi artemius,
If you move the following line up to the [production] section, your problem should be solved: resources.view[] = The reason is that "resources.view[]" is set only under the [development : production] section. When you are utilizing the "development" environment, you are fine with the setting as-is; however, as soon as you deviate from the "development" environment (production, staging, testing), you will see the specified error since those sections do not define "resources.view.*" and do not inherit anything that does. NOTE: The [development : production] means, for the development environment, take all of the [production] section settings as defaults, then override with whatever I specify under the [development : production] section. Hope this helps. Take care. ----- -- Wil Moore III Why is Bottom-posting better than Top-posting: http://www.caliburn.nl/topposting.html -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Newbie-Error-Uncaught-exception-Zend-Application-Bootstrap-Exception-tp3059454p3059967.html Sent from the Zend Framework mailing list archive at Nabble.com.
