MyBB Community Forums

Full Version: How To Delete MANNY Users ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I Have more than 600 Users To Delete...How To Do THAT ??

How To Prune them Faster
???

Thank you in Advence !
There is no way that I know of in MyBB to delete multiple users, so you would have to do it via the database.

If, for instance, you wanted to delete every user who has 0 posts, just run this query:

DELETE FROM mybb_users WHERE postnum = "0"

in the database.

Change "mybb_users" to the name of your users table.

I suspect this is what you want to do, but if not, just ask for the sql code here and someone will get it for you.
DrPoodle Wrote:There is no way that I know of in MyBB to delete multiple users, so you would have to do it via the database.

If, for instance, you wanted to delete every user who has 0 posts, just run this query:

DELETE FROM mybb_users WHERE postnum = "0"

in the database.

Change "mybb_users" to the name of your users table.

I suspect this is what you want to do, but if not, just ask for the sql code here and someone will get it for you.

yup That's What I Wished to Do (delete all 0 posts members)

Thank You !