Home  >  Article  >  Backend Development  >  How to retrieve the administrator password in destoon_PHP tutorial

How to retrieve the administrator password in destoon_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:24:29996browse

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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825469.htmlTechArticleWhen many people use the DESTOON system, they often forget the background management password, or the management password is stolen. Don’t worry if something is stolen and needs to be retrieved, you are often at a loss at this time. Actually retrieve...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn