Quantcast
Channel: Yii Framework Forum
Viewing all articles
Browse latest Browse all 18717

Model Validation Not Working

$
0
0
I have following action to handle register
 $model=new User('checkout');
        if(!empty($_POST['User'])){
            
            $model->attributes = $_POST['User'];
            //echo '<pre>';echo $model->username;die;
            $model->validate();
           echo  $model->getErrors(); die;
        }
        $this->render('register',array('model'=>$model));


and model rules are
array('username', 'required', 'on' => 'checkout','message' => Yii::t('validation', 'Email can not be blank.')),
            array('username', 'unique', 'on' => 'checkout', 'message' => Yii::t('validation', 'Email has already been taken.')),
            
            array('username', 'unique'),
            array('passwordConfirm', 'required', 'on' => 'checkout','message' => Yii::t('validation', 'Confirm password can not be blank')),
            array('username', 'email', 'message' => Yii::t('validation', 'Invalid username/email format ')),
            //comapre passwords


Form post data is
Array
(
    [fname] => hemc
    [lname] => k
    [username] => demo
    [dob] => 
    [password] => 
    [passwordConfirm] => 
    [agree] => 0
)


Problem -:there is no error while validating model.

Viewing all articles
Browse latest Browse all 18717

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>