1. Does the system check for duplicate emails in system at signup as it does for duplicate usernames? 2. Also, noticed that the signup form allows spaces to be input in username field.. some users still don't know to make them one word without spaces. Thanks, Richard. PS: The value of aMember app is worth 10 times the $139 price. I bought it today before you raised its price!
1. It can be enabled: aMember CP -> Setup 2. No, signup form doesn't allow spaces inside username! Starting and leading spaces will be automatically removed.
Please replace line in amember/signup.php: PHP: if (preg_match('/[^0-9a-zA-Z_ ]+/', $vars['login'])){ to PHP: if (preg_match('/[^0-9a-zA-Z_]+/', $vars['login'])){