Hi, on my live domain for some reason my codeigniter session creates one for http://www.example.co.nz and one for example.co.nz
Why is that it should only create one lot of sessions.
Not sure what cause this issue because of the two sessions I can not echo my sessions.
Why is that it should only create one lot of sessions.
Not sure what cause this issue because of the two sessions I can not echo my sessions.
PHP Code:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_sessions';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = APPPATH . 'cache/sessions/';
$config['sess_match_ip'] = TRUE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = TRUE;
PHP Code:
$config['cookie_prefix'] = '';
$config['cookie_domain'] = '';
$config['cookie_path'] = '/';
$config['cookie_secure'] = FALSE;
$config['cookie_httponly'] = FALSE;