2016-08-20 13 views
0

パスワードの問題をリセットします。Magentoの1.9.24アップグレード - この後私は、フロントエンドで顧客passswordをリセットすることはできません私は、最後のバージョンに私のMagentoのストアをアップグレード

  1. 私は忘れたパスワード]ボタンを押してください私の電子メールのパスワードとプレスとの完全な
  2. 私は、「パスワードをリセット」ボタンを押すと、私は店にリダイレクトしていると私はこのエラーを持っている受信した電子メールで
  3. を提出してください:あなたのパスワードリセットリンクは有効期限が切れています。

どうすれば解決できますか?

+0

これを参照してください:http://magento.stackexchange.com/questions/84605/magento-reset-password-link-not-working-after-upgrade –

+0

あなたのテンプレートのcustomer/form/forgotpassword.phtmlファイル<?php echo $ this-> getBlockHtml( 'formkey');をチェックしてください。 ?> –

+0

も参照してください。http://www.dudesquare.nl/blog/2015/11/03/reset-password-blank-page-magento-1-9-2-2/ 解決策を得ることができます。 –

答えて

1
I had the same, but a second error message appeared 
which said that a required field is not filled out. 
In general: when anything goes wrong when saving the customer, 
the said error message "Your password reset link has expired" shows up. 
So, pay attention to any additional error messages showing up or in your log files. 

If you want to find out what's happening in detail, 
go to the file 
"app/code/core/Mage/Customer/controllers/AccountController.php" 
and modify the method resetPasswordPostAction temporarily. 
Inside the } catch (Exception $exception) { directive, add Mage::logException($e);. 
After you have seen the error again, 
you can find the real error message in the file var/log/exception.log. 

参考リンク:https://magento.stackexchange.com/questions/84605/magento-reset-password-link-not-working-after-upgrade

が、これはあなたを助けることを願っています!

+0

こんにちは、ありがとう、私はこれを行うが、私はvar/log/exception.logに何も見ることができません、私は2つのエラーがあります: 注意:未定義のインデックス:/ home/public_html/app /code/core/Mage/Page/Block/Html/Head.php on line 166 警告:/ home/public_html/app/code/core/Mage/Page/Block/Htmlのforeach()に無効な引数が指定されています。 /Head.php on line 166 – Robert

関連する問題