diff --git a/app/Config/Aauth.php b/app/Config/Aauth.php index aaba7dc..6b1f47a 100644 --- a/app/Config/Aauth.php +++ b/app/Config/Aauth.php @@ -138,14 +138,19 @@ class Aauth extends BaseConfig | Login Identificator, if TRUE username needed to login else email address | (default: false) | + | 'loginAccurateErrors' + | + | Enables unified error message (loginFailedAll vs loginFailedEmail/loginFailedUsername) + | (default: false) + | | 'loginProtection' | | Enables the DDoS Protection, user will be banned temporary when he exceed the login 'try' | (default: true) | - | 'loginAccurateErrors' + | 'loginAttemptCookie' | - | Enables unified error message (loginFailedAll vs loginFailedEmail/loginFailedUsername) + | Login attempts count & block trough Cookie instead of Login Attempt DB & IP | (default: false) | | 'loginAttemptLimit' @@ -153,11 +158,6 @@ class Aauth extends BaseConfig | Login attempts limit | (default: 10) | - | 'loginAttemptCookie' - | - | Login attempts count & block trough Cookie instead of Login Attempt DB & IP - | (default: false) - | | 'loginAttemptLimitTimePeriod' | | Period of time for max login attempts @@ -172,10 +172,10 @@ class Aauth extends BaseConfig public $loginRememberCookie = 'remember'; public $loginSingleMode = false; public $loginUseUsername = false; - public $loginProtection = true; public $loginAccurateErrors = false; - public $loginAttemptLimit = 10; + public $loginProtection = true; public $loginAttemptCookie = false; + public $loginAttemptLimit = 10; public $loginAttemptLimitTimePeriod = '5 minutes'; public $loginAttemptRemoveSuccessful = true;