How To Unblock Limit Login Attempts in WordPress
Often WordPress hosting companies recommend that you install a plugin called Limit Login Attempts. We love, use, and recommend it to all of our users. However in some cases, Limit Login Attempt may lock you out too, if you entered the wrong password a few times. In this article, we will show you how to unblock limit login attempts plugin in WordPress.
FTP or File Manager Method
The easiest solution for beginners is to delete Limit Login Attempts plugin using FTP and then re-install it later once you can login.
You need to login to your site via FTP and then go to /wp-content/plugins/. Once you’re there, you can simply delete the limit-login-attempts plugin folder.
For those who don’t know how to use FTP (check out our FTP video).
You can also do this using your web host’s cPanel File Manager.
Simply browse to /wp-content/plugins/ and delete the limit-login-attempts folder.
MySQL Query
For advanced users who are familiar with MySQL and phpMyAdmin, you can easily run the following SQL query, and it will clear all lockouts.
UPDATE wp_options SET option_value = '' WHERE option_name = 'limit_login_lockouts' LIMIT 1;
If you want to unblock your specific IP e.g. 111.222.111.222, then run a query like this:
UPDATE wp_options SET option_value = REPLACE(option_value, '111.222.111.222', '') WHERE option_name = 'limit_login_lockouts' LIMIT 1;
Make sure to update your IP address and also the database table prefix if you changed your database prefix.
We hope this article helped you unblock limit login attempts in WordPress.
If you liked this article, then please consider following us on Twitter.