To change the administrator password in OpenCart, do the following:
new_password
New password:UPDATE oc_user SET `password` = MD5('new_password') WHERE user_id = 1;
If the names of the tables in the database do not start with the standard oc_
, and with a different prefix, make the appropriate change to the SQL query.