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