Data about users and passwords opencart stores in the database in the table user.

Therefore, to change the password to go to the database management interface PhpMyAdmin and choose a database that is used in OpenCart.

If you forget the name of the database used for the site, you can look in the file config.php, field DB_DATABASE.

In PhpMyAdmin go tothe SQL section:

How do I change the authorization data of the OpenCart administrator user?

By default OpenCart uses the “oc_” prefix and the administrator ID is usually set to 1.

Therefore, use the following sql command to change the password:

UPDATE `oc_user` SET `password` = MD5('my_secret_password') WHERE `user_id` = 1;

where instead of my_secret_password specify your new password.

 Hosting
Total 0 Votes:
0

Tell us how can we improve this post?

+ = Verify Human or Spambot ?