Welcome Guest, Not a member yet? Register   Sign In
[Solved] Codeigniter sessions Question
#1

(This post was last modified: 10-30-2017, 10:49 PM by wolfgang1983.)

Hi, on my live domain for some reason my codeigniter session creates one for 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.


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
There's only one rule - please don't tell anyone to go and read the manual.  Sometimes the manual just SUCKS!
Reply
#2

(This post was last modified: 10-30-2017, 10:50 PM by wolfgang1983.)

I think I found the solution need to put cookie domain


PHP Code:
$config['cookie_prefix'] = '';
$config['cookie_domain'] = '.example.co.nz';
$config['cookie_path'] = '/';
$config['cookie_secure'] = FALSE;
$config['cookie_httponly'] = FALSE

Seems to work now
There's only one rule - please don't tell anyone to go and read the manual.  Sometimes the manual just SUCKS!
Reply




Theme © iAndrew 2016 - Forum software by © MyBB