Guest User

Untitled

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