Changes
Title
unchanged
Common Yii questions
Category
unchanged
FAQs
Yii version
unchanged
Tags
unchanged
yii, common, questions, beginners
Content
changed
[...]
return false;
}
```
if you don't want it to validate just do **$method->save(false);**
Other possible reason is that "beforeSave" method (if overridden) doesn't return "true".
<hr/>
### How to connect to database in controller?
#### Answer:
The best approach is to set db connection in your main.php config.[...]