sugarcrm change password validation rules
In SugarCRM there are some default validation rules that has to be followed while creating or resetting the password. This article sugarcrm change password validation rules will explain how to change the default validation rules provided by SugarCRM.
The validation rules are defined in the config file/setting and the minimum validation rules that are available/required for password are given below.
1) At least one uppercase
2) At least one numeric.
sugarcrm change password validation rules, to change/modify the above mentioned validation rules we have to edit configuration settings. To do so open the config_override.php available in root folder and make the changes as per the requirement.
To change the validation rules, Please edit the below array elements
$sugar_config[‘passwordsetting’][‘oneupper’] = false; // which removes the validation rule ( one Upper case letter in password )
$sugar_config[‘passwordsetting’][‘onenumber’] = false; // which removes the validation rule ( one number in password )
To read more about sugarCRM click here
sugarcrm change password validation rules