Home  >  Article  >  Backend Development  >  destoon找回管理员密码的方法_php实例

destoon找回管理员密码的方法_php实例

WBOY
WBOYOriginal
2016-06-07 17:18:26706browse

很多人在使用 DESTOON 系统时,经常会出现忘记后台管理密码的情况,亦或者是管理密码被别盗了需要找回,这时候往往不知所措。

其实找回 DESTOON 系统登陆的密码很简单,我们只需要将保存在数据库里面的密码更改掉,换一个简单一点的密码,然后进入系统再更改成自己的就可以了。

如果系统开启了邮件发送,还可以通过前台的找回密码功能邮件找回。

可以使用数据库管理工具,例如PHPMyAdmin,找到destoon_member表,

修改管理员password字段值为:

14e1b600b1fd579f47433b88e8d85291

或者,假如管理户名为admin,可以直接执行如下SQL语句:

update destoon_member set password='14e1b600b1fd579f47433b88e8d85291′ where username='admin';

通过以上操作,管理员密码将被设置为:123456

用密码123456登入后台,修改新的管理密码即可。

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