Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [production]
- ; Debug output
- phpSettings.display_startup_errors = 1
- phpSettings.display_errors = 1
- resources.frontController.params.prefixDefaultModule = "1"
- ;Include Path
- includePaths.library = APPLICATION_PATH "/../library"
- includePaths.models = APPLICATION_PATH "/models"
- ;Bootstrap
- bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
- bootstrap.class = "Bootstrap"
- ;FrontController
- appnamespace = "Application"
- resources.frontController.env = APPLICATION_ENV
- resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
- resources.modules[] = ""
- resources.frontController.defaultModule = "default"
- resources.frontController.baseUrl = "/"
- ;Views
- resources.view.encoding = "UTF-8"
- resources.view.basePath = APPLICATION_PATH "/modules/default/views"
- ;Layout
- resources.layout.layoutPath = APPLICATION_PATH "/modules/default/views/layouts"
- ;# Database
- resources.db.adapter = "pdo_mysql"
- resources.db.params.host = "xxxx"
- resources.db.params.username = "xxxx"
- resources.db.params.password = "xxxx"
- resources.db.params.dbname = "xxxx"
- resources.db.params.charset = "utf8"
- resources.db.isDefaultTableAdapter = true
- ;Debug
- resources.db.params.profiler.enabled = "true"
- resources.db.params.profiler.class = "Zend_Db_Profiler_Firebug"
- [staging : production]
- [testing : production]
- phpSettings.display_startup_errors = 1
- phpSettings.display_errors = 1
- [development : production]
- phpSettings.display_startup_errors = 1
- phpSettings.display_errors = 1
- resources.frontController.params.displayExceptions = 1
Advertisement
Add Comment
Please, Sign In to add comment