array( // Database 'db' => array( 'connectionString' => 'mysql:host=PRODUCTION_HOST;dbname=PRODUCTION_DBNAME', 'username' => 'USERNAME', 'password' => 'PASSWORD', 'charset'=>'utf8', 'tablePrefix' => '', ), // Application Log 'log' => array( 'class' => 'CLogRouter', 'routes' => array( // Save log messages on file array( 'class' => 'CFileLogRoute', 'levels' => 'error, warning, trace, info', ), // Send errors via email to the system admin array( 'class' => 'CEmailLogRoute', 'levels' => 'error, warning', 'emails' => 'marco@example.com', ), ), ), ), ); ?>