Incam_IntranetNueva/www/protected/config/mode_test.php
2012-03-06 21:01:06 +00:00

63 lines
1.5 KiB
PHP

<?php
/**
* Test configuration
* Usage:
* - Local website
* - Local DB
* - Standard production error pages (404, 500, etc.)
*/
// Set yiiPath (add extra ../../)
//$yiiPath = dirname(__FILE__) . '/../../../yii/framework/yii.php';
// Set YII_DEBUG and YII_TRACE_LEVEL flags
$debug = false;
$traceLevel = 0;
// Set specific config
$configSpecific = array(
// Application components
'components' => array(
// Database
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=intranet_test',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
// Fixture Manager for testing
'fixture' => array(
'class' => 'system.test.CDbFixtureManager',
),
// Application Log
'log' => array(
'class' => 'CLogRouter',
'routes' => array(
// Save log messages on file
array(
'class' => 'CFileLogRoute',
'levels' => 'error, warning, trace, info',
),
// Show log messages on web pages
array(
'class' => 'CWebLogRoute',
//'categories' => 'system.db.CDbCommand',
'levels' => 'error, warning',
),
),
),
),
);
?>