Hi, I have a warning line in the log when inserting and updating.
2013/02/05 16:43:57 [warning] [application] Failed to set unsafe attribute "logo" of "Model".
Rules for the model
public function rules() { return array( array('typeId, cityId, new', 'numerical', 'integerOnly'=>true), array('title, url', 'length', 'max'=>255), array('content, created, deleted', 'safe'), array('url', 'url', 'on'=>'insert, update'), array('typeId, cityId, title', 'required', 'on'=>'insert, update'), array('logo', 'file', 'types'=>'jpg, jpeg, gif, png', 'maxSize'=>100*1024, 'allowEmpty'=>true, 'tooLarge'=>'{attribute} is too large to be uploaded. Maximum size is 100kB.'), array('id, typeId, cityId, title, content, new, url, logo', 'safe', 'on'=>'search'), ); }
I donβt understand why I understand it. I have a rule for the logo field and allow it for it