Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

share|improve this question
I think you forgot to post your config settings. You'll probably also need to post any session code you have! Also, what does "The session is not working" mean. You will need to tell us more about the problem, what it is, and if there are any errors? – Jeemusu Mar 12 at 7:10
this is my config setting-----$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; – Debendra Samal Mar 12 at 7:35
Why tagged with facebook? As Jeenmusu said, please explain what and how is this not working. – complex857 Mar 12 at 7:44
@Debendra, unless you actually state what the problem is, no one can help you. "The session is not working" is not enough, especially as you include none of your controller or model code. – Jeemusu Mar 12 at 7:46
If we are talking about a canvas/page tab app here, it is most likely the age-old third party cookies problem again. – CBroe Mar 12 at 8:16
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.