The browser has succesfully got a cookie once (how? when? i really can't tell. I just can tell that at a certain time, I realized that my website wasn't working anymore in chrome). Now chrome keeps showing : "This site has no cookies" in the developpment tool.
It works fine in explorer / firefox / safari, etc...
Since CI session library use cookies and all my pages use the session library, I really need to fix this.
Here is my config (database table exists, works, and normally cookie is encrypted)
$config['sess_cookie_name'] = '[mydomain]sessions';
$config['sess_expiration'] = 60*60*24*7; // one week
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = '[mydomain]sessions';
$config['sess_match_ip'] = TRUE;
$config['sess_match_useragent'] = FALSE;
$config['sess_time_to_update'] = 300;
Here is cookie config
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "[mydomain.com]";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;
When user logs in, it does :
$query = $this->db->get_where('user', array('id' => $logged_in_user_id));
$row = $query->row();
$this->session->set_userdata('user_id', $row->user_id);
redirect(base_url(), 'location');
When user logs out, it does :
$this->session->sess_destroy();
redirect(base_url(), 'location');
This is simple and i guess this is the way it should be done? any idea why it does not work in chrome but works perfectly in firefox / explorer / safari?