Browse Source

updated Config/Aauth

v3-dev
REJack 6 years ago
parent
commit
17fc87d18e
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 18
      app/Config/Aauth.php

18
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;

Loading…
Cancel
Save