MyBB Community Forums

Full Version: delete all post plugin?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is there another plugin that lets you delete all of the user's post?
spam central dun work
You can run an SQL query to do this: (note, recommend backing up your DB before doing this!)
DELETE FROM mybb_posts WHERE uid=<uid>
(replace "mybb_" with your table prefix, and "<uid>" with the user's UID)

You'll probably need to do some recounts after doing this.