PDA

View Full Version : Unconfirmed Users Group



Viper007Bond
Fri 27th Oct '06, 8:13am
When I imported from phpBB, Impex made a usergroup called "Inactive Imported Users" of the people who had made an account, but not activated it by clicking the link sent to them in an e-mail.

Is there an easy way to move this users into vB's "Users Awaiting Email Confirmation" or should I do it manually via a MySQL query?

Colin F
Fri 27th Oct '06, 8:34am
You can use the Mass Move option in your
AdminCP -> Users -> Prune / Move Users

Viper007Bond
Fri 27th Oct '06, 8:55am
Ah, nice! However, that group is not listed in the group dropdown on that page. :(

Colin F
Fri 27th Oct '06, 9:23am
Ah yes, forgot about that.
In that case your only option is to use an SQL query.

Jerry
Fri 27th Oct '06, 4:29pm
UPDATE user SET usergroupid=X WHERE usergroupid=Y


Where X is your awaiting group, usually 3 and Y is the group they are in at the moment.