Home >Backend Development >PHP Tutorial >How to retrieve the administrator password in destoon_PHP tutorial
When many people use the DESTOON system, they often forget the background management password, or the management password is stolen and needs to be retrieved. At this time, they are often at a loss.
In fact, it is very simple to retrieve the password for DESTOON system login. We only need to change the password saved in the database to a simpler password, and then enter the system and change it to our own.
If the system has enabled email sending, you can also retrieve it through the password retrieval function at the front desk.
You can use database management tools, such as PHPMyAdmin, to find the destoon_member table,
Modify the administrator password field value to:
14e1b600b1fd579f47433b88e8d85291
Or, if the administrative account is admin, you can directly execute the following SQL statement:
update destoon_member set password='14e1b600b1fd579f47433b88e8d85291′ where username='admin';
After the above operation, the administrator password will be set to: 123456
Log in to the backend with password 123456 and change the new management password.