Guest User

Untitled

a guest
Jul 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 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.  
  8. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  9. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
  10. resources.view[] =
  11. resources.db.adapter = "PDO_MYSQL"
  12. resources.db.params.host = ""
  13. resources.db.params.username = ""
  14. resources.db.params.password = ""
  15. resources.db.params.dbname = ""
  16. resources.frontController.plugins[] = "Plugin_AuthPlugin"
  17.  
  18. [staging : production]
  19.  
  20. [testing : production]
  21. phpSettings.display_startup_errors = 1
  22. phpSettings.display_errors = 1
  23. resources.db.params.dbname = ""
  24.  
  25. [development : production]
  26. phpSettings.display_startup_errors = 1
  27. phpSettings.display_errors = 1
  28. resources.db.params.dbname = ""
Add Comment
Please, Sign In to add comment