MyBB Community Forums

Full Version: delete all posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i delete all thread and post of specific user
http://mods.mybb.com/view/goodbye-spammer
or you can do it throw mysql if you want to know how let em know.
I think good bye spammer is good for this!
http://mods.mybb.com/view/goodbye-spammer

Edit: While you were typing plugin is necessary for all forums ToungueToungue
For someone with a bit more knowledge you could do an SQL query
Unapprove post so you can deal with them later:
UPDATE  `mybb_posts` SET  `visible` =  '1' WHERE  `mybb_posts`.`uid` =THE_USER_ID_OF_THE_USER_YOU_WANT_TO_UNAPPROVE_POSTS ;
Delete posts:
DELETE FROM  `mybb_posts` WHERE  `mybb_posts`.`uid` =THE_USER_ID_OF_THE_USER_YOU_WANT_TO_DELETE_POSTS ;
If you don't know how to perform SQL queries see this thread.