Daniel Convissor
Forum Replies Created
-
I made a bunch of fixes to get login-lock working under WP 3.3.1. They are available at https://github.com/convissor/login-lock. I told the author about the fixes too. We’ll see if they get incorporated into the existing package.
Forum: Plugins
In reply to: [Login Lock] [Plugin: Login Lock] Mask login failure info to visitors?Check out the fixes I posted at https://github.com/convissor/login-lock. It’s working well for me on 3.3.1.
Forum: Plugins
In reply to: [Login Lock] 3.3 Fatal Error with Login Lock@marjwyatt Things are out of sync on your system. Deactivate the plugin. Delete the old file (or move it to somewhere outside of your WP install). Put in my loginlock.php file. Then activate the plugin.
Forum: Plugins
In reply to: [Login Lock] [Plugin: Login Lock] Fatal ErrorThe login-lock plugin needed several fixes. I’ve patched up the code posted it to https://github.com/convissor/login-lock
Forum: Plugins
In reply to: [Login Lock] 3.3 Fatal Error with Login LockI committed several fixes for the login-lock plugin and put them up at https://github.com/convissor/login-lock
Forum: Plugins
In reply to: [Login Lock] [Plugin: Login Lock] Mask login failure info to visitors?Guess what, my suggestion is not necessary. Now that I have login-lock installed, testing shows that the plugin is kind enough to produce a generic “Invalid username or password” error message.
Forum: Plugins
In reply to: [Login Lock] [Plugin: Login Lock] Fatal ErrorThis seems like a bug in the order that files are being included by WordPress’ core. So I have opened a ticket about it:
http://core.trac.wordpress.org/ticket/19913Forum: Plugins
In reply to: [Login Lock] 3.3 Fatal Error with Login LockThis seems like a bug in the order that files are being included by WordPress’ core. I’ve opened a ticket about it:
http://core.trac.wordpress.org/ticket/19913Forum: Plugins
In reply to: [Login Lock] [Plugin: Login Lock] Mask login failure info to visitors?That’s simple. Add the following to your theme functions.php file:
add_filter( 'login_errors', function() {return 'Invalid Username and/or Password.';} );