2016-08-20 3 views
0

обновить свой Magento магазин до последней версии, после этого я не могу сбросить passsword клиента в веб-интерфейсе, так:Magento 1.9.24 обновление - сброс пароля выпуск

  1. жму на кнопку Забыли пароль?
  2. в комплекте с моей электронной почты пароль и нажмите Отправить
  3. в полученном по электронной почте я нажмите на кнопку «сБРОС пАРОЛЯ» и я перенаправлен в магазин и у меня есть эта ошибка: Ваша ссылка для сброса пароля истек.

Как я могу это решить?

+0

См. Это http://magento.stackexchange.com/questions/84605/magento-reset-password-link-not-working-after-upgrade –

+0

в вашем шаблоне Клиент/форма/забыл пароль.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 в строке 166 Предупреждение: Недействительный аргумент, предоставленный foreach() в/home/public_html/app/code/core/Mage/Page/Block/Html /Head.php в строке 166 – Robert

Смежные вопросы