forked from pengkong/A3M-for-CodeIgniter-2.0
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from AdwinTrave/master
CLOSE #30 + CI3 update + little improvements and fixes
- Loading branch information
Showing
251 changed files
with
35,796 additions
and
927 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/A3M.komodoproject | ||
#Ignore log files of any kind | ||
log-*.php | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
deny from all | ||
<IfModule authz_core_module> | ||
Require all denied | ||
</IfModule> | ||
<IfModule !authz_core_module> | ||
Deny from all | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,8 @@ | |
|-------------------------------------------------------------------------- | ||
*/ | ||
$config['sign_up_recaptcha_enabled'] = FALSE; | ||
$config['sign_up_auto_sign_in'] = TRUE; | ||
$config['sign_up_auto_sign_in'] = TRUE; | ||
$config['sign_up_default_user_group'] = 2; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
|
@@ -35,7 +36,7 @@ | |
| Forgot Password | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
$config['forgot_password_recaptcha_enabled'] = TRUE; | ||
$config['forgot_password_recaptcha_enabled'] = TRUE; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
|
@@ -65,8 +66,23 @@ | |
| password_reset_email Reset password sender email | ||
*/ | ||
$config['password_reset_expiration'] = 1800; | ||
$config['password_reset_secret'] = ''; | ||
$config['password_reset_email'] = '[email protected]'; | ||
$config['password_reset_secret'] = ''; | ||
$config['password_reset_email'] = '[email protected]'; | ||
|
||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Confrimation E-mail for non-social media registration | ||
|-------------------------------------------------------------------------- | ||
| account_ | ||
| account_email_validate Will send out confirmation email for account email validation | ||
| account_email_validation_required Requires that the e-mail is validated before user can login | ||
| account_email_confirm_sender | ||
*/ | ||
$config['account_email_validate'] = TRUE; | ||
$config['account_email_validation_required']= TRUE; | ||
$config['account_email_confirm_sender'] = '[email protected]'; | ||
|
||
|
||
|
||
/* End of file account.php */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.