Forum Moderators: phranque
Does mod_auth_db or any of the mod_auth modules have an account lockout feature? I've setup mod_auth_db and it works well, only it seems to allow unlimited login attempts (after 3 attempts it throws to an error page but I can go back and try again and again).
If not mod_auth are there any other options to include username and password authentication as well as account lockout with Apache 2.0.55 that's as simple as mod_auth?
Thanks,
Andrew
This is one reason that cookies were invented -- to store client state information. However, since in this case you don't implicitly trust the client, a simple client-side state mechanism is unacceptable, and you'll need to do most of the work on the server side.
Jim