2014-05-13 13:16:39 +02:00
|
|
|
<?php
|
|
|
|
|
2014-05-14 23:55:44 +02:00
|
|
|
return [
|
|
|
|
'components' =>
|
|
|
|
[
|
|
|
|
'db' =>
|
|
|
|
[
|
|
|
|
'connectionString' => 'mysql:host=rdbms.strato.de;dbname=DB451718',
|
|
|
|
'username' => 'U451718',
|
2014-06-03 23:17:48 +02:00
|
|
|
'password' => '?<?<?.?>?>?>', //TODO Change me and move me to extra file
|
2014-05-14 23:55:44 +02:00
|
|
|
'enableProfiling' => false,
|
|
|
|
'enableParamLogging' => false,
|
|
|
|
'charset' => 'utf8',
|
|
|
|
'emulatePrepare' => true, // needed by some MySQL installations
|
|
|
|
'schemaCachingDuration' => 3600, // Performance with AR's
|
|
|
|
],
|
2014-05-13 13:16:39 +02:00
|
|
|
|
2014-05-14 23:55:44 +02:00
|
|
|
'errorHandler' =>
|
|
|
|
[
|
|
|
|
'errorAction' => 'site/error',
|
|
|
|
],
|
2014-05-13 13:16:39 +02:00
|
|
|
|
2014-05-14 23:55:44 +02:00
|
|
|
],
|
2014-05-13 13:16:39 +02:00
|
|
|
|
2014-05-14 23:55:44 +02:00
|
|
|
'params' =>
|
|
|
|
[
|
|
|
|
'yii.debug' => false,
|
|
|
|
'yii.traceLevel' => 3,
|
|
|
|
'yii.handleErrors' => false,
|
|
|
|
],
|
|
|
|
];
|