Guest User

Untitled

a guest
Jul 19th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. [bootstrap]
  2. autoloadernamespaces[] = "Zend_"
  3. autoloadernamespaces[] = "SF_"
  4. autoloadernamespaces[] = "eWay_"
  5.  
  6. phpsettings.display_errors = 0
  7. ;phpsettings.error_reporting = 8191
  8. phpsettings.error_reporting = 2147483647
  9. phpsettings.date.timezone = "Australia/Sydney"
  10.  
  11. bootstrap.path = APPLICATION_PATH "/bootstrap/Bootstrap.php"
  12.  
  13. resources.frontcontroller.moduledirectory = APPLICATION_PATH "/modules"
  14. resources.frontcontroller.defaultmodule = "storefront"
  15. resources.frontcontroller.throwexceptions = true
  16. resources.frontcontroller.params.prefixDefaultModule = true
  17. ;resources.frontcontroller.plugins.admin = "SF_Plugin_AdminContext"
  18.  
  19. resources.db.adapter = "PDO_MYSQL"
  20. resources.db.isdefaulttableadapter = true
  21. resources.db.params.charset = "UTF8"
  22.  
  23. resources.view = ""
  24. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
  25. resources.layout.layout = "main"
  26.  
  27. resources.modules[] =
  28.  
  29. errorhandling.graceful = true
  30. errorhandling.email = XXXXX@XXX.com
  31.  
  32. [production : bootstrap]
  33. resources.db.params.dbname = "xxxx"
  34. resources.db.params.username = "xxxx"
  35. resources.db.params.password = "xxxx"
  36. resources.db.params.host = "localhost"
  37.  
  38.  
  39. [development : bootstrap]
  40. resources.db.params.dbname = "dev_xxxxx"
  41. resources.db.params.username = "xxxx"
  42. resources.db.params.password = "xxxx"
  43. resources.db.params.host = "127.0.0.1"
  44. phpsettings.display_errors = 1
  45. resources.frontcontroller.throwexceptions = true
  46. errorhandling.graceful = false
  47.  
  48.  
  49. [staging : bootstrap]
  50. resources.db.params.dbname = "pxxxxx_staging"
  51. resources.db.params.username = "xxxx"
  52. resources.db.params.password = "xxxx"
  53. resources.db.params.host = "localhost"
  54. phpsettings.display_errors = 1
  55. resources.frontcontroller.throwexceptions = true
  56. errorhandling.graceful = false
  57.  
  58.  
  59. [test : bootstrap]
  60. resources.db.params.dbname = "xxxxxx_test"
  61. phpsettings.display_errors = 1
Add Comment
Please, Sign In to add comment