I've had several customers call me and say that they add to cart and then their cart remains empty. I can't reproduce this on my end. Is there a possible explanation for this? Thank you!
I've had several customers call me and say that they add to cart and then their cart remains empty. I can't reproduce this on my end. Is there a possible explanation for this? Thank you!
This drove me crazy for a couple of months. Turned out to be one of the cookies set by the server running the old version was not compatible.
If you have the user delete the cookies set by your server, they will be able to log in fine and add items to shopping cart.
I got tired of explaining how to delete cookies from various browsers and used a little script to erase the cookies, and then redirect the user back to the home page.
Here is that code:
Hope that helps someone<?php
$domain = 'www.YOURDOMAINNAME.com';
$deleteExpiration = time() - 60*60*24*365*10; // 10 years ago
foreach (array_keys($_COOKIE) as $cookie) {
setcookie($cookie, 0, $deleteExpiration, '/', $domain);
}
$domain = 'YOURDOMAINNAME.com';
$deleteExpiration = time() - 60*60*24*365*10; // 10 years ago
foreach (array_keys($_COOKIE) as $cookie) {
setcookie($cookie, 0, $deleteExpiration, '/', $domain);
}
?>
<html
<head>
<meta http-equiv="Refresh" content="5; url=http://YOURDOMAINNAME.com/" />
</head>
<body>
All of the old cookies have been removed!
<p>
You may close your browser, and re-open it to be sure all cookies are reset
<P>
or you may return to the site: <a href="http://YOURDOMAINNAME.com">YOURDOMAINNAME.com</a>
</body>
</html>
Clay
Where do you place this script?
Hi,
We at targetsportsusa.com are experiencing the same issue with return customers trying to add items into the shopping cart, and the cart being empty.
My level of knowledge of working with scripts is very low. Can someone please explain to me in simple steps how to fix this issue. I would greatly appreciate it.
Thank you in advance.
Diana Del
We are having the same issue www.lonnys.com and I just upgraded to the Service Pack for 9.0.1.3 and it didn't help.
Is there a fix for this yet? We get customers calling in frequently who can't add anything to their cart.