Advertisement
Guest User

Untitled

a guest
Jun 15th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.28 KB | None | 0 0
  1. [producao]
  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 = "appnamespace"
  8. resources.frontController.params.displayExceptions = 0
  9. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
  10. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules/"
  11. resources.frontController.defaultModule = "default"
  12. resources.db.adapter = PDO_Pgsql
  13. resources.db.params.host = 127.0.0.1
  14. resources.db.params.username = sysadmin
  15. resources.db.params.password = ....
  16. resources.db.params.dbname = ....
  17. resources.db.params.charset = "LATIN1"
  18. resources.zfdebug.params.plugins[] = "Variables"
  19. resources.zfdebug.params.plugins.File.base_path = APPLICATION_PATH "/../"
  20. resources.zfdebug.params.plugins[] = "Database"
  21. resources.zfdebug.params.plugins[] = "Memory"
  22. resources.zfdebug.params.plugins[] = "Time"
  23. resources.zfdebug.params.plugins[] = "Registry"
  24. resources.zfdebug.params.plugins[] = "Exception"
  25. zfdebug.enabled = false
  26. [local : producao]
  27. phpSettings.display_startup_errors = 1
  28. phpSettings.display_errors = 1
  29. resources.frontController.params.displayExceptions = 1
  30. zfdebug.enabled = true
  31. enable zfdebug plugin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement