Reset lost admin password in osCommerce RC1+
By Ryan
- Published on
Sharing
Forgot your admin password in the newer versions of osCommerce? Either of these two fixes will reset your password to "pass".
- Get into your database with something like phpMyAdmin
- Go into the "administrators" table
- Edit the record there for the user "admin"
- Replace the contents of the password with this:
6cdd7c57450225fac77427f5962bb726:40
Or you could just run this query, if you're database is setup the standard way:
UPDATE `administrators` SET `user_password` = '6cdd7c57450225fac77427f5962bb726:40' WHERE `id` =1 LIMIT 1 ;