Answer the question
In order to leave comments, you need to log in
Why is the user not logged out Yii2?
Set the 'user' component in the configuration
...
'user' => [
'identityClass' => 'app\models\auth\User',
'enableAutoLogin' => true,
'loginUrl' => '/login',
'autoRenewCookie' => false,
]
...
Yii::$app->user->login($user, 3600*24);
Answer the question
In order to leave comments, you need to log in
'identityClass' => 'app\models\auth\User',
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question