There is a bug in the latest versin 1.5.5 in /admin/customers.php that causes a "Parse error: syntax error, unexpected T_CASE in /path/to/admin/customers.php on line 221"

Original file messed up the // comment and included an extra "}" by mistake, see below.

After installing, find (around line 165):

// if ($error == false) {

// +Country-State Selector
} // End if (!$refresh)
if (($error == false) && ($refresh != 'true')) {
// -Country-State Selector

...and replace with:

// if ($error == false) {

// +Country-State Selector
// } End if (!$refresh)
if (($error == false) && ($refresh != 'true')) {
// -Country-State Selector

Note: File is the fixed README.HTM install file.

More...