Advertisement
yamcsha

#Zend - application.ini

Apr 12th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [production]
  2. phpSettings.display_startup_errors = 0
  3. phpSettings.display_errors = 0
  4. includePaths.library = APPLICATION_PATH "/../library"
  5. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  6. bootstrap.class = "Bootstrap"
  7. appnamespace = "Application"
  8. autoloaderNamespaces[] = "Example_"
  9. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  10. resources.frontController.params.displayExceptions = 0
  11.  
  12. ;modules
  13. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  14. resources.frontController.defaultmodule = "example" ; /application.modules/example
  15. resources.frontController.params.prefixDefaultmodule = true
  16.  
  17. ; layouts
  18. resources.view[] = ""
  19. resources.layout.layoutPath = APPLICATION_PATH "/layouts"
  20. resources.layout.layout = main ; /application/layouts/main.phtml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement