some PHP server have a bug with setting session contents then using the header() function to redirect.
to work around this bug, find the following code on the cart page and on the pages wi the add to cart buttons:
header("Location: ".$mindblower5->redirStr);
and change it to:
session_commit();
header("Location: ".$mindblower5->redirStr);