J JackieeXP Member Nov 6, 2012 #1 is there a way to delete all the users or most of them ( selective ) at once? i have like 300 inactive
is there a way to delete all the users or most of them ( selective ) at once? i have like 300 inactive
Jake Bunce Well-known member Nov 6, 2012 #2 There is no mass prune utility for users. And this is something that should be done through the software. If you move all of the inactive users to the moderation queue using a query like this: Rich (BB code): UPDATE xf_user SET user_state = 'moderated' WHERE <some condition for inactive> ...then you can use this little trick to mass delete: http://xenforo.com/community/threads/how-to-mass-delete-users-awaiting-approval.35568/#post-404156 Upvote 0 Downvote
There is no mass prune utility for users. And this is something that should be done through the software. If you move all of the inactive users to the moderation queue using a query like this: Rich (BB code): UPDATE xf_user SET user_state = 'moderated' WHERE <some condition for inactive> ...then you can use this little trick to mass delete: http://xenforo.com/community/threads/how-to-mass-delete-users-awaiting-approval.35568/#post-404156