php - Session issues in codeigniter -


i using codeigniter. can't store values in session because whenever refresh page session id changing.

$config['sess_cookie_name']         = 'ci_session'; $config['sess_expiration']          = 7200; $config['sess_expire_on_close']     = true; $config['sess_encrypt_cookie']      = true; $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; 


Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -