diff options
| author | michael pereira | 2011-02-08 13:18:06 +0100 |
|---|---|---|
| committer | michael pereira | 2011-02-08 13:18:06 +0100 |
| commit | 07e3636f3ef4a666db0fefbc1663bf6c1e10b996 (patch) | |
| tree | 84b01beda2228e1686698066316ce43589a8c061 /application/configs | |
| parent | passwoerter entfernt (diff) | |
| download | pbs2-07e3636f3ef4a666db0fefbc1663bf6c1e10b996.tar.gz pbs2-07e3636f3ef4a666db0fefbc1663bf6c1e10b996.tar.xz pbs2-07e3636f3ef4a666db0fefbc1663bf6c1e10b996.zip | |
MapperScript & Mapper angelegt (alle die einen Primärschlüssel besitzen)
Diffstat (limited to 'application/configs')
| -rw-r--r-- | application/configs/application.ini | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/application/configs/application.ini b/application/configs/application.ini new file mode 100644 index 0000000..6970da3 --- /dev/null +++ b/application/configs/application.ini @@ -0,0 +1,26 @@ +[production] +phpSettings.display_startup_errors = 0 +phpSettings.display_errors = 0 +includePaths.library = APPLICATION_PATH "/../library" +bootstrap.path = APPLICATION_PATH "/Bootstrap.php" +bootstrap.class = "Bootstrap" +appnamespace = "Application" +resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" +resources.frontController.params.displayExceptions = 0 +resources.db.adapter = PDO_MYSQL +resources.db.params.host = localhost +resources.db.params.username = root +resources.db.params.password = lsfks +resources.db.params.dbname = pbs +resources.db.isDefaultTableAdapter = true + +[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 |
