The WP-Members Security extension version 1.6.1 has been released. This version contains a few bug fixes as well as some additional CLI features.
Bug Fixes
- The failed login screen and the blocked registration screen both have a bug in the SQL query when multiple pages of results exist. The result is a server 500 error when the screen is viewed. This has been resolved.
- The blocked registration screen had a “delete” bulk menu item, but it did not actually delete the selected entry. That has been corrected in this release.
New CLI Features
The plugin has some WP CLI commands that had not been documented up until now. I have added documentation for this plugin’s WP CLI commands, and this version improves and adds some commands.
The sessions
and failed_logins
commands now paginate the results. Previously, these commands showed a table of all results, which is rather unwieldy when there are a few hundred or thousand entries. The default view shows 20 results per page and you can page through results. Future versions will expand on this and probably will include a filter hook to allow for customizing the number of results in the default page view.
A search feature was added for both the sessions
and failed_logins
commands. The sessions search
command will search username and email fields for “like” results (meaning a search for “mike” will return results for “mike123” as well as “mikesmith@myemail.com”). The failed_logins search
command will search the username field (there is no email field in this table).
View the documentation on all of the Security plugin’s WP CLI commands here.