![]() |
session not closed after close the browser. - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: session not closed after close the browser. (/showthread.php?tid=71156) |
session not closed after close the browser. - kvanaraj - 07-12-2018 session not closed after close the browser. when i reopen the url,the session is active. i am string the sessions. In config file *********** config['sess_driver'] = 'files'; $config['sess_cookie_name'] = 'ci_sessions'; $config['sess_expiration'] = 7200; $config['sess_match_ip'] = FALSE; $config['sess_time_to_update'] = 300; $config['sess_regenerate_destroy'] = TRUE; $config['sess_expire_on_close'] = TRUE; $config['sess_encrypt_cookie'] = FALSE; RE: session not closed after close the browser. - Pertti - 07-13-2018 Did you close all the browser windows, or just one tab? Cookies are kept unless you close all the windows: https://stackoverflow.com/a/805900 RE: session not closed after close the browser. - InsiteFX - 07-13-2018 Also you may need to close and destroy the session. PHP Code: $this->session->unset_userdata('some_name'); |