Skip to content

Instantly share code, notes, and snippets.

@bouassaba
Created November 24, 2014 08:32
Show Gist options
  • Save bouassaba/5ccd37f02fba5f4d9c5f to your computer and use it in GitHub Desktop.
Save bouassaba/5ccd37f02fba5f4d9c5f to your computer and use it in GitHub Desktop.
Magento, change admin password
SELECT * FROM admin_user;
UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment