Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. [production]
  2. ;# Debug output
  3. phpSettings.display_startup_errors = 1
  4. phpSettings.display_errors = 1
  5. resources.frontController.params.prefixDefaultModule = "1"
  6.  
  7. ;# Include path
  8. includePaths.library = APPLICATION_PATH "/../library"
  9. includePaths.models = APPLICATION_PATH "/models"
  10.  
  11. ;# Bootstrap
  12. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  13. bootstrap.class = "Bootstrap"
  14. phpSettings.intl.default_locale = "pt_BR.utf8"
  15.  
  16. ;## Tradução
  17. resources.translate.data = APPLICATION_PATH "/../languages/pt_BR/Zend_Validate.php"
  18. resources.translate.adapter = "array"
  19. resources.translate.locale = "pt_BR"
  20.  
  21. ;# Front Controller
  22. appnamespace = "Application"
  23. resources.modules[] = ""
  24. resources.frontController.env = APPLICATION_ENV
  25. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules/"
  26. resources.frontController.defaultModule = "default"
  27. resources.frontController.baseUrl = "/"
  28.  
  29. ;# Views
  30. resources.view.encoding = "UTF-8"
  31. resources.view.basePath = APPLICATION_PATH "/views/"
  32.  
  33. ;# Layout
  34. resources.layout.layoutPath = APPLICATION_PATH "/views/layouts/"
  35.  
  36. ;# Database
  37. resources.db.adapter = "pdo_mysql"
  38. resources.db.params.host = "localhost"
  39. resources.db.params.username = "root"
  40. resources.db.params.password = "root"
  41. resources.db.params.dbname = "helpdesk"
  42. resources.db.isDefaultTableAdapter = true
  43.  
  44. ;#ZfDebug
  45. zfdebug.enabled = 0;
  46.  
  47. [staging : production]
  48.  
  49. [testing : production]
  50. phpSettings.display_startup_errors = 1
  51. phpSettings.display_errors = 1
  52.  
  53. [development : production]
  54. ;# Debug output
  55. phpSettings.display_startup_errors = 1
  56. phpSettings.display_errors = 1
  57. resources.frontController.params.displayExceptions = 1
  58.  
  59. zfdebug.enabled = 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement