Website: Username limit from 15 to 60.
Hacked /templates/default/register.htm and changed maxlength=”15″ to maxlength=”60″
Hacked /uc_client/model/user.php – $len > 15 to $len > 60.
in common.inc.php
I changed this line: $_DCOOKIE[‘loginuser’] = !empty($_DCOOKIE[‘loginuser’]) ? substr(htmlspecialchars($_DCOOKIE[‘loginuser’]), 0, 15) : ”;
to $_DCOOKIE[‘loginuser’] = !empty($_DCOOKIE[‘loginuser’]) ? substr(htmlspecialchars($_DCOOKIE[‘loginuser’]), 0, 60) : ”;