2016-08-20 1 views
0

, 나는 프론트 엔드에서 고객 passsword를 재설정 할 수 없습니다이 후, 너무 : 나는 비밀번호 분실 버튼을 눌러젠토 1.9.24 업그레이드 - 암호 재설정 문제를 내가 마지막 버전으로 내 젠토 저장소를 업그레이드

  1. 내 이메일 암호를 누를
  2. 전체
  3. 내가 "암호 재설정"버튼을 눌러 수신 된 이메일에서
  4. 를 제출하고 난 가게로 리디렉션, 그리고 난이 오류가 있습니다 암호 재설정 링크가 만료되었습니다.

어떻게 해결할 수 있습니까?

+0

다음을 참조하십시오. http://magento.stackexchange.com/questions/84605/magento-reset-password-link-not-working-after-upgrade –

+0

서식 파일에서 customer/form/forgotpassword.phtml 파일을 참조하십시오. 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에서 아무것도 볼 수 없지만 두 가지 오류가 있습니다. 알림 : 정의되지 않은 색인 :/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