how to change Languages for all usere

lazorde

Member
Hello,

i have more than 2500 users, and i want change Languages for all usere in one click?

there's any way to make it ?

Best Regards,
Lazorde
 
Here is a query you can run on the database to set the language preference for all users:

Code:
UPDATE xf_user
SET language_id = 2

Change the number to the language_id of the language.
 
Top Bottom