Is it possibble to edit a file to not allow spaces in the usernames on registration? liek if they put "jason davis" it would make it "jasondavis" I have a script that is conflicting when a user makes a space in there username
yes, edit file amember/signup.php and replace line if (preg_match('/[^0-9a-zA-Z_ ]+/', $vars['login'])){ to if (preg_match('/[^0-9a-zA-Z_]+/', $vars['login'])){