Welcome Guest, Not a member yet? Register   Sign In
Shopping Cart Integration
#26

[eluser]waykay[/eluser]
If you are going to use the CI cart and session class, then you REALLY need to be aware of the potential session problems in IE6. IE6 (and some other versions of IE aparently) don't like session names with an underscore (unfortunately CI's default session name is ci_session). The problem with sessions and the cart class seemed to only happen on a windows server, my apache was fine with IE6, strange??

I searched for two days and luckily there i an easy fix! You need to update 2 files. all in stances of var $sess_cookie_name = 'ci_session'; will need to be 'cisession' (you will alos need to update your ci_session mysql table to cisession)

System/application/config/config.php
$config['sess_cookie_name'] = 'cisession';// default is ci_session
$config['sess_expiration'] = 7200;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = 'cisessions';// default is ci_session
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;


System/libraries/Session.php
var $sess_cookie_name = 'cisession'; // default is ci_session

ALSO VERY IMPORTANT when using the CART class

when doing add to cart: the name must not have funny characters like quotes or brackets. Otherwise it won't add to cart


Messages In This Thread
Shopping Cart Integration - by El Forum - 01-14-2008, 01:06 PM
Shopping Cart Integration - by El Forum - 01-14-2008, 01:27 PM
Shopping Cart Integration - by El Forum - 01-14-2008, 01:57 PM
Shopping Cart Integration - by El Forum - 01-14-2008, 02:32 PM
Shopping Cart Integration - by El Forum - 01-14-2008, 07:56 PM
Shopping Cart Integration - by El Forum - 01-14-2008, 09:51 PM
Shopping Cart Integration - by El Forum - 01-15-2008, 03:37 AM
Shopping Cart Integration - by El Forum - 01-15-2008, 01:40 PM
Shopping Cart Integration - by El Forum - 01-15-2008, 05:22 PM
Shopping Cart Integration - by El Forum - 01-18-2008, 03:42 PM
Shopping Cart Integration - by El Forum - 01-20-2008, 05:50 PM
Shopping Cart Integration - by El Forum - 01-26-2008, 01:49 PM
Shopping Cart Integration - by El Forum - 02-22-2008, 05:59 PM
Shopping Cart Integration - by El Forum - 03-26-2009, 12:39 PM
Shopping Cart Integration - by El Forum - 05-05-2009, 02:57 AM
Shopping Cart Integration - by El Forum - 05-05-2009, 07:39 AM
Shopping Cart Integration - by El Forum - 05-06-2009, 10:10 AM
Shopping Cart Integration - by El Forum - 05-06-2009, 11:16 AM
Shopping Cart Integration - by El Forum - 05-06-2009, 10:23 PM
Shopping Cart Integration - by El Forum - 05-09-2009, 04:08 PM
Shopping Cart Integration - by El Forum - 05-09-2009, 07:59 PM
Shopping Cart Integration - by El Forum - 06-18-2009, 12:20 AM
Shopping Cart Integration - by El Forum - 06-18-2009, 01:51 AM
Shopping Cart Integration - by El Forum - 10-01-2009, 09:02 PM
Shopping Cart Integration - by El Forum - 12-09-2009, 01:58 PM
Shopping Cart Integration - by El Forum - 02-16-2010, 10:13 AM
Shopping Cart Integration - by El Forum - 02-17-2010, 02:16 AM
Shopping Cart Integration - by El Forum - 03-10-2010, 08:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB