Welcome Guest, Not a member yet? Register   Sign In
1 user account can log on at a time
#2

[eluser]brianw1975[/eluser]
Look in application/config/config.php

Code:
$config['sess_cookie_name']     = 'ci_session';
$config['sess_expiration']    = 7200;
$config['sess_encrypt_cookie']    = FALSE;
$config['sess_use_database']    = FALSE;
$config['sess_table_name']    = 'ci_sessions';
$config['sess_match_ip']    = FALSE;
$config['sess_match_useragent']    = TRUE;
$config['sess_time_to_update']     = 300;

You can try changing $config['sess_match_ip'] = FALSE; to TRUE, but judging how effective that is would be tough.

Did you do a search on the forums? This same question was asked just a couple of days ago.


Messages In This Thread
1 user account can log on at a time - by El Forum - 09-05-2009, 09:18 AM
1 user account can log on at a time - by El Forum - 09-05-2009, 11:43 AM
1 user account can log on at a time - by El Forum - 09-07-2009, 08:39 AM
1 user account can log on at a time - by El Forum - 09-07-2009, 08:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB