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

Comments

Popular posts from this blog

Magento Reindexing problem - take too long time

Magento Navigation menu of CMS pages

Wishlist with wished features - Add items into wishlist with options and allow to add certain amount of items into wishlist box.