Quote:
Originally Posted by Daryn
I have a question about the User Registration Regex. I have a few users who have non english characters in their usernames. If I change this setting to allow only alphanumeric characters does this mean that they will be forced to change their userid or otherwise not be able to login? Or will it simply only allow users going forward to only use those specific characters?
|
Yes, it would only affect new user registrations. Worst case would be that two users get the same Wiki account.
e.g:
VB username 1: "test_test"
VB username 2: "test test"
Both would use the "Test test" wiki user account, because all '_' will be converted to ' '.
For tests I created an user "_test : ? ^ & ( ) *" in VB, even there the user was able to use the wiki with this username: "Test : ? ^ & ( ) *" and the userpage was: "User:Test_:_%3F_^_%26_(_)_*"
As you see the first char should not be an '_' or an ' ' else it just gets removed, the other chars did not really make a problem.
I need to do some more tests to see what chars we really need to disallow.