对于magento提交订单提示Please make sure your passwords match的一点探讨

场景:Magento1.9版本一页支付提交付款的时候,提示Please make sure your passwords match
这是在Magento 1.9中遇到的一个常见问题。当用户注册时(在结帐过程中或在创建帐户链接时都不重要),即使密码重新输入正确,用户仍然会得到密码不匹配错误。
表单验证并不表示匹配错误,但是一旦用户单击Register,就会返回失配错误。

解决方案
复制文件 /app/code/core/Mage/Customer/Model/Customer.php 到app/code/local/Mage/Customer/Model/Customer.php并且打开编辑. 大约在 845 行
替换

$confirmation = $this->getPasswordConfirmation();

$confirmation = $this->getConfirmation() ? $this->getConfirmation() : $this->getPasswordConfirmation();

保存并在结帐过程中再次尝试注册。
即使是在应用程序/代码/本地文件中,也可以编写一个重写,而不是编辑核心文件。

你可能感兴趣的:(Magento开发,magento,支付,passwords)