Search for usernames over character limit?

There is no option to do that in the front end or ACP, you would have to interrogate the database directly using LENGTH.
Code:
SELECT username FROM `xf_user` WHERE LENGTH(username) > 14
 
Top Bottom