3
當我使用自動重定向登錄後功能會出現此錯誤:如何在yii中註冊後自動登錄和重定向?
session_regenerate_id():Session對象銷燬不合格
誰能HEP我嗎?
<?php
public function actionRegister()
{
$model = new UserProfileForm;
$this->performAjaxValidation($model,'userProfile-form');
if(isset($_POST['UserProfileForm']))
{
$model->attributes = $_POST['UserProfileForm'];
if ($model->save())
{
$u = new LoginForm;
$u->username = $model->username;
$u->password = $model->password;
$u->login();
$this->redirect(Yii::app()->user->returnUrl);
}
}
$this->render('register',array('model'=>$model,));
}
?>
你有這個問題與Firefox? – msoa
@msoa是的我有這個問題與Firefox! – sj59