- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
36 lines
964 B
PHP
36 lines
964 B
PHP
<?php
|
|
|
|
// This is the configuration for yiic console application.
|
|
// Any writable CConsoleApplication properties can be configured here.
|
|
return array(
|
|
'basePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..',
|
|
'name' => 'FactuGES',
|
|
|
|
// preloading 'log' component
|
|
'preload' => array('log'),
|
|
|
|
'modules' => array(
|
|
'usuario' => array(
|
|
),
|
|
),
|
|
|
|
// application components
|
|
'components' => array(
|
|
'db' => array(
|
|
'connectionString' => 'mysql:host=localhost;dbname=factuges_dev',
|
|
'emulatePrepare' => true,
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'charset' => 'utf8',
|
|
),
|
|
'log' => array(
|
|
'class' => 'CLogRouter',
|
|
'routes' => array(
|
|
array(
|
|
'class' => 'CFileLogRoute',
|
|
'levels' => 'error, warning',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
); |