Log in

View Full Version : Restrict Usernames\Thread Titles


alkuwary
03-24-2009, 11:59 AM
Hi,

Is there a way to restrict Usernames to english only and also thread titles ? I tried searching but didn't find anything for vb 3.8.1

TIA

Dismounted
03-25-2009, 08:48 AM
Add this as the username regex (Admin CP > vBulletin Options), it will allow only alphabetical characters.
^[a-z]+$

alkuwary
03-25-2009, 01:31 PM
How about only allowing alphanumeric characters ?

Also I can't do anything about thread titles ?

Thanks for your help Dismounted, It's highly appreciated.

Seven Skins
03-25-2009, 01:32 PM
^[a-zA-Z0-9 ]+$

Alphanumeric (Both uppercase and lower) characters including space

alkuwary
03-25-2009, 04:55 PM
Thanks I figured it out now and modified it a little bit so it will allow underscores and not spaces, here's the code if anyone needs it.

^[a-zA-Z0-9_]+$

If you need to add spaces here's the code

^[a-zA-Z0-9_ ]+$

What I need now is a way to restrict thread titles also, Can anyone point me in the right direction ?

lazydesis
09-17-2009, 04:06 AM
i would like to know as well if there is a way to restrict thread titles to alphanumeric

any help please :) thanks