Magento – Admin password using SQL / Change Database

Today we wanted to change the password of the admin of our Magento store and used the following command, which e.g.. is entered in the phpMyAdmin SQL, after you select the database: UPDATE `admin_user` SET `password` = MD5(‘123456’) WHERE `username` = ‘admin’; “admin-user” here refers to the table in which the users are registered. this is…

Magento – Passwort Reset / Renewal does not work after click in email transaction “… controllers / AccountController.php “

Should it at Magento (In our case it was version 1.6.1.0) in the following error Fatal error come: Call to a member function setCustomerId() on a non-object in XYZ/public_html/app/code/core/Mage/Customer/controllers/AccountController.php on line 587 This was most likely the password reset process or. trying to get a new password. The new security feature, that the password is not directly…