w-6ren">
gpt4 book ai didi

magento - 如何在 Magento 中以编程方式确认用户?

转载 作者:行者123 更新时间:2023-12-02 20:42:01 26 4
gpt4 key购买 nike

我正在编写一个脚本,自动将用户导入到 magento 中。这是一个代码片段:

$customer = Mage::getModel("customer/customer");
$customer->website_id = $websiteId;
$customer->setStore($store);

$customer->loadByEmail($riga[10]);

echo "Importo ".$data[0]."\n";
echo " email :".$data[10]."\n";

$customer->setTaxvat($data[7]);
$customer->lastname = $lastname;
$customer->email = $data[10];
$customer->password_hash = md5($data[0]);

$customer->save();

问题是用户被创建为“未确认”,而我希望他们被“确认”。

我尝试过:

$customer->setConfirmation('1');

保存之前,但没有成功。有人知道如何确认用户吗?

谢谢!

最佳答案

我认为setConfirmation()正在等待确认键。尝试传递 null 我认为它会起作用吗?

只是为了澄清:

$customer->save();
$customer->setConfirmation(null);
$customer->save();

应强制确认。

关于magento - 如何在 Magento 中以编程方式确认用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3417049/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com