I am working with Yii2 and just can't separate users. My app has two modules.
This is my config from web.php:
'frontendUser' => [
'class' => 'yii\web\User',
'identityClass' => 'app\models\User',
'enableAutoLogin' => false,
'loginUrl' => ['frontend/default/index'],
],
'user' => [
'identityClass' => 'app\models\Owner',
'enableAutoLogin' => false,
'loginUrl' => ['arena/default/login'],
],
The problem is when I log in with one of the above, both the Yii::$app->user->isGuest and Yii::$app->frontendUser->isGuest returns true, and became logged in.
I found solutions only for the advanced template...
Thanks,
You'll need to configure somewhat more than what you did.
As it is now, they are both saving in the same variables in your session and they are both using the same cookie.
This directs the frontend user to use different variables to store/retrieve data from, effectively separating it into another user.
Take a look at the
yii\web\User
documentation for an explanation.