diff --git a/www/protected/controllers/CandidatoController.php b/www/protected/controllers/CandidatoController.php index df605f5..1e692da 100644 --- a/www/protected/controllers/CandidatoController.php +++ b/www/protected/controllers/CandidatoController.php @@ -57,94 +57,25 @@ class CandidatoController extends Controller */ public function actionCreate() { - Yii::import('ext.multimodelform.MultiModelForm'); - - $model = new Candidato; - $idioma = new CandidatoIdioma(); - $titulacion = new CandidatoTitulacion(); - - $idiomasValidos = array(); - $titulacionesValidas = array(); - - // Uncomment the following line if AJAX validation is needed - //$this->performAjaxValidation($model); + $model=new Candidato; - /*if(isset($_POST['Candidato'])) - { - $model->attributes=$_POST['Candidato']; - $foto=CUploadedFile::getInstance($model,'foto'); + // Uncomment the following line if AJAX validation is needed + //$this->performAjaxValidation($model); - if ($model->validate()) - { - $foundInvalidChild = false; - $arrayIdiomas = array(); - if(isset($_POST['CandidatoIdioma'])) - { - foreach ($_POST['CandidatoIdioma'] as $idioma) - { - $CandidatoIdioma = new CandidatoIdioma; - $CandidatoIdioma->attributes = $idioma; + if(isset($_POST['Candidato'])) + { + $model->attributes=$_POST['Candidato']; + $foto=CUploadedFile::getInstance($model,'foto'); - if ($model->id) - $CandidatoIdioma->candidato_id = $model->id; - - if (!$CandidatoIdioma->validate()) - $foundInvalidChild = true; - - $arrayIdiomas[] = $CandidatoIdioma; + if ($model->save()) { + $this->guardarFoto($model->id, $foto); + $this->redirect(array('view','id'=>$model->id)); } - } - } + } - if (!$foundInvalidChild && $model->save()) { - $this->guardarFoto($model->id, $foto); - - // Guardar los idiomas - foreach($arrayIdiomas as $CandidatoIdioma) - { - $CandidatoIdioma->candidato_id = $model->id; - $CandidatoIdioma->save(); - } - - Yii::app()->user->setFlash('success', "Candidato dado de alta correctamente."); - $this->redirect(array('index')); - } - }*/ - - if (isset($_POST['Candidato'])) { - $model->attributes=$_POST['Candidato']; - $foto=CUploadedFile::getInstance($model,'foto'); - - $foundInvalidChild = false; - - if ($model->validate()) { - if (!MultiModelForm::validate($model, $idiomasValidos, $idiomasBorrados)) - $foundInvalidChild = true; - - if (!MultiModelForm::validate($model, $titulacionesValidas, $titulacionesBorradas)) - $foundInvalidChild = true; - } - - if (!$foundInvalidChild && $model->save() ) { - $masterValues = array ('candidato_id'=>$model->id); - - if (MultiModelForm::save($model, $idiomasValidos, $idiomasBorrados, $masterValues) && - MultiModelForm::save($model, $titulacionesValidas, $titulacionesBorradas, $masterValues)) - { - $this->guardarFoto($model->id, $foto); - Yii::app()->user->setFlash('success', "Candidato dado de alta correctamente."); - $this->redirect(array('index')); - } - } - } - - $this->render('create',array( - 'model'=>$model, - 'idioma'=>$idioma, - 'titulacion'=>$titulacion, - 'idiomasValidos'=>$idiomasValidos, - 'titulacionesValidas'=>$titulacionesValidas, - )); + $this->render('create',array( + 'model'=>$model, + )); } /** @@ -154,85 +85,24 @@ class CandidatoController extends Controller */ public function actionUpdate($id) { - Yii::import('ext.multimodelform.MultiModelForm'); - - $model=$this->loadModel($id); - $idioma=new CandidatoIdioma(); - $titulacion = new CandidatoTitulacion(); - - $idiomasValidos = array(); - $titulacionesValidas = array(); + $model=$this->loadModel($id); - // Uncomment the following line if AJAX validation is needed - //$this->performAjaxValidation($model); + // Uncomment the following line if AJAX validation is needed + //$this->performAjaxValidation($model); - /*if(isset($_POST['Candidato'])) - { - $foto=CUploadedFile::getInstance($model,'foto'); - $model->attributes=$_POST['Candidato']; - - if ($model->validate()) - { - $foundInvalidChild = false; - $arrayIdiomas = array(); - if(isset($_POST['CandidatoIdioma'])) - { - foreach ($_POST['CandidatoIdioma'] as $idioma) - { - //$CandidatoIdioma = CandidatoIdioma::model()->findB; - //CandidatoIdioma::model()->deleteAllByAttributes($arrayIdiomas) - - $CandidatoIdioma->attributes = $idioma; - - - if ($model->id) - $CandidatoIdioma->candidato_id = $model->id; - - if (!$CandidatoIdioma->validate()) - $foundInvalidChild = true; - - $arrayIdiomas[] = $CandidatoIdioma; - } + if(isset($_POST['Candidato'])) + { + $foto=CUploadedFile::getInstance($model,'foto'); + $model->attributes=$_POST['Candidato']; + if($model->save()) { + $this->guardarFoto($model->id, $foto); + $this->redirect(array('view','id'=>$model->id)); } - } + } - if (!$foundInvalidChild && $model->save()) { - $this->guardarFoto($model->id, $foto); - - // Guardar los idiomas - foreach($arrayIdiomas as $CandidatoIdioma) - { - $CandidatoIdioma->candidato_id = $model->id; - $CandidatoIdioma->save(); - } - - Yii::app()->user->setFlash('success', "Candidato actualizado correctamente."); - //$this->redirect(array('view','id'=>$model->id)); - } - }*/ - - if(isset($_POST['Candidato'])) { - $foto=CUploadedFile::getInstance($model,'foto'); - $model->attributes=$_POST['Candidato']; - - //the value for the foreign key 'candidato_id' - $masterValues = array ('candidato_id'=>$model->id); - - //Save the master model after saving valid members - if (MultiModelForm::save($idioma, $validatedIdiomas, $deleteIdiomas, $masterValues) && $model->save() ) { - $this->guardarFoto($model->id, $foto); - Yii::app()->user->setFlash('success', "Candidato actualizado correctamente."); - //$this->redirect(array('view','id'=>$model->id)); - } - } - - $this->render('update',array( - 'model'=>$model, - 'idioma'=>$idioma, - 'titulacion'=>$titulacion, - 'idiomasValidos'=>$idiomasValidos, - 'titulacionesValidas'=>$titulacionesValidas, - )); + $this->render('update',array( + 'model'=>$model, + )); } /** diff --git a/www/protected/migrations/m120130_120838_tbl_idiomas.php b/www/protected/migrations/m120130_120838_tbl_idiomas.php index d33827a..a7d18b6 100644 --- a/www/protected/migrations/m120130_120838_tbl_idiomas.php +++ b/www/protected/migrations/m120130_120838_tbl_idiomas.php @@ -12,7 +12,7 @@ class m120130_120838_tbl_idiomas extends CDbMigration public function down() { - $this->dropTable('tbl_idiomas'); + $this->dropTable('tbl_idiomas'); } /* diff --git a/www/protected/migrations/m120221_093555_tbl_candidatos_titulaciones.php b/www/protected/migrations/m120221_093555_tbl_candidatos_titulaciones.php new file mode 100644 index 0000000..c774ed4 --- /dev/null +++ b/www/protected/migrations/m120221_093555_tbl_candidatos_titulaciones.php @@ -0,0 +1,32 @@ +createTable('tbl_candidatos_titulaciones', array( + 'id' => 'pk', + 'candidato_id' => 'integer NOT NULL', + 'titulacion' => 'string NOT NULL', + )); + + $this->addForeignKey('fk_candidatos_titulacion_1', 'tbl_candidatos_titulaciones', 'candidato_id', 'tbl_candidatos', 'id', 'CASCADE', 'CASCADE'); + } + + public function down() + { + $this->dropForeignKey('fk_candidatos_titulacion_1', 'tbl_candidatos_titulaciones'); + $this->dropTable('tbl_candidatos_titulaciones'); + } + + /* + // Use safeUp/safeDown to do migration with transaction + public function safeUp() + { + } + + public function safeDown() + { + } + */ +} \ No newline at end of file diff --git a/www/protected/migrations/m120221_104416_tbl_titulaciones.php b/www/protected/migrations/m120221_104416_tbl_titulaciones.php new file mode 100644 index 0000000..68b9e38 --- /dev/null +++ b/www/protected/migrations/m120221_104416_tbl_titulaciones.php @@ -0,0 +1,28 @@ +createTable('tbl_titulaciones', array( + 'id' => 'pk', + 'titulacion' => 'string NOT NULL', + )); + } + + public function down() + { + $this->dropTable('tbl_titulaciones'); + } + + /* + // Use safeUp/safeDown to do migration with transaction + public function safeUp() + { + } + + public function safeDown() + { + } + */ +} \ No newline at end of file diff --git a/www/protected/models/Candidato.php b/www/protected/models/Candidato.php index 3e03b0e..bdcaa39 100644 --- a/www/protected/models/Candidato.php +++ b/www/protected/models/Candidato.php @@ -25,7 +25,7 @@ class Candidato extends CActiveRecord const GENERO_MUJER=1; public $foto; - + /** * Devuelve la lista de géneros de un candidato. * @return array lista de géneros permitidos diff --git a/www/protected/models/CandidatoTitulacion.php b/www/protected/models/CandidatoTitulacion.php new file mode 100644 index 0000000..dfbde2e --- /dev/null +++ b/www/protected/models/CandidatoTitulacion.php @@ -0,0 +1,94 @@ +true), + array('titulacion', 'length', 'max'=>255), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, candidato_id, titulacion', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + 'candidato' => array(self::BELONGS_TO, 'Candidatos', 'candidato_id'), + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'candidato_id' => 'Candidato', + 'titulacion' => 'Titulación', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('candidato_id',$this->candidato_id); + $criteria->compare('titulacion',$this->titulacion,true); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } +} \ No newline at end of file diff --git a/www/protected/models/Titulacion.php b/www/protected/models/Titulacion.php new file mode 100644 index 0000000..6dd70ca --- /dev/null +++ b/www/protected/models/Titulacion.php @@ -0,0 +1,86 @@ +255), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, titulacion', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'titulacion' => 'Titulacion', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('titulacion',$this->titulacion,true); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } +} \ No newline at end of file diff --git a/www/protected/runtime/application.log b/www/protected/runtime/application.log deleted file mode 100644 index 62c4296..0000000 --- a/www/protected/runtime/application.log +++ /dev/null @@ -1,7096 +0,0 @@ -2012/01/30 11:56:09 [error] [system.db.CDbCommand] CDbCommand::fetchAll() failed: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'intranet_dev.tbl_capacidadescandidatos' doesn't exist. The SQL statement executed was: SHOW COLUMNS FROM `tbl_capacidadesCandidatos`. -in C:\Intranet\www\index.php (13) -2012/01/30 11:56:20 [error] [system.db.CDbCommand] CDbCommand::fetchAll() failed: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'intranet_dev.tbl_capacidades_candidatos' doesn't exist. The SQL statement executed was: SHOW COLUMNS FROM `tbl_capacidades_candidatos`. -in C:\Intranet\www\index.php (13) -2012/02/01 09:52:54 [error] [exception.CException] exception 'CException' with message 'Property "Usuario.password_repeat_repeat" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('password_repeat...') -#1 C:\Intranet\yii\framework\validators\CCompareValidator.php(91): CActiveRecord->__get('password_repeat...') -#2 C:\Intranet\yii\framework\validators\CValidator.php(197): CCompareValidator->validateAttribute(Object(Usuario), 'password_repeat') -#3 C:\Intranet\yii\framework\base\CModel.php(158): CValidator->validate(Object(Usuario), NULL) -#4 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(786): CModel->validate(NULL) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(72): CActiveRecord->save() -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionCreate() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/create') -#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#18 C:\Intranet\www\index.php(13): CApplication->run() -#19 {main} -REQUEST_URI=/intranet/index.php?r=usuario/create -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/create ---- -2012/02/01 10:12:49 [error] [php] include(Ususario.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\components\UserIdentity.php(18): spl_autoload_call() -#1 C:\Intranet\www\protected\models\LoginForm.php(52): UserIdentity->authenticate() -#2 C:\Intranet\yii\framework\validators\CInlineValidator.php(43): LoginForm->authenticate() -#3 C:\Intranet\yii\framework\validators\CValidator.php(197): CInlineValidator->validateAttribute() -#4 C:\Intranet\yii\framework\base\CModel.php(158): CInlineValidator->validate() -#5 C:\Intranet\www\protected\controllers\SiteController.php(88): LoginForm->validate() -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#8 C:\Intranet\yii\framework\web\CController.php(287): SiteController->runAction() -#9 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run() -#11 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#12 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#13 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=site/login -in C:\Intranet\www\protected\components\UserIdentity.php (18) -in C:\Intranet\www\protected\models\LoginForm.php (52) -in C:\Intranet\www\protected\controllers\SiteController.php (88) -2012/02/01 18:01:58 [error] [exception.CException] exception 'CException' with message 'SiteController contains improperly nested widget tags in its view "C:\Intranet\www\themes\intranet\views/site\login.php". A CActiveForm widget does not have an endWidget() call.' in C:\Intranet\yii\framework\web\CBaseController.php:102 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#1 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true) -#2 C:\Intranet\www\protected\controllers\SiteController.php(92): CController->render('login', Array) -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#5 C:\Intranet\yii\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) -#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CApplication->run() -#11 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/01 18:23:22 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\site\login.php:15) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): SiteController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): SiteController->renderPartial() -#2 C:\Intranet\www\protected\controllers\SiteController.php(92): SiteController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\CController.php(287): SiteController->runAction() -#6 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters() -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=site/login -in C:\Intranet\www\themes\intranet\views\site\login.php (15) -in C:\Intranet\www\protected\controllers\SiteController.php (92) -in C:\Intranet\www\index.php (13) -2012/02/01 18:36:55 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "contact".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('contact') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('contact') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/contact') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=site/contact ---- -2012/02/01 18:44:40 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "actLogin".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/ ---- -2012/02/01 18:44:44 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "actLogin".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php ---- -2012/02/02 09:16:45 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157 -Stack trace: -#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...') -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain)) -#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CApplication->run() -#11 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/02 10:03:10 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157 -Stack trace: -#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...') -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain)) -#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CViewAction), Array) -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('page') -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/page') -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CApplication->run() -#11 {main} -REQUEST_URI=/intranet/index.php?r=site/page&view=about ---- -2012/02/02 10:07:09 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatos&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:07:12 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatos ---- -2012/02/02 10:07:16 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 10:07:36 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatos&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:08:33 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 10:09:38 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 10:09:52 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 10:10:00 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 10:11:59 [error] [exception.CException] exception 'CException' with message 'Property "CWebUser.email" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\web\auth\CWebUser.php(141): CComponent->__get('email') -#1 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CWebUser->__get('email') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() -#8 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') -#9 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent() -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\www\protected\controllers\UsuarioController.php(133): CController->render('index', Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=usuario ---- -2012/02/02 10:13:08 [error] [exception.CException] exception 'CException' with message 'Property "CWebUser.email" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\web\auth\CWebUser.php(141): CComponent->__get('email') -#1 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CWebUser->__get('email') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() -#8 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') -#9 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent() -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\www\protected\controllers\UsuarioController.php(133): CController->render('index', Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=usuario ---- -2012/02/02 10:23:19 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157 -Stack trace: -#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...') -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain)) -#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('logout') -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/logout') -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CApplication->run() -#11 {main} -REQUEST_URI=/intranet/index.php?r=site/logout -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:26:24 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:96) -Stack trace: -#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() -#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() -#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run() -#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget() -#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile() -#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario -in C:\Intranet\www\themes\intranet\views\layouts\main.php (96) -in C:\Intranet\www\protected\views\layouts\column2.php (21) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -2012/02/02 10:26:36 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.model" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CComponent->__get('model') -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() -#7 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') -#8 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent() -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\www\protected\controllers\UsuarioController.php(129): CController->render('index', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=usuario -HTTP_REFERER=http://localhost/intranet/index.php?r=site/login ---- -2012/02/02 10:29:02 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:96) -Stack trace: -#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() -#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() -#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run() -#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget() -#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile() -#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario -in C:\Intranet\www\themes\intranet\views\layouts\main.php (96) -in C:\Intranet\www\protected\views\layouts\column2.php (21) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -2012/02/02 10:31:20 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:93) -Stack trace: -#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() -#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() -#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run() -#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget() -#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile() -#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario -in C:\Intranet\www\themes\intranet\views\layouts\main.php (93) -in C:\Intranet\www\protected\views\layouts\column2.php (21) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -2012/02/02 10:31:31 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:93) -Stack trace: -#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() -#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() -#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run() -#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget() -#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile() -#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario -in C:\Intranet\www\themes\intranet\views\layouts\main.php (93) -in C:\Intranet\www\protected\views\layouts\column2.php (21) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -2012/02/02 10:34:21 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "http://localhost/intranet/index.php?r=usuario/usuario".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('http://localhos...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=http://localhost/intranet/index.php?r=usuario/usuario -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:34:45 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=usuario/usuario -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:35:03 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=usuario/usuario -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:35:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=usuario/usuario&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:35:29 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/usuario') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=site/usuario&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 10:35:54 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index ---- -2012/02/02 10:47:15 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index ---- -2012/02/02 10:47:28 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index ---- -2012/02/02 11:22:18 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index ---- -2012/02/02 11:22:21 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 11:22:52 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index ---- -2012/02/02 11:40:01 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\themes\intranet\views\usuario\index.php:22) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario&view=index -in C:\Intranet\www\themes\intranet\views\usuario\index.php (22) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -in C:\Intranet\www\index.php (13) -2012/02/02 11:44:36 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\themes\intranet\views\usuario\index.php:22) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario&view=index -in C:\Intranet\www\themes\intranet\views\usuario\index.php (22) -in C:\Intranet\www\protected\controllers\UsuarioController.php (129) -in C:\Intranet\www\index.php (13) -2012/02/02 11:59:53 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascript" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascript', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(129): CController->render('index', Array) -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario') -#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#18 C:\Intranet\www\index.php(13): CApplication->run() -#19 {main} -REQUEST_URI=/intranet/index.php?r=usuario&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index ---- -2012/02/02 12:03:42 [error] [php] include(RdxBaseController.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\controllers\UsuarioController.php(4): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\CWebApplication.php(344): require() -#2 C:\Intranet\yii\framework\web\CWebApplication.php(270): CWebApplication->createController() -#3 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#4 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#5 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/index -in C:\Intranet\www\protected\controllers\UsuarioController.php (4) -in C:\Intranet\www\index.php (13) -2012/02/02 12:05:08 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascript" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascript', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(124): CController->render('index', Array) -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('index') -#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/index') -#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#18 C:\Intranet\www\index.php(13): CApplication->run() -#19 {main} -REQUEST_URI=/intranet/index.php?r=usuario/index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/admin ---- -2012/02/02 12:06:06 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascripts" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascripts', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(124): CController->render('index', Array) -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('index') -#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/index') -#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#18 C:\Intranet\www\index.php(13): CApplication->run() -#19 {main} -REQUEST_URI=/intranet/index.php?r=usuario/index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/admin ---- -2012/02/02 17:52:12 [error] [php] Undefined variable: data (C:\Intranet\www\themes\intranet\views\usuario\_view.php:3) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\usuario\view.php(37): UsuarioController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#6 C:\Intranet\www\protected\controllers\UsuarioController.php(42): UsuarioController->render() -#7 unknown(0): UsuarioController->actionView() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\_view.php (3) -in C:\Intranet\www\themes\intranet\views\usuario\view.php (37) -in C:\Intranet\www\protected\controllers\UsuarioController.php (42) -2012/02/02 17:52:39 [error] [php] Undefined variable: data (C:\Intranet\www\themes\intranet\views\usuario\_view.php:3) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\usuario\view.php(37): UsuarioController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#6 C:\Intranet\www\protected\controllers\UsuarioController.php(42): UsuarioController->render() -#7 unknown(0): UsuarioController->actionView() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\_view.php (3) -in C:\Intranet\www\themes\intranet\views\usuario\view.php (37) -in C:\Intranet\www\protected\controllers\UsuarioController.php (42) -2012/02/02 17:55:09 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\themes\intranet\views\usuario\view.php:38) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(42): UsuarioController->render() -#3 unknown(0): UsuarioController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\view.php (38) -in C:\Intranet\www\protected\controllers\UsuarioController.php (42) -in C:\Intranet\www\index.php (13) -2012/02/02 17:55:32 [error] [exception.CException] exception 'CException' with message 'Property "CListView.data" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('data', Object(Usuario)) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(UsuarioController), 'zii.widgets.CLi...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) -#3 C:\Intranet\www\themes\intranet\views\usuario\view.php(40): CBaseController->widget('zii.widgets.CLi...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('view', Array, true) -#8 C:\Intranet\www\protected\controllers\UsuarioController.php(42): CController->render('view', Array) -#9 [internal function]: UsuarioController->actionView('2') -#10 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(UsuarioController), Array) -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(UsuarioController), Object(ReflectionMethod), Array) -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view') -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CApplication->run() -#24 {main} -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 17:55:48 [error] [exception.CException] exception 'CException' with message 'Usuario and its behaviors do not have a method or closure named "getData".' in C:\Intranet\yii\framework\base\CComponent.php:266 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(226): CComponent->__call('getData', Array) -#1 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CActiveRecord->__call('getData', Array) -#2 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): Usuario->getData() -#3 C:\Intranet\yii\framework\zii\widgets\CListView.php(173): CBaseListView->init() -#4 C:\Intranet\yii\framework\web\CBaseController.php(148): CListView->init() -#5 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) -#6 C:\Intranet\www\themes\intranet\views\usuario\view.php(40): CBaseController->widget('zii.widgets.CLi...', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('view', Array, true) -#11 C:\Intranet\www\protected\controllers\UsuarioController.php(42): CController->render('view', Array) -#12 [internal function]: UsuarioController->actionView('2') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(UsuarioController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(UsuarioController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 17:59:55 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\usuario\view.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(48): UsuarioController->render() -#3 unknown(0): UsuarioController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\view.php (4) -in C:\Intranet\www\protected\controllers\UsuarioController.php (48) -in C:\Intranet\www\index.php (13) -2012/02/02 18:01:48 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\usuario\view.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(48): UsuarioController->render() -#3 unknown(0): UsuarioController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\view.php (4) -in C:\Intranet\www\protected\controllers\UsuarioController.php (48) -in C:\Intranet\www\index.php (13) -2012/02/02 18:01:59 [error] [exception.CException] exception 'CException' with message 'Property "CActiveDataProvider.name" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\usuario\view.php(4): CComponent->__get('name') -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('view', Array, true) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(48): CController->render('view', Array) -#6 [internal function]: UsuarioController->actionView('2') -#7 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(UsuarioController), Array) -#8 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(UsuarioController), Object(ReflectionMethod), Array) -#9 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#11 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#15 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#17 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#18 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view') -#19 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#20 C:\Intranet\www\index.php(13): CApplication->run() -#21 {main} -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 18:02:34 [error] [exception.CException] exception 'CException' with message 'Property "CActiveDataProvider.name" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\usuario\view.php(4): CComponent->__get('name') -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('view', Array, true) -#5 C:\Intranet\www\protected\controllers\UsuarioController.php(48): CController->render('view', Array) -#6 [internal function]: UsuarioController->actionView('2') -#7 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(UsuarioController), Array) -#8 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(UsuarioController), Object(ReflectionMethod), Array) -#9 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#11 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#15 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#17 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#18 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view') -#19 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#20 C:\Intranet\www\index.php(13): CApplication->run() -#21 {main} -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario ---- -2012/02/02 18:02:46 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\usuario\view.php:21) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(48): UsuarioController->render() -#3 unknown(0): UsuarioController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\view.php (21) -in C:\Intranet\www\protected\controllers\UsuarioController.php (48) -in C:\Intranet\www\index.php (13) -2012/02/02 18:02:57 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\usuario\view.php:35) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial() -#2 C:\Intranet\www\protected\controllers\UsuarioController.php(48): UsuarioController->render() -#3 unknown(0): UsuarioController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=usuario/view&id=2 -in C:\Intranet\www\themes\intranet\views\usuario\view.php (35) -in C:\Intranet\www\protected\controllers\UsuarioController.php (48) -in C:\Intranet\www\index.php (13) -2012/02/02 18:17:33 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/view&id=2 ---- -2012/02/02 18:20:16 [error] [php] Undefined variable: id (C:\Intranet\www\protected\controllers\CandidatoController.php:133) -Stack trace: -#0 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#2 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato&view=index -in C:\Intranet\www\protected\controllers\CandidatoController.php (133) -in C:\Intranet\www\index.php (13) -2012/02/02 18:20:55 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\protected\views\candidato\index.php:15) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(139): CandidatoController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionIndex() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato&view=index -in C:\Intranet\www\protected\views\candidato\index.php (15) -in C:\Intranet\www\protected\controllers\CandidatoController.php (139) -in C:\Intranet\www\index.php (13) -2012/02/02 18:23:39 [error] [exception.CException] exception 'CException' with message 'Property "Usuario.foto" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('foto') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('foto') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1774): CHtml::resolveValue(Object(Usuario), 'foto') -#3 C:\Intranet\yii\framework\web\helpers\CHtml.php(1205): CHtml::activeInputField('text', Object(Usuario), 'foto', Array) -#4 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(575): CHtml::activeTextField(Object(Usuario), 'foto', Array) -#5 C:\Intranet\www\themes\intranet\views\candidato\_search.php(15): CActiveForm->textField(Object(Usuario), 'foto', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\www\themes\intranet\views\candidato\index.php(39): CController->renderPartial('_search', Array) -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true) -#14 C:\Intranet\www\protected\controllers\CandidatoController.php(139): CController->render('index', Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionIndex() -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato&view=index -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/02 18:24:45 [error] [exception.CException] exception 'CException' with message 'Property "Usuario.foto" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('foto') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('foto') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1774): CHtml::resolveValue(Object(Usuario), 'foto') -#3 C:\Intranet\yii\framework\web\helpers\CHtml.php(1205): CHtml::activeInputField('text', Object(Usuario), 'foto', Array) -#4 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(575): CHtml::activeTextField(Object(Usuario), 'foto', Array) -#5 C:\Intranet\www\themes\intranet\views\candidato\_search.php(15): CActiveForm->textField(Object(Usuario), 'foto', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\www\themes\intranet\views\candidato\index.php(39): CController->renderPartial('_search', Array) -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true) -#14 C:\Intranet\www\protected\controllers\CandidatoController.php(139): CController->render('index', Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionIndex() -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato ---- -2012/02/02 18:37:47 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:37:47 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:37:47 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:37:47 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:37:47 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\view.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(57): CandidatoController->render() -#3 unknown(0): CandidatoController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/view&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\view.php (4) -in C:\Intranet\www\protected\controllers\CandidatoController.php (57) -in C:\Intranet\www\index.php (13) -2012/02/02 18:38:20 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:38:20 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:38:20 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:38:20 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (73) -in C:\Intranet\www\index.php (13) -2012/02/02 18:38:20 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\view.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(57): CandidatoController->render() -#3 unknown(0): CandidatoController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/view&id=2 -in C:\Intranet\www\themes\intranet\views\candidato\view.php (4) -in C:\Intranet\www\protected\controllers\CandidatoController.php (57) -in C:\Intranet\www\index.php (13) -2012/02/02 18:54:48 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\view.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(57): CandidatoController->render() -#3 unknown(0): CandidatoController->actionView() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/view&id=2 -in C:\Intranet\www\themes\intranet\views\candidato\view.php (4) -in C:\Intranet\www\protected\controllers\CandidatoController.php (57) -in C:\Intranet\www\index.php (13) -2012/02/02 19:04:26 [error] [exception.CException] exception 'CException' with message 'Property "Candidato.username" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('username') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('username') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1774): CHtml::resolveValue(Object(Candidato), 'username') -#3 C:\Intranet\yii\framework\web\helpers\CHtml.php(1205): CHtml::activeInputField('text', Object(Candidato), 'username', Array) -#4 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(575): CHtml::activeTextField(Object(Candidato), 'username', Array) -#5 C:\Intranet\www\themes\intranet\views\candidato\_form.php(42): CActiveForm->textField(Object(Candidato), 'username', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\www\themes\intranet\views\candidato\create.php(16): CController->renderPartial('_form', Array) -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#14 C:\Intranet\www\protected\controllers\CandidatoController.php(74): CController->render('create', Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/index ---- -2012/02/02 19:11:28 [error] [php] Missing argument 3 for CHtml::radioButtonList(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 43 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:934) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\create.php(16): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(74): CandidatoController->render() -#8 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#9 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#11 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#13 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#15 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#19 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#20 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (43) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (16) -in C:\Intranet\www\protected\controllers\CandidatoController.php (74) -2012/02/02 20:12:14 [error] [exception.CException] exception 'CException' with message 'Property "Candidato.localidad" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('localidad') -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(106): CActiveRecord->__get('localidad') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(16): CController->renderPartial('_form', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(74): CController->render('create', Array) -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CApplication->run() -#24 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/02 20:26:25 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (91) -in C:\Intranet\www\index.php (13) -2012/02/02 20:26:25 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (91) -in C:\Intranet\www\index.php (13) -2012/02/02 20:26:25 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (91) -in C:\Intranet\www\index.php (13) -2012/02/02 20:26:25 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (91) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:15 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:15 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:15 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:15 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:24 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:24 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:24 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:27:24 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:28:33 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:28:33 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:28:33 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:28:33 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:31 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:31 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:31 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:31 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:35 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:35 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:35 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:29:35 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:30:04 [warning] [application] Failed to set unsafe attribute "fecha_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:30:04 [warning] [application] Failed to set unsafe attribute "usuario_alta" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:30:04 [warning] [application] Failed to set unsafe attribute "fecha_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/02 20:30:04 [warning] [application] Failed to set unsafe attribute "usuario_modificacion" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 10:36:37 [error] [php] Undefined variable: provincia (C:\Intranet\www\themes\intranet\views\candidato\_form.php:17) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(16): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (17) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (16) -in C:\Intranet\www\protected\controllers\CandidatoController.php (76) -2012/02/03 11:31:20 [error] [exception.CException] exception 'CException' with message 'Property "Poblacion.id_provincia" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('id_provincia') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1696): CActiveRecord->__get('id_provincia') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1668): CHtml::value(Object(Poblacion), 'id_provincia') -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(116): CHtml::listData(Array, 'id', 'poblacion', 'id_provincia') -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/03 11:32:42 [error] [php] Illegal offset type (C:\Intranet\yii\framework\web\helpers\CHtml.php:1671) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CandidatoController->render() -#8 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#9 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#11 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#13 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#15 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#19 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#20 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (116) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (19) -in C:\Intranet\www\protected\controllers\CandidatoController.php (76) -2012/02/03 11:47:27 [error] [exception.CException] exception 'CException' with message 'Property "Provincia.provincia_id" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('provincia_id') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1696): CActiveRecord->__get('provincia_id') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1659): CHtml::value(Object(Provincia), 'provincia_id') -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(132): CHtml::listData(Array, 'provincia_id', 'provincia') -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/03 11:57:27 [error] [exception.CException] exception 'CException' with message 'Property "Poblacion.provincia->provincia" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('provincia->prov...') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1696): CActiveRecord->__get('provincia->prov...') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1668): CHtml::value(Object(Poblacion), 'provincia->prov...') -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(123): CHtml::listData(Array, 'id', 'poblacion', 'provincia->prov...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/03 12:02:45 [error] [php] Undefined index: 1 (C:\Intranet\www\themes\intranet\views\candidato\_form.php:127) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (127) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (19) -in C:\Intranet\www\protected\controllers\CandidatoController.php (76) -2012/02/03 12:21:16 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:21:27 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:23:27 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:23:27 [error] [php] Undefined variable: data (C:\Intranet\www\themes\intranet\views\candidato\_form.php:30) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(75): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (30) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (75) -2012/02/03 12:23:44 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:26:35 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:30:31 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:30:55 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:31:15 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:32:07 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:32:38 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:32:51 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:33:19 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:33:36 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:33:54 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:34:11 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:35:56 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:36:15 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:36:52 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:38:12 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:39:17 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:39:17 [error] [exception.CException] exception 'CException' with message 'Property "CActiveForm.enctype" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('enctype', 'multipart/form-...') -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'CActiveForm', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(190): CBaseController->createWidget('CActiveForm', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(7): CBaseController->beginWidget('CActiveForm', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(76): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/create ---- -2012/02/03 12:42:42 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:42:49 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:43:22 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:44:05 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:44:11 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:44:11 [error] [php] move_uploaded_file(C:\Intranet\www\protected/fotos/4) [function.move-uploaded-file]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\web\CUploadedFile.php:197) -Stack trace: -#0 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#1 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#2 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#3 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#4 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#5 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#7 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#8 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#9 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#11 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#12 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (71) -in C:\Intranet\www\index.php (13) -2012/02/03 12:44:52 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:47:33 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/03 12:49:48 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/04 20:19:58 [error] [php] include(Idiomas.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(167): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CandidatoController->render() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (167) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (79) -2012/02/04 20:20:11 [error] [exception.CException] exception 'CException' with message 'Property "Idioma.findAll" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('findAll') -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(167): CActiveRecord->__get('findAll') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CController->render('create', Array) -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CApplication->run() -#24 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/04 20:24:22 [error] [php] Trying to get property of non-object (C:\Intranet\www\themes\intranet\views\candidato\_form.php:177) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (177) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (79) -2012/02/04 20:24:42 [error] [exception.CException] exception 'CException' with message 'Property "Candidato.direccion" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('direccion') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1696): CActiveRecord->__get('direccion') -#2 C:\Intranet\yii\framework\zii\widgets\CDetailView.php(210): CHtml::value(Object(Candidato), 'direccion') -#3 C:\Intranet\yii\framework\web\CBaseController.php(174): CDetailView->run() -#4 C:\Intranet\www\themes\intranet\views\candidato\_form.php(184): CBaseController->widget('zii.widgets.CDe...', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#13 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CController->render('create', Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/04 20:27:17 [error] [php] Undefined variable: model_id (C:\Intranet\www\themes\intranet\views\candidato\_form.php:166) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (166) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (79) -2012/02/04 20:27:30 [error] [exception.CException] exception 'CException' with message 'Property "CDbCriteria.:candidato_id" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\db\schema\CDbCriteria.php(153): CComponent->__set(':candidato_id', NULL) -#1 C:\Intranet\yii\framework\db\schema\CDbCommandBuilder.php(462): CDbCriteria->__construct(Array) -#2 C:\Intranet\yii\framework\db\schema\CDbCommandBuilder.php(537): CDbCommandBuilder->createCriteria(Array, Array) -#3 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(1454): CDbCommandBuilder->createColumnCriteria(Object(CMysqlTableSchema), 'candidato_id = ...', Array, Array, '`t`.') -#4 C:\Intranet\www\themes\intranet\views\candidato\_form.php(166): CActiveRecord->findByAttributes('candidato_id = ...', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#13 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CController->render('create', Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/04 20:29:27 [error] [exception.CException] exception 'CException' with message 'Please specify the "data" property.' in C:\Intranet\yii\framework\zii\widgets\CDetailView.php:137 -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(148): CDetailView->init() -#1 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CDe...', Array) -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(184): CBaseController->widget('zii.widgets.CDe...', Array) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(79): CController->render('create', Array) -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CApplication->run() -#25 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/04 20:31:11 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/04 20:31:23 [warning] [application] Failed to set unsafe attribute "foto" of "Candidato". -in C:\Intranet\www\protected\controllers\CandidatoController.php (67) -in C:\Intranet\www\index.php (13) -2012/02/04 20:55:02 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato?XDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato?XDEBU...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato?XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 20:55:30 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "login?XDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('login?XDEBUG_SE...') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login?XDEBUG_SE...') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login?XDEB...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php?r=site/login?XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 21:00:45 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoXDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoXDEBUG...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoXDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 21:00:47 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato?XDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato?XDEBU...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato?XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 21:01:04 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato?XDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato?XDEBU...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidato?XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 21:01:43 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "XDEBUG_SESSION_START=netbeans-xdebug".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('XDEBUG_SESSION_...') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 21:01:49 [error] [exception.CException] exception 'CException' with message 'SiteController cannot find the requested view "default".' in C:\Intranet\yii\framework\web\CController.php:879 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('default', NULL, true) -#1 C:\Intranet\www\protected\controllers\SiteController.php(74): CController->render('default') -#2 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() -#3 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#5 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#7 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#9 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#11 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('') -#12 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('') -#13 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#14 C:\Intranet\www\index.php(13): CApplication->run() -#15 {main} -REQUEST_URI=/intranet/index.php?XDEBUG_SESSION_START=netbeans-xdebug ---- -2012/02/04 22:29:08 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CApplication->run() -#12 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update ---- -2012/02/05 20:09:34 [error] [exception.CException] exception 'CException' with message 'Alias "zii.widgets.CGridView" is invalid. Make sure it points to an existing PHP file.' in C:\Intranet\yii\framework\YiiBase.php:318 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(147): YiiBase::import('zii.widgets.CGr...', true) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'zii.widgets.CGr...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CGr...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(193): CBaseController->widget('zii.widgets.CGr...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('13') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=13 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/view&id=13 ---- -2012/02/05 20:10:17 [error] [exception.CException] exception 'CException' with message 'Property "CGridView.data" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('data', Object(CandidatoIdioma)) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'zii.widgets.gri...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(193): CBaseController->widget('zii.widgets.gri...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('13') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=13 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/view&id=13 ---- -2012/02/05 20:10:46 [error] [exception.CException] exception 'CException' with message 'Property "CGridView.attributes" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('attributes', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'zii.widgets.gri...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(193): CBaseController->widget('zii.widgets.gri...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('13') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=13 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/view&id=13 ---- -2012/02/05 20:11:10 [error] [exception.CException] exception 'CException' with message 'CandidatoIdioma and its behaviors do not have a method or closure named "getData".' in C:\Intranet\yii\framework\base\CComponent.php:266 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(226): CComponent->__call('getData', Array) -#1 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CActiveRecord->__call('getData', Array) -#2 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CandidatoIdioma->getData() -#3 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(269): CBaseListView->init() -#4 C:\Intranet\yii\framework\web\CBaseController.php(148): CGridView->init() -#5 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#6 C:\Intranet\www\themes\intranet\views\candidato\_form.php(176): CBaseController->widget('zii.widgets.gri...', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#11 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#12 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#14 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#15 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#16 [internal function]: CandidatoController->actionUpdate('13') -#17 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#18 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#19 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#21 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#23 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#24 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#26 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#27 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#28 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#29 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#30 C:\Intranet\www\index.php(13): CApplication->run() -#31 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=13 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/view&id=13 ---- -2012/02/05 20:15:08 [error] [exception.CException] exception 'CException' with message 'Property "Candidato.idioma" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('idioma') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('idioma') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1774): CHtml::resolveValue(Object(Candidato), 'idioma') -#3 C:\Intranet\yii\framework\web\helpers\CHtml.php(1205): CHtml::activeInputField('text', Object(Candidato), 'idioma', Array) -#4 C:\Intranet\yii\framework\zii\widgets\grid\CDataColumn.php(105): CHtml::activeTextField(Object(Candidato), 'idioma', Array) -#5 C:\Intranet\yii\framework\zii\widgets\grid\CGridColumn.php(106): CDataColumn->renderFilterCellContent() -#6 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(450): CGridColumn->renderFilterCell() -#7 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(428): CGridView->renderFilter() -#8 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(398): CGridView->renderTableHeader() -#9 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(158): CGridView->renderItems() -#10 [internal function]: CBaseListView->renderSection(Array) -#11 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback('/{(\w+)}/', Array, '{summary}?{item...') -#12 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(126): CBaseListView->renderContent() -#13 C:\Intranet\yii\framework\web\CBaseController.php(174): CBaseListView->run() -#14 C:\Intranet\www\themes\intranet\views\candidato\_form.php(185): CBaseController->widget('zii.widgets.gri...', Array) -#15 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#16 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#17 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#18 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#19 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#20 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#21 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#22 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#23 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#24 [internal function]: CandidatoController->actionUpdate('13') -#25 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#26 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#27 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#28 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#29 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#30 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#31 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#32 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#33 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#34 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#35 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#36 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#37 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#38 C:\Intranet\www\index.php(13): CApplication->run() -#39 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=13 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/view&id=13 ---- -2012/02/05 20:16:20 [error] [php] get_class() expects parameter 1 to be object, array given (C:\Intranet\yii\framework\web\helpers\CHtml.php:2009) -Stack trace: -#0 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(560): activeLabelEx() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(167): CActiveForm->labelEx() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#11 unknown(0): CandidatoController->actionUpdate() -#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=3 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (167) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/05 20:20:20 [error] [exception.CException] exception 'CException' with message 'CandidatoIdioma and its behaviors do not have a method or closure named "getData".' in C:\Intranet\yii\framework\base\CComponent.php:266 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(226): CComponent->__call('getData', Array) -#1 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CActiveRecord->__call('getData', Array) -#2 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CandidatoIdioma->getData() -#3 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(269): CBaseListView->init() -#4 C:\Intranet\yii\framework\web\CBaseController.php(148): CGridView->init() -#5 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#6 C:\Intranet\www\themes\intranet\views\candidato\_form.php(188): CBaseController->widget('zii.widgets.gri...', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#11 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#12 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#14 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#15 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#16 [internal function]: CandidatoController->actionUpdate('3') -#17 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#18 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#19 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#21 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#23 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#24 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#26 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#27 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#28 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#29 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#30 C:\Intranet\www\index.php(13): CApplication->run() -#31 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=3 ---- -2012/02/05 20:22:31 [error] [system.db.CDbCommand] CDbCommand::fetchColumn() failed: SQLSTATE[HY093]: Invalid parameter number: no parameters were bound. The SQL statement executed was: SELECT COUNT(*) FROM `tbl_candidatos_idiomas` `t` WHERE candidato_id=:candidato_id. -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (192) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/05 20:22:31 [error] [exception.CDbException] exception 'CDbException' with message 'CDbCommand failed to execute the SQL statement: SQLSTATE[HY093]: Invalid parameter number: no parameters were bound. The SQL statement executed was: SELECT COUNT(*) FROM `tbl_candidatos_idiomas` `t` WHERE candidato_id=:candidato_id' in C:\Intranet\yii\framework\db\CDbCommand.php:528 -Stack trace: -#0 C:\Intranet\yii\framework\db\CDbCommand.php(425): CDbCommand->queryInternal('fetchColumn', 0, Array) -#1 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(1536): CDbCommand->queryScalar() -#2 C:\Intranet\yii\framework\web\CActiveDataProvider.php(179): CActiveRecord->count(Object(CDbCriteria)) -#3 C:\Intranet\yii\framework\web\CDataProvider.php(193): CActiveDataProvider->calculateTotalItemCount() -#4 C:\Intranet\yii\framework\web\CActiveDataProvider.php(129): CDataProvider->getTotalItemCount() -#5 C:\Intranet\yii\framework\web\CDataProvider.php(137): CActiveDataProvider->fetchData() -#6 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(105): CDataProvider->getData() -#7 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(269): CBaseListView->init() -#8 C:\Intranet\yii\framework\web\CBaseController.php(148): CGridView->init() -#9 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#10 C:\Intranet\www\themes\intranet\views\candidato\_form.php(192): CBaseController->widget('zii.widgets.gri...', Array) -#11 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#12 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#13 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#14 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#15 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#16 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#17 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#18 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#19 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#20 [internal function]: CandidatoController->actionUpdate('3') -#21 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#22 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#23 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#24 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#25 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#26 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#27 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#28 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#29 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#30 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#31 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#32 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#33 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#34 C:\Intranet\www\index.php(13): CApplication->run() -#35 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=3 ---- -2012/02/06 10:36:46 [error] [exception.CException] exception 'CException' with message 'Alias "ext.EDataTables.EDataTables" is invalid. Make sure it points to an existing PHP file.' in C:\Intranet\yii\framework\YiiBase.php:318 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(147): YiiBase::import('ext.EDataTables...', true) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.EDataTables...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.EDataTables...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(193): CBaseController->widget('ext.EDataTables...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/06 10:37:10 [error] [exception.CException] exception 'CException' with message 'Alias "ext.EDataTables.EDataTables" is invalid. Make sure it points to an existing PHP file.' in C:\Intranet\yii\framework\YiiBase.php:318 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(147): YiiBase::import('ext.EDataTables...', true) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.EDataTables...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.EDataTables...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(193): CBaseController->widget('ext.EDataTables...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/06 10:47:49 [error] [exception.CException] exception 'CException' with message 'Property "EDataTables.editableColumns" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('editableColumns', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.EDataTables...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.EDataTables...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(208): CBaseController->widget('ext.EDataTables...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/06 12:10:08 [error] [exception.CException] exception 'CException' with message 'Property "EDataTables.editableColumns" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('editableColumns', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.EDataTables...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.EDataTables...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(208): CBaseController->widget('ext.EDataTables...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/06 12:16:24 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.status" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('status') -#1 C:\Intranet\yii\framework\base\CComponent.php(607) : eval()'d code(1): CActiveRecord->__get('status') -#2 C:\Intranet\yii\framework\base\CComponent.php(607): eval() -#3 C:\Intranet\yii\framework\zii\widgets\grid\CDataColumn.php(139): CComponent->evaluateExpression('$data->status?"...', Array) -#4 C:\Intranet\yii\framework\zii\widgets\grid\CGridColumn.php(138): CDataColumn->renderDataCellContent(0, Object(CandidatoIdioma)) -#5 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(517): CGridColumn->renderDataCell(0) -#6 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(490): CGridView->renderTableRow(0) -#7 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(400): CGridView->renderTableBody() -#8 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(158): CGridView->renderItems() -#9 [internal function]: CBaseListView->renderSection(Array) -#10 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback('/{(\w+)}/', Array, '{summary}?{item...') -#11 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(126): CBaseListView->renderContent() -#12 C:\Intranet\yii\framework\web\CBaseController.php(174): CBaseListView->run() -#13 C:\Intranet\www\themes\intranet\views\candidato\_form.php(192): CBaseController->widget('zii.widgets.gri...', Array) -#14 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#15 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#16 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#17 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#18 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#19 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#20 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#21 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#22 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#23 [internal function]: CandidatoController->actionUpdate('1') -#24 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#25 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#26 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#27 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#28 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#29 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#30 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#31 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#32 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#33 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#34 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#35 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#36 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#37 C:\Intranet\www\index.php(13): CApplication->run() -#38 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/06 12:18:14 [error] [exception.CException] exception 'CException' with message 'Either "name" or "value" must be specified for CDataColumn.' in C:\Intranet\yii\framework\zii\widgets\grid\CDataColumn.php:86 -Stack trace: -#0 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(326): CDataColumn->init() -#1 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(284): CGridView->initColumns() -#2 C:\Intranet\yii\framework\web\CBaseController.php(148): CGridView->init() -#3 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.gri...', Array) -#4 C:\Intranet\www\themes\intranet\views\candidato\_form.php(192): CBaseController->widget('zii.widgets.gri...', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#13 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#14 [internal function]: CandidatoController->actionUpdate('1') -#15 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#16 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#17 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#19 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#23 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#24 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#25 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#26 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#27 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#28 C:\Intranet\www\index.php(13): CApplication->run() -#29 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato&view=index ---- -2012/02/06 12:25:30 [error] [php] Undefined variable: dataProvider (C:\Intranet\yii\framework\base\CComponent.php(607) : eval()'d code:1) -Stack trace: -#0 C:\Intranet\yii\framework\zii\widgets\grid\CGridColumn.php(138): CDataColumn->renderDataCellContent() -#1 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(517): CDataColumn->renderDataCell() -#2 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(490): CGridView->renderTableRow() -#3 C:\Intranet\yii\framework\zii\widgets\grid\CGridView.php(400): CGridView->renderTableBody() -#4 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(158): CGridView->renderItems() -#5 unknown(0): CGridView->renderSection() -#6 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback() -#7 C:\Intranet\yii\framework\zii\widgets\CBaseListView.php(126): CGridView->renderContent() -#8 C:\Intranet\yii\framework\web\CBaseController.php(174): CGridView->run() -#9 C:\Intranet\www\themes\intranet\views\candidato\_form.php(214): CandidatoController->widget() -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#12 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#13 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#14 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#15 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#16 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#17 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#18 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#19 unknown(0): CandidatoController->actionUpdate() -#20 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#21 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#22 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#23 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#24 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#25 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#26 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#27 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#28 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#29 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#30 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#31 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#32 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#33 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (214) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 12:35:12 [error] [exception.CException] exception 'CException' with message 'Alias "ext.EDataTables.EDataTables" is invalid. Make sure it points to an existing PHP file.' in C:\Intranet\yii\framework\YiiBase.php:318 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(147): YiiBase::import('ext.EDataTables...', true) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.EDataTables...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.EDataTables...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(230): CBaseController->widget('ext.EDataTables...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('1') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 12:46:18 [error] [php] Undefined variable: candidato (C:\Intranet\www\themes\intranet\views\candidato\_form.php:214) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (214) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 16:49:23 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\site\login.php:21) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): SiteController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): SiteController->renderPartial() -#2 C:\Intranet\www\protected\controllers\SiteController.php(121): SiteController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): SiteController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): SiteController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=site/login -in C:\Intranet\www\themes\intranet\views\site\login.php (21) -in C:\Intranet\www\protected\controllers\SiteController.php (121) -in C:\Intranet\www\index.php (13) -2012/02/06 16:50:18 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\site\login.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): SiteController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): SiteController->renderPartial() -#2 C:\Intranet\www\protected\controllers\SiteController.php(139): SiteController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): SiteController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): SiteController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=site/login -in C:\Intranet\www\themes\intranet\views\site\login.php (4) -in C:\Intranet\www\protected\controllers\SiteController.php (139) -in C:\Intranet\www\index.php (13) -2012/02/06 16:53:25 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\site\login.php:24) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): SiteController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): SiteController->renderPartial() -#2 C:\Intranet\www\protected\controllers\SiteController.php(121): SiteController->render() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): SiteController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): SiteController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=site/login -in C:\Intranet\www\themes\intranet\views\site\login.php (24) -in C:\Intranet\www\protected\controllers\SiteController.php (121) -in C:\Intranet\www\index.php (13) -2012/02/06 16:54:13 [error] [exception.CException] exception 'CException' with message 'SiteController contains improperly nested widget tags in its view "C:\Intranet\www\themes\intranet\views/site\login.php". A CActiveForm widget does not have an endWidget() call.' in C:\Intranet\yii\framework\web\CBaseController.php:102 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#1 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true) -#2 C:\Intranet\www\protected\controllers\SiteController.php(121): CController->render('login', Array) -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CApplication->run() -#16 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/06 16:54:13 [error] [exception.CException] exception 'CException' with message 'SiteController contains improperly nested widget tags in its view "C:\Intranet\www\themes\intranet\views/site\login.php". A CActiveForm widget does not have an endWidget() call.' in C:\Intranet\yii\framework\web\CBaseController.php:102 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#1 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true) -#2 C:\Intranet\www\protected\controllers\SiteController.php(121): CController->render('login', Array) -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CApplication->run() -#16 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/06 16:54:14 [error] [exception.CException] exception 'CException' with message 'SiteController contains improperly nested widget tags in its view "C:\Intranet\www\themes\intranet\views/site\login.php". A CActiveForm widget does not have an endWidget() call.' in C:\Intranet\yii\framework\web\CBaseController.php:102 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#1 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true) -#2 C:\Intranet\www\protected\controllers\SiteController.php(121): CController->render('login', Array) -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CApplication->run() -#16 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/06 16:57:48 [error] [exception.CException] exception 'CException' with message 'SiteController has an extra endWidget() call in its view.' in C:\Intranet\yii\framework\web\CBaseController.php:211 -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\site\login.php(42): CBaseController->endWidget() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true) -#5 C:\Intranet\www\protected\controllers\SiteController.php(121): CController->render('login', Array) -#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() -#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login') -#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login') -#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#18 C:\Intranet\www\index.php(13): CApplication->run() -#19 {main} -REQUEST_URI=/intranet/index.php?r=site/login ---- -2012/02/06 17:25:01 [error] [php] Missing argument 2 for CHtml::activeLabelEx(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 226 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1181) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#8 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#9 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#11 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#13 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#15 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#19 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#20 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (226) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 17:26:11 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CApplication->run() -#12 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update ---- -2012/02/06 17:26:35 [error] [php] get_class() expects parameter 1 to be object, string given (C:\Intranet\yii\framework\web\helpers\CHtml.php:2009) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(226): activeLabelEx() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#10 unknown(0): CandidatoController->actionUpdate() -#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (226) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 17:26:52 [error] [php] get_class() expects parameter 1 to be object, string given (C:\Intranet\yii\framework\web\helpers\CHtml.php:2009) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(226): activeLabelEx() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#10 unknown(0): CandidatoController->actionUpdate() -#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (226) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 17:26:55 [error] [php] get_class() expects parameter 1 to be object, string given (C:\Intranet\yii\framework\web\helpers\CHtml.php:1995) -Stack trace: -#0 C:\Intranet\yii\framework\web\helpers\CHtml.php(1275): resolveNameID() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(226): activeFileField() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#11 unknown(0): CandidatoController->actionUpdate() -#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (226) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 17:46:11 [error] [exception.CException] exception 'CException' with message 'Property "CAttributeCollection.maxWords" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\collections\CAttributeCollection.php(52): CComponent->__get('maxWords') -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(188): CAttributeCollection->__get('maxWords') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#11 [internal function]: CandidatoController->actionUpdate('1') -#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:46:22 [error] [exception.CException] exception 'CException' with message 'Property "JAppendo.form" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('form', Object(CActiveForm)) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'application.ext...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('1') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:46:37 [error] [exception.CException] exception 'CException' with message 'Property "JAppendo.form" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('form', Object(CActiveForm)) -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'application.ext...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#13 [internal function]: CandidatoController->actionUpdate('1') -#14 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#15 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#16 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#18 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#22 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#24 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#25 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#26 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#27 C:\Intranet\www\index.php(13): CApplication->run() -#28 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:46:52 [error] [exception.CException] exception 'CException' with message 'JAppendo cannot find the view "application.views.eventAbstract._keywords_form".' in C:\Intranet\yii\framework\web\widgets\CWidget.php:246 -Stack trace: -#0 C:\Intranet\www\protected\extensions\appendo\JAppendo.php(148): CWidget->render('application.vie...', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(174): JAppendo->run() -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(190): CBaseController->widget('application.ext...', Array) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#12 [internal function]: CandidatoController->actionUpdate('1') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:52:31 [error] [exception.CException] exception 'CException' with message 'viewName must be set!' in C:\Intranet\www\protected\extensions\appendo\JAppendo.php:132 -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(148): JAppendo->init() -#1 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#12 [internal function]: CandidatoController->actionUpdate('1') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:52:32 [error] [exception.CException] exception 'CException' with message 'viewName must be set!' in C:\Intranet\www\protected\extensions\appendo\JAppendo.php:132 -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(148): JAppendo->init() -#1 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#12 [internal function]: CandidatoController->actionUpdate('1') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:52:46 [error] [exception.CException] exception 'CException' with message 'JAppendo cannot find the view "prueba".' in C:\Intranet\yii\framework\web\widgets\CWidget.php:246 -Stack trace: -#0 C:\Intranet\www\protected\extensions\appendo\JAppendo.php(148): CWidget->render('prueba', Array) -#1 C:\Intranet\yii\framework\web\CBaseController.php(174): JAppendo->run() -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#12 [internal function]: CandidatoController->actionUpdate('1') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:53:21 [error] [exception.CException] exception 'CException' with message 'Property "Candidato.enum_name" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('enum_name') -#1 C:\Intranet\www\protected\extensions\appendo\views\enumerations.php(14): CActiveRecord->__get('enum_name') -#2 C:\Intranet\yii\framework\web\CBaseController.php(131): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, false) -#4 C:\Intranet\yii\framework\web\widgets\CWidget.php(244): CBaseController->renderFile('C:\Intranet\www...', Array, false) -#5 C:\Intranet\www\protected\extensions\appendo\JAppendo.php(148): CWidget->render('enumerations', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(174): JAppendo->run() -#7 C:\Intranet\www\themes\intranet\views\candidato\_form.php(191): CBaseController->widget('application.ext...', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#12 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#13 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#14 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#15 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#16 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CController->render('update', Array) -#17 [internal function]: CandidatoController->actionUpdate('1') -#18 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#19 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#20 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#21 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#22 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#23 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#24 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#26 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#27 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#28 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#29 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#30 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#31 C:\Intranet\www\index.php(13): CApplication->run() -#32 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 ---- -2012/02/06 17:55:59 [error] [php] Undefined variable: photosNumber (C:\Intranet\www\themes\intranet\views\candidato\_form.php:252) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(105): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (252) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (105) -2012/02/06 18:03:44 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:03:54 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma&view=index ---- -2012/02/06 18:04:07 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:04:21 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:04:44 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:04:51 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:04:52 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:04:58 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatoidioma".' in C:\Intranet\yii\framework\web\CWebApplication.php:280 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatoidioma') -#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#2 C:\Intranet\www\index.php(13): CApplication->run() -#3 {main} -REQUEST_URI=/intranet/index.php?r=candidatoidioma ---- -2012/02/06 18:20:08 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 18:21:21 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 18:21:23 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 18:21:24 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 18:21:34 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(78): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (78) -2012/02/06 18:22:42 [error] [php] include(CandidatoIdiomaManager.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\controllers\CandidatoController.php(61): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#2 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#3 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#4 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#5 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#6 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#8 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#11 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#12 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#13 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (61) -in C:\Intranet\www\index.php (13) -2012/02/06 18:22:53 [error] [php] include(CandidatoIdiomaManager.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\controllers\CandidatoController.php(61): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#2 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#3 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#4 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#5 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#6 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#8 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#11 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#12 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#13 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (61) -in C:\Intranet\www\index.php (13) -2012/02/06 18:22:55 [error] [php] include(CandidatoIdiomaManager.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\controllers\CandidatoController.php(61): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#2 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#3 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#4 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#5 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#6 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#8 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#11 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#12 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#13 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (61) -in C:\Intranet\www\index.php (13) -2012/02/06 18:23:07 [error] [php] include(TabularInputManager.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\models\CandidatoIdiomaManager.php(4): spl_autoload_call() -#1 C:\Intranet\yii\framework\YiiBase.php(418): include() -#2 unknown(0): autoload() -#3 C:\Intranet\www\protected\controllers\CandidatoController.php(61): spl_autoload_call() -#4 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#5 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#7 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#8 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#9 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#10 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#11 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#12 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#15 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#16 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\models\CandidatoIdiomaManager.php (4) -in C:\Intranet\www\protected\controllers\CandidatoController.php (61) -in C:\Intranet\www\index.php (13) -2012/02/06 18:24:36 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:25:10 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:25:31 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:190) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (190) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:25:58 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:189) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (189) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:26:43 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.name" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('name') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('name') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1258): CHtml::resolveValue(Object(CandidatoIdioma), 'name') -#3 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(620): CHtml::activeTextArea(Object(CandidatoIdioma), '[n0]name', Array) -#4 C:\Intranet\www\protected\views\candidato\_formCandidatoIdioma.php(3): CActiveForm->textArea(Object(CandidatoIdioma), '[n0]name', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\_form.php(190): CController->renderPartial('_formCandidatoI...', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#15 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#16 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#17 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CController->render('create', Array) -#18 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#19 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#21 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#23 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#24 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#26 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#27 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#28 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#29 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#30 C:\Intranet\www\index.php(13): CApplication->run() -#31 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/06 18:27:22 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.surname" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('surname') -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(2044): CActiveRecord->__get('surname') -#2 C:\Intranet\yii\framework\web\helpers\CHtml.php(1258): CHtml::resolveValue(Object(CandidatoIdioma), 'surname') -#3 C:\Intranet\yii\framework\web\widgets\CActiveForm.php(620): CHtml::activeTextArea(Object(CandidatoIdioma), '[n0]surname', Array) -#4 C:\Intranet\www\protected\views\candidato\_formCandidatoIdioma.php(9): CActiveForm->textArea(Object(CandidatoIdioma), '[n0]surname', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\_form.php(190): CController->renderPartial('_formCandidatoI...', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#15 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#16 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#17 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CController->render('create', Array) -#18 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#19 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#21 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#23 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#24 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#26 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#27 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#28 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#29 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#30 C:\Intranet\www\index.php(13): CApplication->run() -#31 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/06 18:27:48 [error] [php] Undefined variable: photosNumber (C:\Intranet\www\themes\intranet\views\candidato\_form.php:273) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (273) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (19) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:29:33 [error] [php] Undefined variable: candidatoIdiomaManager (C:\Intranet\www\themes\intranet\views\candidato\_form.php:193) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(107): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=8 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (193) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (107) -2012/02/06 18:35:30 [error] [php] Undefined variable: idiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:274) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (274) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (19) -in C:\Intranet\www\protected\controllers\CandidatoController.php (80) -2012/02/06 18:36:51 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.lastNew" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('lastNew') -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(277): CActiveRecord->__get('lastNew') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CController->render('create', Array) -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CApplication->run() -#24 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/06 18:38:01 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.lastNew" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('lastNew') -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(277): CActiveRecord->__get('lastNew') -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#4 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(19): CController->renderPartial('_form', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(80): CController->render('create', Array) -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CApplication->run() -#24 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/06 18:44:34 [error] [php] Missing argument 1 for TabularInputManager::save(), called in C:\Intranet\www\protected\controllers\CandidatoController.php on line 77 and defined (C:\Intranet\www\protected\extensions\TabularInputManager.php:100) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\extensions\TabularInputManager.php (100) -in C:\Intranet\www\protected\controllers\CandidatoController.php (77) -in C:\Intranet\www\index.php (13) -2012/02/06 18:45:33 [error] [php] Missing argument 1 for TabularInputManager::save(), called in C:\Intranet\www\protected\controllers\CandidatoController.php on line 77 and defined (C:\Intranet\www\protected\extensions\TabularInputManager.php:100) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\extensions\TabularInputManager.php (100) -in C:\Intranet\www\protected\controllers\CandidatoController.php (77) -in C:\Intranet\www\index.php (13) -2012/02/06 18:45:54 [error] [php] include(Student.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\protected\models\CandidatoIdiomaManager.php(25): spl_autoload_call() -#1 C:\Intranet\www\protected\extensions\TabularInputManager.php(111): CandidatoIdiomaManager->deleteOldItems() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(77): CandidatoIdiomaManager->save() -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\models\CandidatoIdiomaManager.php (25) -in C:\Intranet\www\protected\extensions\TabularInputManager.php (111) -in C:\Intranet\www\protected\controllers\CandidatoController.php (77) -2012/02/08 16:03:00 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CApplication->run() -#12 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update ---- -2012/02/08 16:10:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:10:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\controllers\CandidatoController.php (142) -in C:\Intranet\www\index.php (13) -2012/02/08 16:14:42 [error] [php] Attempt to assign property of non-object (C:\Intranet\www\protected\controllers\CandidatoController.php:145) -Stack trace: -#0 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#1 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#2 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#3 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#4 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#5 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#7 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#8 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#9 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#11 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#12 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\protected\controllers\CandidatoController.php (145) -in C:\Intranet\www\index.php (13) -2012/02/08 16:15:08 [error] [php] Attempt to assign property of non-object (C:\Intranet\www\protected\controllers\CandidatoController.php:146) -Stack trace: -#0 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#1 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#2 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#3 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#4 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#5 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#7 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#8 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#9 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#10 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#11 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#12 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\protected\controllers\CandidatoController.php (146) -in C:\Intranet\www\index.php (13) -2012/02/08 16:43:33 [error] [php] include(Idiomas.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(173): spl_autoload_call() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#10 unknown(0): CandidatoController->actionUpdate() -#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (173) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:43:44 [error] [php] strcmp() expects parameter 2 to be string, object given (C:\Intranet\yii\framework\web\helpers\CHtml.php:948) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#1 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#2 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#3 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#6 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#7 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#8 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#9 unknown(0): CandidatoController->actionUpdate() -#10 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:44:11 [error] [php] Object of class Idioma could not be converted to string (C:\Intranet\yii\framework\web\helpers\CHtml.php:144) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(174): radioButtonList() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#10 unknown(0): CandidatoController->actionUpdate() -#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:44:46 [error] [php] Object of class Idioma could not be converted to string (C:\Intranet\yii\framework\web\helpers\CHtml.php:144) -Stack trace: -#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(174): radioButtonList() -#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#10 unknown(0): CandidatoController->actionUpdate() -#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#24 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:45:50 [error] [php] Missing argument 2 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#8 unknown(0): CandidatoController->actionUpdate() -#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:47:43 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#8 unknown(0): CandidatoController->actionUpdate() -#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:47:43 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#8 unknown(0): CandidatoController->actionUpdate() -#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 16:47:48 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#8 unknown(0): CandidatoController->actionUpdate() -#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 17:03:16 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) -Stack trace: -#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#8 unknown(0): CandidatoController->actionUpdate() -#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#22 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 17:09:14 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.0" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 -Stack trace: -#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('0') -#1 C:\Intranet\yii\framework\base\CModel.php(593): CActiveRecord->__get('0') -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(173): CModel->offsetGet(0) -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CController->render('update', Array) -#12 [internal function]: CandidatoController->actionUpdate('28') -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CApplication->run() -#27 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 ---- -2012/02/08 17:15:59 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (C:\Intranet\yii\framework\web\helpers\CHtml.php:85) -Stack trace: -#0 C:\Intranet\yii\framework\web\helpers\CHtml.php(140): renderAttributes() -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(772): tag() -#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(179): dropDownList() -#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#9 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#10 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#11 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#12 unknown(0): CandidatoController->actionUpdate() -#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#18 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#22 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#26 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (179) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/08 17:32:12 [error] [php] Undefined variable: name (C:\Intranet\www\themes\intranet\views\candidato\_form.php:175) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (175) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (174) -2012/02/14 16:10:42 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) -in C:\Intranet\www\protected\controllers\CandidatoController.php (109) -2012/02/14 16:10:59 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) -in C:\Intranet\www\protected\controllers\CandidatoController.php (109) -2012/02/14 16:11:08 [error] [php] Undefined variable: id (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(23): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (23) -in C:\Intranet\www\protected\controllers\CandidatoController.php (109) -2012/02/14 16:11:31 [error] [php] Undefined variable: id (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:21) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(23): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (21) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (23) -in C:\Intranet\www\protected\controllers\CandidatoController.php (109) -2012/02/16 15:52:04 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:04 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:05 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/view/...') -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CApplication->run() -#12 {main} -REQUEST_URI=/intranet/index.php/candidato/view/index -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:13 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:13 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:14 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) -#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') -#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view/in...') -#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#11 C:\Intranet\www\index.php(13): CApplication->run() -#12 {main} -REQUEST_URI=/intranet/index.php/usuario/view/index -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:15 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 15:52:16 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') -#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') -#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') -#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#4 C:\Intranet\www\index.php(13): CApplication->run() -#5 {main} -REQUEST_URI=/intranet/index.php/site/images/avatar.png -HTTP_REFERER=http://localhost/intranet/index.php/site/index ---- -2012/02/16 16:00:06 [error] [php] Undefined variable: idiomaFormConfig (C:\Intranet\www\themes\intranet\views\candidato\_form.php:189) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (189) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) -in C:\Intranet\www\protected\controllers\CandidatoController.php (116) -2012/02/16 16:00:26 [error] [php] Undefined variable: member (C:\Intranet\www\themes\intranet\views\candidato\_form.php:197) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (197) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) -in C:\Intranet\www\protected\controllers\CandidatoController.php (116) -2012/02/16 16:00:59 [error] [php] Undefined variable: foundInvalidChild (C:\Intranet\www\protected\controllers\CandidatoController.php:97) -Stack trace: -#0 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#2 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (97) -in C:\Intranet\www\index.php (13) -2012/02/16 16:14:01 [error] [exception.CException] exception 'CException' with message 'Property "MultiModelForm.$removeText" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 -Stack trace: -#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('$removeText', 'Eliminar idioma') -#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.multimodelf...', Array) -#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.multimodelf...', Array) -#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(201): CBaseController->widget('ext.multimodelf...', Array) -#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CController->renderPartial('_form', Array) -#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) -#12 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CController->render('create', Array) -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CApplication->run() -#26 {main} -REQUEST_URI=/intranet/index.php?r=candidato/create ---- -2012/02/16 16:29:17 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:17) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(200): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=29 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (17) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (200) -2012/02/16 16:45:41 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:17) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() -#7 unknown(0): CandidatoController->actionUpdate() -#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#21 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (17) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) -in C:\Intranet\www\protected\controllers\CandidatoController.php (215) -2012/02/16 16:46:59 [error] [php] Undefined variable: idioma (C:\Intranet\www\themes\intranet\views\candidato\update.php:20) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() -#3 unknown(0): CandidatoController->actionUpdate() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 -in C:\Intranet\www\themes\intranet\views\candidato\update.php (20) -in C:\Intranet\www\protected\controllers\CandidatoController.php (215) -in C:\Intranet\www\index.php (13) -2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:12:24 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/16 18:12:24 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:16:22 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:55) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(155): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(134): CandidatoController->render() -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (55) -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (155) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) -2012/02/20 10:16:48 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:58) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(155): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(134): CandidatoController->render() -#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#23 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (58) -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (155) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) -2012/02/20 10:20:57 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:20:57 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:22:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:22:39 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:25:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:25:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:26:32 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:26:32 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:29:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:29:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:30:25 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:30:25 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:31:22 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:31:22 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:32:52 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:32:52 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:35:32 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:35:32 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:37:09 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:37:09 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:37:09 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:41) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CandidatoController->render() -#11 unknown(0): CandidatoController->actionUpdate() -#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=31 -in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (41) -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (159) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (22) -2012/02/20 10:38:46 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:38:46 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:39:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:39:06 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:39:27 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:39:27 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:49:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:49:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:49:54 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:49:54 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:50:01 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:50:01 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:53:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:53:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:53:45 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:53:45 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:54:26 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:54:26 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:57:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:57:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:58:24 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:58:24 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:58:36 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:58:36 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:59:35 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 10:59:35 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:00:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:00:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:01:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:01:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:02:09 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:02:09 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:04:34 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:04:34 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:05:05 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:05:05 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:05:13 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:05:13 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:08:25 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:08:25 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:08:41 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:08:41 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:09:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:09:39 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:11:12 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:11:12 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:14:33 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:14:33 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:15:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:15:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:17:33 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:17:33 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:18:01 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:18:01 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:28:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:28:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:28:51 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:28:51 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:29:48 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:29:48 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:29:59 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:29:59 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:31:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:31:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:05 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:05 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:44 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:44 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:56 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:39:56 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:40:50 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:40:50 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:42:31 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:42:31 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:42:51 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:42:51 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:06 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:30 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:30 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:49 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:43:49 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:44:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 11:44:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 15:52:56 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (C:\Intranet\yii\framework\web\helpers\CHtml.php:85) -Stack trace: -#0 C:\Intranet\yii\framework\web\helpers\CHtml.php(140): renderAttributes() -#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1412): tag() -#2 C:\Intranet\yii\framework\web\form\CFormInputElement.php(209): activeDropDownList() -#3 C:\Intranet\yii\framework\web\form\CFormInputElement.php(171): CFormInputElement->renderInput() -#4 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1029): CFormInputElement->render() -#5 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1111): MultiModelRenderForm->renderFormElements() -#6 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(849): MultiModelRenderForm->render() -#7 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() -#8 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(76): CandidatoController->widget() -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#11 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#12 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CandidatoController->renderPartial() -#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#15 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#16 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() -#17 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#18 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#19 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#20 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#21 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CandidatoController->render() -#22 unknown(0): CandidatoController->actionUpdate() -#23 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#24 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#25 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#26 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#27 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#28 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#29 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#30 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#31 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#32 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#33 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#34 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#35 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#36 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=31 -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (1029) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (1111) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (849) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/20 16:53:49 [error] [exception.CException] exception 'CException' with message 'CFormStringElement and its behaviors do not have a method or closure named "getRequired".' in C:\Intranet\yii\framework\base\CComponent.php:266 -Stack trace: -#0 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(947): CComponent->__call('getRequired', Array) -#1 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(947): CFormStringElement->getRequired() -#2 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(765): MultiModelRenderForm->renderTableHeader() -#3 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(817): MultiModelForm->renderTableBegin(true) -#4 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() -#5 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(76): CBaseController->widget('ext.multimodelf...', Array) -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#9 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CController->renderPartial('_idiomas', Array) -#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#12 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#13 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CController->renderPartial('_form', Array) -#14 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#15 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#16 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#17 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#18 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CController->render('update', Array) -#19 [internal function]: CandidatoController->actionUpdate('30') -#20 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#21 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#22 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#23 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#24 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#25 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#26 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#27 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#28 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#29 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#30 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#31 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#32 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#33 C:\Intranet\www\index.php(13): CApplication->run() -#34 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/update&id=30 ---- -2012/02/20 16:58:22 [error] [exception.CException] exception 'CException' with message 'Property "MultiModelRenderForm.removeLinkWrapper" is not defined.' in C:\Intranet\yii\framework\web\form\CFormElement.php:86 -Stack trace: -#0 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1057): CFormElement->__get('removeLinkWrapp...') -#1 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1116): MultiModelRenderForm->renderFormElements() -#2 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(870): MultiModelRenderForm->render() -#3 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() -#4 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(77): CBaseController->widget('ext.multimodelf...', Array) -#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#8 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CController->renderPartial('_idiomas', Array) -#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#12 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CController->renderPartial('_form', Array) -#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') -#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) -#15 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) -#16 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) -#17 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CController->render('update', Array) -#18 [internal function]: CandidatoController->actionUpdate('30') -#19 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#20 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#21 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#22 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#23 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#24 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#25 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#26 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#27 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#28 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#29 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#30 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#31 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#32 C:\Intranet\www\index.php(13): CApplication->run() -#33 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 -HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/update&id=30 ---- -2012/02/21 18:02:07 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The requested page does not exist.' in C:\Intranet\www\protected\controllers\CandidatoController.php:278 -Stack trace: -#0 C:\Intranet\www\protected\controllers\CandidatoController.php(144): CandidatoController->loadModel('27') -#1 [internal function]: CandidatoController->actionUpdate('27') -#2 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) -#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) -#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) -#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) -#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#7 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) -#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) -#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) -#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') -#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') -#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#15 C:\Intranet\www\index.php(13): CApplication->run() -#16 {main} -REQUEST_URI=/intranet/index.php?r=candidato/update&id=27 ---- -2012/02/21 18:02:32 [error] [php] Undefined variable: idioma (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:21) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(163): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() -#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#10 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() -#11 unknown(0): CandidatoController->actionUpdate() -#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#25 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=3 -in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (21) -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (163) -in C:\Intranet\www\themes\intranet\views\candidato\update.php (22) -2012/02/21 18:23:32 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:21) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() -#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() -#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() -#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#6 C:\Intranet\www\protected\controllers\CandidatoController.php(147): CandidatoController->render() -#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() -#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#19 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\themes\intranet\views\candidato\_form.php (21) -in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) -in C:\Intranet\www\protected\controllers\CandidatoController.php (147) -2012/02/22 16:05:26 [error] [php] Undefined variable: titulacion (C:\Intranet\www\themes\intranet\views\candidato\update.php:23) -Stack trace: -#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() -#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() -#2 C:\Intranet\www\protected\controllers\CandidatoController.php(230): CandidatoController->render() -#3 unknown(0): CandidatoController->actionUpdate() -#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() -#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() -#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() -#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#17 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 -in C:\Intranet\www\themes\intranet\views\candidato\update.php (23) -in C:\Intranet\www\protected\controllers\CandidatoController.php (230) -in C:\Intranet\www\index.php (13) -2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) -in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) -2012/02/22 16:20:51 [error] [php] Undefined variable: foundInvalidChild (C:\Intranet\www\protected\controllers\CandidatoController.php:128) -Stack trace: -#0 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() -#1 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() -#2 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() -#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() -#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() -#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() -#6 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() -#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() -#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() -#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() -#10 C:\Intranet\www\index.php(13): CWebApplication->run() -REQUEST_URI=/intranet/index.php?r=candidato/create -in C:\Intranet\www\protected\controllers\CandidatoController.php (128) -in C:\Intranet\www\index.php (13) diff --git a/www/protected/tests/fixtures/tbl_titulaciones.php b/www/protected/tests/fixtures/tbl_titulaciones.php new file mode 100644 index 0000000..fda576a --- /dev/null +++ b/www/protected/tests/fixtures/tbl_titulaciones.php @@ -0,0 +1,31 @@ + array('titulacion'=>'Ciclo G.Sup. Administración Sistemas Informático'), + 'titulacion2' => array('titulacion'=>'Diplomado en Estadística'), + 'titulacion4' => array('titulacion'=>'FPII Téc. Especialista Administrativo Comercial'), + 'titulacion5' => array('titulacion'=>'FPIII Administración de Empresas'), + 'titulacion6' => array('titulacion'=>'Informática Gestión y Sistemas (No homologado)'), + 'titulacion9' => array('titulacion'=>'Ingeniería Superior en Electrónica'), + 'titulacion10' => array('titulacion'=>'Ingeniería Superior Informática'), + 'titulacion12' => array('titulacion'=>'Ingeniería Técnica Informática Sistemas'), + 'titulacion13' => array('titulacion'=>'Ingeniería Técnica Telecomunicaciones'), + 'titulacion14' => array('titulacion'=>'Ingenieria Superior Telecomunicaciones'), + 'titulacion15' => array('titulacion'=>'Ingenieria Técnica Informática Gestión'), + 'titulacion16' => array('titulacion'=>'Licenciado en Físicas'), + 'titulacion17' => array('titulacion'=>'Licenciado en Informática'), + 'titulacion18' => array('titulacion'=>'Licenciatura C. Químicas'), + 'titulacion19' => array('titulacion'=>'Ciclo G.Sup. Desarrollo Aplicaciones'), + 'titulacion20' => array('titulacion'=>'Licenciatura Publicidad y RRPP'), + 'titulacion21' => array('titulacion'=>'Diseño Grafico (No homologado)'), + 'titulacion22' => array('titulacion'=>'FPII Informática'), + 'titulacion23' => array('titulacion'=>'ESO'), + 'titulacion24' => array('titulacion'=>'Licenciatura en Matemáticas'), + 'titulacion25' => array('titulacion'=>'Ingeniería Superior Industriales'), + 'titulacion26' => array('titulacion'=>'FPII Electrónica'), + 'titulacion27' => array('titulacion'=>'FPIII Informática y/o Electrónica'), + 'titulacion28' => array('titulacion'=>'BUP'), + 'titulacion29' => array('titulacion'=>'Licenciatura Otros'), + 'titulacion30' => array('titulacion'=>'Licenciatura en Economía'), +); +?> diff --git a/www/protected/tests/unit/CapacidadIdiomaTest.php b/www/protected/tests/unit/CandidatoIdiomaTest.php similarity index 98% rename from www/protected/tests/unit/CapacidadIdiomaTest.php rename to www/protected/tests/unit/CandidatoIdiomaTest.php index 2901d51..7015ad0 100644 --- a/www/protected/tests/unit/CapacidadIdiomaTest.php +++ b/www/protected/tests/unit/CandidatoIdiomaTest.php @@ -1,6 +1,6 @@ 'Candidato', diff --git a/www/protected/views/candidato/_formCandidatoIdioma.php b/www/protected/views/candidato/_formCandidatoIdioma.php new file mode 100644 index 0000000..510eeb9 --- /dev/null +++ b/www/protected/views/candidato/_formCandidatoIdioma.php @@ -0,0 +1,30 @@ + + + textField($model,"[$id]idioma"); ?> + error($model,"idioma"); ?> + + + + + textField($model,"[$id]conversacion"); ?> + error($model,"conversacion"); ?> + + + + textField($model,"[$id]lectura_traduccion"); ?> + error($model,"lectura_traduccion"); ?> + + + + '', + 'params'=>array( + 'CandidatoIdioma[command]'=>'delete', + 'CandidatoIdioma[id]'=>$id, + 'noValidate'=>true) + ));?> + + \ No newline at end of file diff --git a/www/themes/intranet/css/custom.css b/www/themes/intranet/css/custom.css index 638c7ac..e6271bc 100644 --- a/www/themes/intranet/css/custom.css +++ b/www/themes/intranet/css/custom.css @@ -62,34 +62,3 @@ span.timestamp { color: #006699; } -.button.plain { - background: none repeat scroll 0 0 #F2F2F2; - border: 1px solid #DDDDDD; - border-radius: 0 0 0 0; - box-shadow: none; - color: #666; - height: 22px; - line-height: 22px; - margin: -4px -4px -4px 0; - padding: 0 14px; - text-decoration: none; - text-shadow: 0 1px 0 #FFFFFF; - font-weight: bold; - display: inline-block; -} - -.button.plain:hover { - color: #333; - background: none repeat scroll 0 0 #E2E2E2; -} - -.button.plain:first-child { - border-bottom-left-radius: 2px; - border-top-left-radius: 2px; -} - -.button.plain:last-child { - border-bottom-right-radius: 2px; - border-top-right-radius: 2px; -} - diff --git a/www/themes/intranet/css/style.css b/www/themes/intranet/css/style.css index e68f445..53de5fa 100644 --- a/www/themes/intranet/css/style.css +++ b/www/themes/intranet/css/style.css @@ -362,7 +362,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .form_default fieldset { border: 1px solid #ccc; padding: 20px; background: #f7f7f7; } .form_default legend { text-transform: uppercase; } .form_default p { margin: 20px 0 !important; } -.form_default label { width: 130px; float: left; text-align: right; padding-top: 5px; margin-right: 20px; } +.form_default label { width: 150px; float: left; text-align: right; padding-top: 5px; margin-right: 20px; } .form_default input[type=text], .form_default input[type=password] { font-size: 12px; padding: 8px 5px; border: 1px solid #ccc; background: #fcfcfc; outline: none; } .form_default input[type=text], .form_default input[type=password] { -moz-box-shadow: inset 1px 1px 3px #ccc; -webkit-box-shadow: inset 1px 1px 3px #ccc; box-shadow: inset 1px 1px 3px #ccc; } @@ -450,7 +450,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .sTable2 tbody tr.even td { background: #fcfcfc; } .sTable3 { border-collapse: collapse; } -.sTable3 thead td, .sTable3 thead th { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; } +.sTable3 thead td { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; } .sTable3 tbody tr td { padding: 10px; background: #fff; border-top: 1px solid #eee; border-left: 1px solid #eee; } .sTable3 tbody tr.even td { background: #fcfcfc; } @@ -578,7 +578,6 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .loaders img { vertical-align: middle; display: inline-block; margin-right: 10px; } .padding15 { padding: 15px; overflow: hidden; } .padding1020 { padding: 10px 20px; } -.padding020 { padding: 0px 20px; } .padding20 { padding: 20px; overflow: hidden; } .borderbottom { border-bottom: 1px solid #eee; } .floatleft { float: left; } @@ -598,7 +597,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .inlineblock { display: inline-block; } .alignright { text-align: right; } .bordertop { border-top: 1px solid #ccc; } -.fullwidth { width: 100%; } + /***CUSTOM STYLES***/ .operations > ul {list-style: none;} diff --git a/www/themes/intranet/views/candidato/_form.php b/www/themes/intranet/views/candidato/_form.php index 2d8de61..9d442d4 100644 --- a/www/themes/intranet/views/candidato/_form.php +++ b/www/themes/intranet/views/candidato/_form.php @@ -1,5 +1,5 @@ clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/custom/elements.js'); +Yii::app()->clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/custom/elements.js'); ?> beginWidget('CActiveForm', array( @@ -14,7 +14,7 @@

Los campos marcados con * son obligatorios.

- errorSummary(array_merge(array($model), $idiomasValidos, $titulacionesValidas), "", "", array('class'=>"notification msgerror")); ?> + errorSummary($model, "", "", array('class'=>"notification msgerror")); ?>

@@ -135,8 +135,9 @@ unset($lista[$provincia->id]); } } - echo CHtml::activeDropDownList($model, + echo CHtml::dropDownList( 'localidad', + $model->localidad, $lista, array( 'empty'=>'', @@ -151,28 +152,15 @@

-

Datos académicos

- - renderPartial('_idiomas', array( - 'model'=>$model, - 'idioma'=>$idioma, - 'idiomasValidos'=>$idiomasValidos, - )); ?> - - renderPartial('_titulaciones', array( - 'model'=>$model, - 'titulacion'=>$titulacion, - 'titulacionesValidas'=>$titulacionesValidas, - )); ?> -

+
diff --git a/www/themes/intranet/views/candidato/_idiomas.php b/www/themes/intranet/views/candidato/_idiomas.php new file mode 100644 index 0000000..b0f2120 --- /dev/null +++ b/www/themes/intranet/views/candidato/_idiomas.php @@ -0,0 +1,81 @@ +array( + 'idioma'=>array( + 'type'=>'dropdownlist', + 'layout'=>'{input}', + 'class'=>'fullwidth', + 'items'=>array_merge( + array(''=>'-'), + CHtml::listData(Idioma::model()->findAll(), 'idioma', 'idioma') + ), + + ), + 'conversacion'=>array( + 'type'=>'dropdownlist', + 'layout'=>'{input}', + 'class'=>'fullwidth', + 'items'=>array_merge( + array(''=>'-'), + $idioma->OpcionesNivel + ), + ), + 'lectura_traduccion'=>array( + 'type'=>'dropdownlist', + 'layout'=>'{input}', + 'class'=>'fullwidth', + 'items'=>array_merge( + array(''=>'-'), + $idioma->OpcionesNivel + ), + ), + ), + ); +?> + +
+
+ + +
+ widget('ext.multimodelform.MultiModelForm',array( + 'id' => 'id_idioma', //the unique widget id + 'addItemText' => '', // no quiero mostrar el enlace de añadir + 'removeText' => 'Eliminar', + 'removeConfirm' => '¿Desea eliminar este idioma?', + 'tableHtmlOptions' => array( + 'class' => 'sTable2', + 'width' => '100%', + ), + 'tableView' => true, + 'formConfig' => $idiomaFormConfig, //the form configuration array + 'model' => $idioma, //instance of the form model + + //if submitted not empty from the controller, + //the form will be rendered with validation errors + 'validatedItems' => $idiomasValidos, + + //array of member instances loaded from db + 'data' => $idioma->findAll('candidato_id=:candidato_id', array(':candidato_id'=>$model->id)), + + 'removeHtmlOptions' => array( + 'class' => 'button plain', + ), + )); + ?> +
+ +
+
+
+
diff --git a/www/themes/intranet/views/candidato/_titulaciones.php b/www/themes/intranet/views/candidato/_titulaciones.php new file mode 100644 index 0000000..385f962 --- /dev/null +++ b/www/themes/intranet/views/candidato/_titulaciones.php @@ -0,0 +1,63 @@ +array( + 'titulacion'=>array( + 'type'=>'dropdownlist', + 'layout'=>'{input}', + 'class'=>'fullwidth', + 'items'=>array_merge( + array(''=>'-'), + CHtml::listData(Titulacion::model()->findAll(), 'titulacion', 'titulacion') + ), + + ), + ), + ); +?> + +
+
+ + +
+ widget('ext.multimodelform.MultiModelForm',array( + 'id' => 'id_titulacion', //the unique widget id + 'addItemText' => '', // no quiero mostrar el enlace de añadir + 'removeText' => 'Eliminar', + 'removeConfirm' => '¿Desea eliminar esta titulación?', + 'tableHtmlOptions' => array( + 'class' => 'sTable2 lf', + ), + 'tableView' => true, + 'formConfig' => $titulacionFormConfig, //the form configuration array + 'model' => $titulacion, //instance of the form model + + //if submitted not empty from the controller, + //the form will be rendered with validation errors + 'validatedItems' => $titulacionesValidas, + + //array of member instances loaded from db + 'data' => $titulacion->findAll('candidato_id=:candidato_id', array(':candidato_id'=>$model->id)), + + 'removeHtmlOptions' => array( + 'class' => 'button plain', + ), + )); + ?> +
+ +
+
+
+
+ diff --git a/www/themes/intranet/views/candidato/create.php b/www/themes/intranet/views/candidato/create.php index 731edb2..c34b7f0 100644 --- a/www/themes/intranet/views/candidato/create.php +++ b/www/themes/intranet/views/candidato/create.php @@ -14,11 +14,5 @@ $this->pageTitle='Nuevo candidato'; ?> renderPartial('_form', array( - 'model'=>$model, - 'idioma'=>$idioma, - 'titulacion'=>$titulacion, - 'idiomasValidos'=>$idiomasValidos, - 'titulacionesValidas'=>$titulacionesValidas, - )); -?> - + 'model'=>$model, + )); ?> \ No newline at end of file diff --git a/www/themes/intranet/views/candidato/index.php b/www/themes/intranet/views/candidato/index.php index 3b216ca..9853b7e 100644 --- a/www/themes/intranet/views/candidato/index.php +++ b/www/themes/intranet/views/candidato/index.php @@ -27,9 +27,6 @@ $('.search-form form').submit(function(){ $this->pageTitle='Gestión de candidatos'; ?> - - -

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done. diff --git a/www/themes/intranet/views/candidato/update.php b/www/themes/intranet/views/candidato/update.php index 1cead9d..3605992 100644 --- a/www/themes/intranet/views/candidato/update.php +++ b/www/themes/intranet/views/candidato/update.php @@ -11,17 +11,8 @@ $this->menu=array( array('label'=>'View Candidato', 'url'=>array('view', 'id'=>$model->id)), array('label'=>'Manage Candidato', 'url'=>array('admin')), ); - -$this->pageTitle='Modificar candidato ' . $model->nombre . ' ' . $model->apellidos; ?>

Update Candidato id; ?>

-renderPartial('_form', array( - 'model'=>$model, - 'idioma'=>$idioma, - 'titulacion'=>$titulacion, - 'idiomasValidos'=>$idiomasValidos, - 'titulacionesValidas'=>$titulacionesValidas, - )); -?> +renderPartial('_form', array('model'=>$model)); ?> \ No newline at end of file diff --git a/www/themes/intranet/views/layouts/default.php b/www/themes/intranet/views/layouts/default.php index 08eeb7d..bfc1fbe 100644 --- a/www/themes/intranet/views/layouts/default.php +++ b/www/themes/intranet/views/layouts/default.php @@ -16,13 +16,9 @@ -theme->baseUrl; - $cs = Yii::app()->getClientScript(); - $cs->registerCoreScript('jquery'); - $cs->registerScriptFile($base.'/js/plugins/jquery-ui-1.8.16.custom.min.js', CClientScript::POS_HEAD); - $cs->registerScriptFile($base.'/js/custom/general.js', CClientScript::POS_HEAD); -?> + + + <?php echo CHtml::encode($this->pageTitle); ?>