Daniel Convissor
Forum Replies Created
-
Fixed in release 0.44.0. Sorry about that!
Forum: Plugins
In reply to: [Login Security Solution] Error when forced to change password! HELP!First, you have PHP’s display_errors setting on. That should be off.
Second, you can update your LSS plugin via SFTP.
Forum: Plugins
In reply to: [Login Security Solution] Should there be a lockout at least at some point?Yeah, I’m contemplating a hard lockout becuse of heavy brute force attacks ending up causing denial of service.
Forum: Plugins
In reply to: [Login Security Solution] Idle Timeout not working correctlyHi Regine:
That’s a total pain. Sorry. Are you taking over 30 minutes to write the posts? If so, there are several options.
Easiest is increase the timeout length.
More importantly, I can’t count how many times I’ve lost work in web forms. I’ve learned the hard way (though sometimes still forget) that when I’m writing something long and/or important, to write it out in a text editor on my desktop (saving every few minutes). When I’m done, copy and paste it to the web form.
That aside, another possibility that may work is to keep another tab/window open. Before submitting your post, click around the admin section in that other tab. If you have hit the timeout, you can log in there, then come back to your post window.
Forum: Plugins
In reply to: [Login Security Solution] The road to hell is paved with good intentionsThe settings are customizable via the LSS’ settings page. You’ll find it in WP’s admin settings section.
No dictionary attack is getting through this plugin.
Have a great day.
Forum: Reviews
In reply to: [Login Security Solution] Very long password length set in stonePlease look at the LSS’ settings page. You’ll find the password length is adjustable.
Forum: Plugins
In reply to: [Login Security Solution] Conflict with Publicize – JetpackHi David and Peter:
Alas, there’s too much on my plate at the moment for me to dig into this. You folks will need to deubg what’s going on, please. Uncommenting the
log()calls in thelogin-security-solution.phpfile may prove helpful. The log output goes to/var/log/login-security-solution.php.Nice to hear from you again, Pete.
–Dan
Forum: Plugins
In reply to: [Login Security Solution] No IP trackingYour system isn’t set up right somehow. Perhaps you can get an idea of the problem by opening up
login-security-solution.phpand uncommenting thelog()method calls. Then watch/var/log/login-security-solution.log.Forum: Plugins
In reply to: [Login Security Solution] Login Failure Table not recording IPOpen
login-security-solution.php. There are 58log()calls in there.Forum: Plugins
In reply to: [Login Security Solution] using login security solution with multisiteWhen in multisite mode, LSS runs globally, not per-site.
Forum: Plugins
In reply to: [Login Security Solution] Require password length less than 10 characters?Nope. This is about everyone’s security. From LSS’ home page:
You’re probably thinking “There’s nothing valuable on my website. No one will bother breaking into it.” What you need to realize is that attackers are going after your visitors. They put stealth code on your website that pushes malware into your readers’ browsers.
Forum: Plugins
In reply to: [Login Security Solution] Change Password on First Login?No, LSS doesn’t have that feature. If the other plugin follows WP’s architecture and hooks into the right actions/filters, there shouldn’t be any conflicts.
Go into your WP admin section | Settings | Login Security Solution. Adjust to your heart’s content.
Forum: Plugins
In reply to: [Login Security Solution] Compatiablity with WoocomerceThat’s a bug in Woocommerce. They need to honor the
pw_policy_establishaction.Forum: Plugins
In reply to: [Login Security Solution] Size of data stored in DB for this plugin is largeRun a mysql query:
DELETE FROM <$table_prefix>login_security_solution_fail;I have plans to make a user interface for this, but it’s a low priority.