Magento - Reset the admin password
Hi, if u getting trouble in login from admin side because of password then no worry u can reset it simply.
SELECT * FROM admin_user;
above query should retrieve the admin user data. here find the user name name to which u want to reset password. and apply following query
UPDATE admin_user SET password=CONCAT(MD5('admin123')) WHERE username='admin';
u can also do this in mysql query browser
SELECT * FROM admin_user;
above query should retrieve the admin user data. here find the user name name to which u want to reset password. and apply following query
UPDATE admin_user SET password=CONCAT(MD5('admin123')) WHERE username='admin';
u can also do this in mysql query browser
Comments
Post a Comment