Brute Force Prevention breaks access to dashboard from WordPress bar menu
-
If you activated the brute force prevention you can’t use the WordPress bar menu to access to the dashboard. That can be frustrating for some users.
But it has an easy solution ??
The firs rule for brute force prevention is:
RewriteCond %{REQUEST_URI} (wp-admin|wp-login)
To allow the use of the access to dashboard from the WordPress bar menu, simply change to:
RewriteCond %{REQUEST_URI} (wp-login.php)
And the brute force prevention remains intact, because in fact, we only need to protect wp-login.php, above paths are only shortcuts to this file when the user is not logged in.
I hope you can consider this change for the next release.
https://www.ads-software.com/plugins/all-in-one-wp-security-and-firewall/
- The topic ‘Brute Force Prevention breaks access to dashboard from WordPress bar menu’ is closed to new replies.