Cannot Login 302 status appear in console log

Hi To All,

We used YII 1.x framework.

We have created login method using access control

public function filters()

{





    return array('accessControl');





}

public function accessRules()

{








    return array(





        array('allow',





            'actions'=>array('create','captcha','login','logout','confirm','password_reissue'),





            'users'=>array('*'),





        ),





        array('allow',





            'actions'=>array('create','update','confirm','index','bid','deposit','profile'),





            'users'=>array('@'),





        ),





        array('deny',





            'users'=>array('*'),





        ),





    );





}

But we have login page submit. Then not move to dashboard create page. It 302 method showed in the console log.

Server configuration PHP version 5.5.9

Please help…

Regards,

Bala