Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  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. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  9. resources.frontController.params.displayExceptions = 0
  10. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
  11.  
  12.  
  13. [staging : production]
  14.  
  15. [testing : production]
  16. phpSettings.display_startup_errors = 1
  17. phpSettings.display_errors = 1
  18.  
  19. [development : production]
  20. phpSettings.display_startup_errors = 1
  21. phpSettings.display_errors = 1
  22. resources.frontController.params.displayExceptions = 1
  23. resources.db.adapter = "pdo_mysql"
  24. resources.db.isDefaultTableAdapter = true
  25. resources.db.params.host = "localhost"
  26. resources.db.params.username = "root"
  27. resources.db.params.password = FALSE
  28. resources.db.params.dbname = "trisport"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement