In my facebook app I am using Codeigniter and I'm trying to store the session in the database. When the user first visits the app the session_id, ip_address, user_agent, last_activity, user_data are all stored in the database, but the session is not working. $config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$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;
This is my config file. is there any wrong ?
$userData = array(
'facebook_id' => $data['id'],
'user_name' => $data['name']
);
$this->session->set_userdata($userData);
$this->load->model('user');
$chk_fb_id=$this->user->chkFbid($fb_id);
if($chk_fb_id !=1){
if(!empty($data)){
$ds=$this->user->insertUserDetails($data,$access_token);
//print_r($ds);
}
}
This is my controller which i have used.I set $userData to session.which contain facebook_id and user_name.