7月 052020
wordpress使用过程中,可能会碰到大量请求不断尝试各种用户名密码登陆你的后台,如果使用了插件“Limit Login Attempts ”,非常可能碰到自己登陆后台时,也被提示:“ too many failed login attempts reset” , 需要等24小时后再登陆, 这就比较搞了,但可以使用下面的方法解决。
- 登陆自己的mysql数据库服务器
- 在mysql命令行页面运行以下语句:
- mysql> use wordpress;
mysql> UPDATE wp_options SET option_value = ” WHERE option_name = ‘limit_login_lockouts’ LIMIT 1;搞定!
Sorry, the comment form is closed at this time.