I have a problem .. in $config['sess_expire_on_close'] = TRUE;
when I close the browser ... the session is still stored in the database. and I still see the data in the column user_data.
config.php
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 2400;
$config['sess_expire_on_close'] = TRUE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
Need help .. the goal is to show all online users.
I am using CI version 2.1.3
source
share