27 lines
957 B
INI
27 lines
957 B
INI
[production]
|
|
phpSettings.date.timezone = "Europe/Paris"
|
|
phpSettings.display_startup_errors = 0
|
|
phpSettings.display_errors = 0
|
|
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
|
|
bootstrap.class = "Bootstrap"
|
|
appnamespace = "Application"
|
|
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
|
|
resources.frontController.params.displayExceptions = 0
|
|
autoloaderNamespaces[] = "Application_"
|
|
resources.layout.layout = "main"
|
|
resources.layout.layoutPath = APPLICATION_PATH "/views"
|
|
resources.view.basePath = APPLICATION_PATH "/views"
|
|
|
|
[staging : production]
|
|
resources.frontController.params.displayExceptions = 0
|
|
phpSettings.soap.wsdl_cache_enabled = 0
|
|
|
|
[development : production]
|
|
phpSettings.display_startup_errors = 1
|
|
phpSettings.display_errors = 1
|
|
phpSettings.soap.wsdl_cache_enabled = 0
|
|
resources.frontController.params.displayExceptions = 1
|
|
|
|
[testing : production]
|
|
phpSettings.display_startup_errors = 1
|
|
phpSettings.display_errors = 1 |