Advertisement
Guest User

Untitled

a guest
Jun 10th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 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.  
  11. [staging : production]
  12.  
  13. [testing : production]
  14. phpSettings.display_startup_errors = 1
  15. phpSettings.display_errors = 1
  16.  
  17. [development : production]
  18. phpSettings.display_startup_errors = 1
  19. phpSettings.display_errors = 1
  20. resources.frontController.params.displayExceptions = 1
  21. resources.db.adapter = "PDO_Mysql"
  22. resources.db.params.username = "blt_user"
  23. resources.db.params.password = "blt_user"
  24. resources.db.params.dbname = "blt"
  25. resources.db.params.host = "localhost"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement