Last active
February 6, 2020 07:52
-
-
Save esimonetti/f4b2a21561fb07e3716ef48c6a3e4a67 to your computer and use it in GitHub Desktop.
Add on SugarDockerized data/app/configs/config_override_custom.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
<?php | |
$config_override = []; | |
$config_override['passwordsetting']['minpwdlength'] = 1; | |
$config_override['passwordsetting']['oneupper'] = 0; | |
$config_override['passwordsetting']['onelower'] = 0; | |
$config_override['passwordsetting']['onenumber'] = 0; | |
$config_override['passwordsetting']['onespecial'] = 0; | |
$config_override['passwordsetting']['SystemGeneratedPasswordON'] = 0; | |
$config_override['passwordsetting']['forgotpasswordON'] = 0; | |
$config_override['moduleInstaller']['packageScan'] = true; | |
//$config_override['external_cache_disabled'] = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment