magento 2中的登录名和密码无效

时间:2017-06-28 12:57:17

标签: php magento magento2

使用迁移数据工具将magento 1.9.x升级到2.0.x. 实际结果

当我尝试使用任何客户电子邮件和密码登录时,我收到了“无效的登录名和密码。”,但在旧商店中,同样的客户工作正常。

当我创建新用户并且新客户完美登录时。

我也改变了 关键不同。 vi magento1 / app / etc / local.xml vi magento2 / app / etc / env.php

我已经通过命令行完成了所有清除缓存和重新索引 请帮帮我,这对我来说是一个非常困难的问题

2 个答案:

答案 0 :(得分:0)

你的答案就在这里。您必须传递表单密钥。这是2.0版本中的新功能。请参阅该链接:https://magento.stackexchange.com/questions/55477/login-problems-after-update-to-magento-1-9

答案 1 :(得分:0)

将M1迁移到M2后 旧客户登录错误 请在数据库中更新此查询

UPDATE customer_entity_varchar,customer_entity SET customer_entity_varchar.value = customer_entity.password_hash WHERE customer_entity_varchar.entity_id = customer_entity.entity_id and customer_entity_varchar.attribute_id =' 12'

attribute_id表示customer_entity_varchar表中的密码类型值id,请参见下面的屏幕截图

主要问题旧密码值和新密码值在magneto2 enter image description here

中不匹配

enter image description here