这篇文章 描述了从DB 恢复MT 控制台密码的方法。
$ perl -e "print crypt('password', 'ac');"
mysql> update mt_author set author_password = '???' where author_name = 'XXX';
使用print 出来的字符串替换"???","XXX" 是登录用户名。然后使用"password" 作为密码即可登录。
"password" 与 "ac" 可随意更改。
这篇文章 描述了从DB 恢复MT 控制台密码的方法。
$ perl -e "print crypt('password', 'ac');"
mysql> update mt_author set author_password = '???' where author_name = 'XXX';
使用print 出来的字符串替换"???","XXX" 是登录用户名。然后使用"password" 作为密码即可登录。
"password" 与 "ac" 可随意更改。
![]()


