![]() |
[SOLVED] - SESSION: [function.serialize]: Node no longer exists - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: [SOLVED] - SESSION: [function.serialize]: Node no longer exists (/showthread.php?tid=12129) |
[SOLVED] - SESSION: [function.serialize]: Node no longer exists - El Forum - 10-07-2008 [eluser]mindprojects[/eluser] Hi guys,i'm using CI 1.6.3 under XAMPP(win).I have this error about sessions,when i'm going back from a payment gateway.My app is running locally now. Code: A PHP Error was encountered I found this: http://ellislab.com/forums/viewthread/87609/ but couldn't help me. My current config is: $config['sess_cookie_name'] = 'ci_session'; $config['sess_expiration'] = 0; $config['sess_encrypt_cookie'] = FALSE; $config['sess_use_database'] = FALSE; $config['sess_table_name'] = 'ci_sessions'; $config['sess_match_ip'] = FALSE; $config['sess_match_useragent'] = FALSE; $config['sess_time_to_update'] = 3000; $config['cookie_prefix'] = ""; $config['cookie_domain'] = ""; $config['cookie_path'] = "/backoffice"; Any solution???Thanks [SOLVED] - SESSION: [function.serialize]: Node no longer exists - El Forum - 10-07-2008 [eluser]mindprojects[/eluser] Help please!!! [SOLVED] - SESSION: [function.serialize]: Node no longer exists - El Forum - 10-08-2008 [eluser]mindprojects[/eluser] Hi All! I found that i was getting an empty GET value from the payment gateway,causing an hidden undefined variable warning and consequently problems with sessions. So while processing GET parameters replaced this: Code: foreach($_GET as $key=>$val) with this: Code: foreach($_GET as $key=>$val) Thanks. |