2400 Users Awaiting Approval

Run this query on your database to approve all users who are currently awaiting approval:

Code:
UPDATE xf_user
SET user_state = 'valid'
WHERE user_state = 'moderated';
 
I believe this is related to your other thread, which I responded to.

However, the possible states are: 'valid','email_confirm','email_confirm_edit','moderated','email_bounce'
 
Top Bottom