@ -31,6 +31,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| ['perm_to_user'] The table which contains permissions for users
| ['perm_to_user'] The table which contains permissions for users
| ['pms'] The table which contains private messages
| ['pms'] The table which contains private messages
| ['user_variables'] The table which contains users variables
| ['user_variables'] The table which contains users variables
| ['login_attempts'] The table which contains login attempts
|
|
| ['remember'] Remember time elapsed after connecting and automatic LogOut
| ['remember'] Remember time elapsed after connecting and automatic LogOut
|
|
@ -49,11 +50,12 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| ['totp_active'] The Time-based One-time Password Algorithm
| ['totp_active'] The Time-based One-time Password Algorithm
| ['totp_only_on_ip_change'] TOTP only on IP Change
| ['totp_only_on_ip_change'] TOTP only on IP Change
| ['totp_reset_over_reset_password'] TOTP reset over reset Password
| ['totp_reset_over_reset_password'] TOTP reset over reset Password
| ['totp_two_step_login'] en ables TOTP two step login
| ['totp_two_step_login'] Enables/Dis ables TOTP two step login
| ['totp_two_step_login_redirect'] Redirect path to TOTP Verification page used by control() & is_allowed()
| ['totp_two_step_login_redirect'] Redirect path to TOTP Verification page used by control() & is_allowed()
|
|
| ['max_login_attempt'] Login attempts time interval (default 10 times in one hour)
| ['max_login_attempt'] Login attempts time interval (default 10 times in one hour)
| ['max_login_attempt_time_period'] Period of time for max login attempts (default "5 minutes")
| ['max_login_attempt_time_period'] Period of time for max login attempts (default "5 minutes")
| ['remove_successful_attempts'] Enables/Disables removing login attempt after successful login
|
|
| ['login_with_name'] Login Identificator, if TRUE username needed to login else email address.
| ['login_with_name'] Login Identificator, if TRUE username needed to login else email address.
|
|
@ -66,8 +68,8 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| ['verification_link'] Link for verification without site_url or base_url
| ['verification_link'] Link for verification without site_url or base_url
| ['reset_password_link'] Link for reset_password without site_url or base_url
| ['reset_password_link'] Link for reset_password without site_url or base_url
|
|
| ['hash'] Name of selected hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)
| ['hash'] Name of selected hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)
| Please, run hash_algos() for know your all supported algorithms
| Please, run hash_algos() for know your all supported algorithms
| ['use_password_hash'] True to use PHP's own password_hash() function with BCrypt, needs PHP5.5 or higher
| ['use_password_hash'] True to use PHP's own password_hash() function with BCrypt, needs PHP5.5 or higher
| ['password_hash_algo'] password_hash algorithm (PASSWORD_DEFAULT, PASSWORD_BCRYPT) for details see http://php.net/manual/de/password.constants.php
| ['password_hash_algo'] password_hash algorithm (PASSWORD_DEFAULT, PASSWORD_BCRYPT) for details see http://php.net/manual/de/password.constants.php
| ['password_hash_options'] password_hash options array for details see http://php.net/manual/en/function.password-hash.php
| ['password_hash_options'] password_hash options array for details see http://php.net/manual/en/function.password-hash.php
@ -93,6 +95,7 @@ $config_aauth["default"] = array(
'perm_to_user' => 'aauth_perm_to_user',
'perm_to_user' => 'aauth_perm_to_user',
'pms' => 'aauth_pms',
'pms' => 'aauth_pms',
'user_variables' => 'aauth_user_variables',
'user_variables' => 'aauth_user_variables',
'login_attempts' => 'aauth_login_attempts',
'remember' => ' +3 days',
'remember' => ' +3 days',
@ -116,6 +119,7 @@ $config_aauth["default"] = array(
'max_login_attempt' => 10,
'max_login_attempt' => 10,
'max_login_attempt_time_period' => "5 minutes",
'max_login_attempt_time_period' => "5 minutes",
'remove_successful_attempts' => true,
'login_with_name' => false,
'login_with_name' => false,