Browse Source

cleaned the config file

develop
Raphael Jackstadt 10 years ago
parent
commit
b945abbdae
  1. 101
      application/config/aauth.php

101
application/config/aauth.php

@ -9,67 +9,64 @@
// Config variables // Config variables
$config['aauth'] = array( $config['aauth']['login_page'] = '/login';
'login_page' => '/login', // if user don't have permisssion to see the page he will be
// if user don't have permisssion to see the page he will be // redirected the page spesificed below
// redirected the page spesificed below $config['aauth']['no_permission'] = '/';
'no_permission' => '/', //name of admin group
//name of admin group $config['aauth']['admin_group'] = 'admin';
'admin_group' => 'admin', //name of default group, the new user is added in it
//name of default group, the new user is added in it $config['aauth']['default_group'] = 'default';
'default_group' => 'default', // public group , people who not logged in
// public group , people who not logged in $config['aauth']['public_group'] = 'public';
'public_group' => 'public', // The table which contains users
// The table which contains users $config['aauth']['users'] = 'aauth_users';
'users' => 'aauth_users', // the group table
// the group table $config['aauth']['groups'] = 'aauth_groups';
'groups' => 'aauth_groups', //
// $config['aauth']['user_to_group'] = 'aauth_user_to_group';
'user_to_group' => 'aauth_user_to_group', // permitions
// permitions $config['aauth']['perms'] = 'aauth_perms';
'perms' => 'aauth_perms', // perms to group
// perms to group $config['aauth']['perm_to_group'] = 'aauth_perm_to_group';
'perm_to_group' => 'aauth_perm_to_group', // perms to group
// perms to group $config['aauth']['perm_to_user'] = 'aauth_perm_to_user';
'perm_to_user' => 'aauth_perm_to_user', // pm table
// pm table $config['aauth']['pms'] = 'aauth_pms';
'pms' => 'aauth_pms', // system variables
// system variables $config['aauth']['system_variables'] = 'aauth_system_variables';
'system_variables' => 'aauth_system_variables', // user variables
// user variables $config['aauth']['user_variables'] = 'aauth_user_variables';
'user_variables' => 'aauth_user_variables',
// remember time // remember time
'remember' => ' +3 days', $config['aauth']['remember'] = ' +3 days';
// pasword maximum char long (min is 4) // pasword maximum char long (min is 4)
'max' => 13, $config['aauth']['max'] = 13;
// non alphanumeric characters that are allowed in a name // non alphanumeric characters that are allowed in a name
'valid_chars' => array(' ', '\''), $config['aauth']['valid_chars'] = array(' ', '\'');
// ddos protection, // ddos protection,
//if it is true, the user will be banned temporary when he exceed the login 'try' //if it is true, the user will be banned temporary when he exceed the login 'try'
'ddos_protection' => true, $config['aauth']['ddos_protection'] = true;
'recaptcha_active' => false, $config['aauth']['recaptcha_active'] = false;
'recaptcha_login_attempts' => 4, $config['aauth']['recaptcha_login_attempts'] = 4;
'recaptcha_siteKey' => '', $config['aauth']['recaptcha_siteKey'] = '';
'recaptcha_secret' => '', $config['aauth']['recaptcha_secret'] = '';
// login attempts time interval // login attempts time interval
// default 20 times in one hour // default 20 times in one hour
'max_login_attempt' => 10, $config['aauth']['max_login_attempt'] = 10;
// to register email verifitaion need? true / false // to register email verifitaion need? true / false
'verification' => false, $config['aauth']['verification'] = false;
// system email. // system email.
'email' => 'admin@admin.com', $config['aauth']['email'] = 'admin@admin.com';
'name' => 'Emre Akay' $config['aauth']['name'] = 'Emre Akay';
);
/* End of file aauth.php */ /* End of file aauth.php */
/* Location: ./application/config/aauth.php */ /* Location: ./application/config/aauth.php */

Loading…
Cancel
Save