I am having an issue with my Log In function; it keeps redirecting to the login page after a succesfull login page even tho I specified other wise, this is the function:
public function actionLogin() {
$model = new LoginForm;
// if it is ajax validation request
if (isset($_POST['ajax']) && $_POST['ajax'] === 'login-form') {
echo CActiveForm::validate($model);
Yii::app()->end();
}
// collect user input data
if (isset($_POST['LoginForm'])) {
$model->attributes = $_POST['LoginForm'];
// validate user input and redirect to the previous page if valid
if ($model->validate() && $model->login())
$this->redirect(array('/news/admin'));
}
// display the login form
$this->render('login', array('model' => $model));
}
Can anyone help me understnad whats going on? I have been going around this for the last 6 hours and I am sure its pretty simple!!
Yii::app()->user->login($identity)inside that function. – Alex Feb 12 at 8:56IUserIdentitynot just a bunch of attributes. – Alex Feb 12 at 11:50