Magento 1.9.2.2 注册失败 无提示无跳转

由于版本的更新而主题文件没更新导致注册页面无法正常注册,也没有提示也没有跳转,只是刷新了一下页面。

解决办法:

当前主题文件里找到:

template/customer/form/register.phtml

或者:

template/persistent/customer/form/register.phtml

在 <form>…</form> 里添加:

<input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />

保存后可以正常注册了!

相关文章