Advertisement
Guest User

Untitled

a guest
May 30th, 2017
93
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. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  8. resources.db.adapter = PDO_MYSQL
  9. resources.db.adapter.host = localhost
  10. resources.db.adapter.username = root
  11. resources.db.adapter.password = marvin
  12. resources.db.adapter.dbname = practice
  13. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
  14. resources.view.doctype = "XHTML1_STRICT";
  15.  
  16. [staging : production]
  17.  
  18. [testing : production]
  19. phpSettings.display_startup_errors = 1
  20. phpSettings.display_errors = 1
  21.  
  22. [development : production]
  23. phpSettings.display_startup_errors = 1
  24. phpSettings.display_errors = 1
  25. phpSettings.date.timezone = "Asia/Manila"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement