Skip to content

Files

Latest commit

author
Evgeniy
Oct 5, 2015
3b9254f · Oct 5, 2015

History

History
17 lines (12 loc) · 478 Bytes

troubleshooting.md

File metadata and controls

17 lines (12 loc) · 478 Bytes

Troubleshooting

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',
],