Welcome Guest, Not a member yet? Register   Sign In
Internet explorer problem sessions
#7

[eluser]InsiteFX[/eluser]
If you do a redirect then you should use:
Code:
$this->session->keep_flashdata();

Flashdata is only good for one time unless you use keep_flashdata..

Also make sure your cookie name is not ci_session it will fail with the under-score.

Code:
$config['sess_cookie_name']    = 'cisession';
$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;

InsiteFX


Messages In This Thread
Internet explorer problem sessions - by El Forum - 03-20-2011, 04:32 PM
Internet explorer problem sessions - by El Forum - 03-20-2011, 04:34 PM
Internet explorer problem sessions - by El Forum - 03-20-2011, 11:29 PM
Internet explorer problem sessions - by El Forum - 03-21-2011, 02:14 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 04:53 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 05:47 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 06:03 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 06:14 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 06:26 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 06:42 AM
Internet explorer problem sessions - by El Forum - 03-21-2011, 06:55 AM
Internet explorer problem sessions - by El Forum - 01-27-2012, 10:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB