简体   繁体   中英

yii2 session timeout not working

 'session' => [
        'name' => 'test',
        'timeout' => 20,
    ],

I have set session timeout to be 20 second in my configuration. But session is still active after 20 second.

You can set property authTimeout in user component:

'user' => [
        'identityClass'   => 'common\models\User',
        'enableAutoLogin' => false,
        'authTimeout'     => 20
],

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM