标签: magento csv import passwords
我需要通过CSV导入将大约15.000个用户导入Magento。在CSV文件中,密码以纯文本格式存储。如果我在magento中导入此纯文本密码,则登录不起作用(错误:用户名或密码错误)
在Magento中使用纯文本密码导入客户的正确方法是什么?
答案 0 :(得分:0)
$customer->setData('password', {clear password})
或
$customer->setPassword({clear password})
将正确编码密码。