sess_expire_on_close not working

前端 未结 3 1784
我寻月下人不归
我寻月下人不归 2021-01-13 22:22

I have a problem..in $config[\'sess_expire_on_close\'] = TRUE; when i close the browser..the session still save in the database. and i can still see the data

3条回答
  •  终归单人心
    2021-01-13 22:49

    TRY to configure application/config/config.php

    $config['sess_expiration'] = 0;
    $config['sess_expire_on_close'] = TRUE;

    THIS should be OK

提交回复
热议问题