application.ini 765 B

12345678910111213141516171819202122
  1. [common]
  2. application.directory = APP_PATH "/app"
  3. application.modules = "Index,Bench"
  4. application.library = APP_PATH "/library"
  5. application.library.directory = APP_PATH "/library"
  6. application.view.ext = phtml
  7. db.connections.default.dsn = "mysql:host=localhost;port=3306;dbname=hello_world;charset=utf8"
  8. db.connections.default.user = benchmarkdbuser
  9. db.connections.default.pass = benchmarkdbpass
  10. db.connections.default.params.ATTR_ERRMODE = 2 ; PDO::ERRMODE_EXCEPTION
  11. db.connections.default.params.ATTR_PERSISTENT = TRUE
  12. [dev:common]
  13. application.dispatcher.throwException=1
  14. application.dispatcher.catchException=1
  15. application.debug = TRUE
  16. [product:common]
  17. application.dispatcher.throwException=0
  18. application.dispatcher.catchException=0
  19. application.debug = FALSE