浏览文章
文章信息
Magento2 We can't share customer accounts globally when the accounts share identical email addresses on more than one website.
14837
1、原因
不同的站中存在重复email账户。账户数据不能合并,所以Magento给出此提示。
2、解决账户email重复
SELECT * FROM customer_entity group by email having count(email) > 1;查找出重复email,到Magento的管理后台进行选择删除,看你的需求情况,只保留一个,或者清空都可以。