RSS Feed/News How to convert the XenForo username to lowercase.

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
26,838
Points
823

Reputation:

Thangvip9x submitted a new resource:

How to convert the XenForo username to lowercase. - Convert the XenForo username to lowercase.

Today, I will show you how to convert usernames to lowercase. Please go to phpMyAdmin > SQL and run this command

SQL:

UPDATE xf_user SET username = LOWER(username);

View attachment 303635
Or use this command if you only want to uppercase the first character of the username

SQL:

Code:
UPDATE xf_user 
SET username = CONCAT(UPPER(SUBSTRING(username, 1...
Click to expand...

Read more

Continue reading...
 
Status
Not open for further replies.
Top