Incam_IntranetNueva/www/protected/config/mode_development.php
2012-06-06 16:45:38 +00:00

70 lines
1.7 KiB
PHP

<?php
/**
* Development configuration
* Usage:
* - Local website
* - Local DB
* - Show all details on each error.
* - Gii module enabled
*/
// Set yiiPath (add extra ../../)
//$yiiPath = dirname(__FILE__) . '/../../../yii/framework/yii.php';
// Set YII_DEBUG and YII_TRACE_LEVEL flags
$debug = true;
$traceLevel = 3;
// Set specific config
$configSpecific = array(
// Modules
'modules' => array(
'gii' => array(
'class' => 'system.gii.GiiModule',
'password' => 'password',
),
),
// Application components
'components' => array(
// Database
'db' => array(
'connectionString' => 'mysql:host=localhost;dbname=intranet_dev',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
// 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, trace, info',
//'showInFireBug' => true,
),
),
),
),
'params'=>array(
// Ruta de los currículums de los candidatos
'curriculumPath' => dirname(__FILE__) . '/../../documentos/',
),
);
?>