Troubleshooting

October 5, 2015 ยท View on GitHub

This page provides a list of common problems and the ways of solving them.

After logging in I'm redirected back without any sign of being logged in

You probably haven't removed user from component section of your application.

If you need to have custom user component, then you should configure it to use Yii2-user identity class:

'user' => [
    'class' => 'app\components\User',
    'identityClass' => 'dektrium\user\models\User',
],