Posted by Jorma Hytönen
2014-11-29

How about MD5 hash of passwords. In where and how?
Posted by Tom
2014-12-04

>How about MD5 hash of passwords. In where and how?

Open web/staff/app/cls_sys_base.inc.php and find the following lines.
	function EncryptPassword( $password )
{
//return CUtil::EncryptPassword( $password );
return $password;
}
Remove // from the 3rd line. CUtil::EncryptPassword will encrypt password in MD5.

Warning: Once you activate the password encryption, the passwords you entered before no longer work. So, you should update all the passwords again after you activate it.