-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SessionHistory don't work #489
Comments
Have you checked |
No errors. |
The session class is loaded into the bootstrapping phase. Try with XDebug to understand why it's not writing data to db. |
I have the same error, I configured it exactly as instructed but the database has no records written |
same issue, in log only deleting old session and didnt create new session history entity, any suggestion? |
i found fix, in Da\User\Service\SessionHistory\SessionHistoryDecorator::class |
What steps will reproduce the problem?
I have override classes
'classMap' => [
'User' => \common\models\User::class,
'Profile' => \common\models\Profile::class,
'RegistrationForm' => \common\forms\RegistrationForm::class,
'LoginForm' => \common\forms\LoginForm::class,
'Token' => \common\models\Token::class,
'MailService' => \common\components\user\Service\MailService::class,
],
'controllerMap' => [
'registration' => 'frontend\controllers\user\RegistrationController',
'security' => 'frontend\controllers\user\SecurityController',
'profile' => 'frontend\controllers\user\ProfileController',
'settings' => 'frontend\controllers\user\SettingsController',
'admin' => 'frontend\controllers\user\AdminController',
],
SessionHistory settings configure like in docs
But on the page SessionHistory empty
May be need some changes in the override actions or functions. where module save data about session in to the database?
The text was updated successfully, but these errors were encountered: