Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
phpBB convertion problem
I converted my databyse from phpBB and now all users have moderator status! How can I change it automatically to member???
0
This discussion has been closed.
Comments
SELECT `RoleID` FROM `LUM_Role` WHERE `Name` = 'Member';
You should get a numeric result after execution. This is the role ID that represents member roles. With the value of that result, you should run the following query with replaced values:
UPDATE `LUM_User` SET `RoleID` = '[member_role_id]' WHERE `Name` <> '[admin_username]';
The values you should replace are:
[member_role_id] - this will be the result you got from the first query.
[admin_username] - this is the username of the administrator of the forum (you definitely don't want to set the role for this user to Member)
Hope that helps
Total number of registered users: 991
Total number of topics: 1140
Total number of posts: 8617