Here is a piece of code, no warnings are issued. In the model there is a field count. Not saved. I do not understand why.
$file=Files::model()->findByPk($id); if($file == null) { throw new CHttpException(404,'Не найдено'); } $count = $file->count; $count++; $file->count = $count; $file->save(); $this->redirect(Yii::app()->request->hostInfo."/".$file->path);