Magento自动登录偶尔会失败

时间:2012-10-23 16:14:33

标签: login magento-1.4

在将产品添加到购物车之前,我们使用以下代码自动将用户登录到Magento。

有时,下面的代码有效,但产品没有添加到购物车,因为登录不是“坚持”。会议似乎是问题所在。如果我们让我们的网络服务器在不重新启动的情况下保持长时间,Magento似乎“忘记”它创建的会话,并且下面的代码失败,因为该产品没有向购物车添加任何内容。

// This call is actually in a class called Login_model, function called dual_login
// It is shown below.
$lm = new Login_model();
$ret = $lm ->dual_login($Username, $Password);
if ($ret['result'] = 'SUCCESS') {
    $product_id = Mage::getModel("catalog/product") -> getIdBySku("$sku");
    $product = Mage::getModel("catalog/product") -> load($product_id);          
    $session = Mage::getSingleton("core/session", array("name" => "frontend"));
    $cart = Mage::helper("checkout/cart") -> getCart();
    $cart -> addProduct($product, 1);
    $session -> setLastAddedProductId($product -> getId());
    $session -> setCartWasUpdated(true);
    $cart -> save();          
    $cart_url = $site_url_https . "store/checkout/cart";
    header("Location: " . $cart_url);
}

// 
// dual_login code below
// 
Mage::getSingleton('core/session', array('name'=>'frontend'));
$customer = Mage::getModel('customer/customer');
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
$customer->loadByEmail($Email);
$session = Mage::getSingleton('customer/session');
$session->login($Email,$Password);
$session->setCustomerAsLoggedIn($session->getCustomer());
// 
// How can I determine here if the login was actually successful
// and the product can be added to the cart?
// 
$ret['result'] = 'SUCCESS';

如果我添加对$ session-> isLoggedIn()的调用,则返回true但产品仍未添加到购物车。

什么可以导致Magento这样做以及我如何能够测试它以便我可以得到通知它正在发生?

1 个答案:

答案 0 :(得分:1)

您的代码中唯一的线索是您正在填充客户模型,但您没有使用它来填充会话单例。你真的应该吗

$session->setCustomerAsLoggedIn($session->getCustomer());

而不是

$session->setCustomerAsLoggedIn($customer);