Skip to content

Instantly share code, notes, and snippets.

@DivaVocals
Created January 12, 2015 07:52
Show Gist options
  • Save DivaVocals/032a440d1604e5243835 to your computer and use it in GitHub Desktop.
Save DivaVocals/032a440d1604e5243835 to your computer and use it in GitHub Desktop.
Change or Reset Zen Cart Password
# See this Zen Cart FAQ: http://www.zen-cart.com/content.php?44-how-do-i-change-or-reset-my-admin-password-%28i-lost-it%29
DELETE FROM admin WHERE admin_name = 'Admin';
INSERT INTO admin (admin_name, admin_email, admin_pass, admin_profile)
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment