MyBB Community Forums

Full Version: How delete user,and all threads and all posts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, How do I delete all threads and posts complete a member db?

thanks.
Do you mean you wan to delete all threads/posts made by a user???
(2009-06-20, 11:49 AM)Joshua Mayer Wrote: [ -> ]Do you mean you wan to delete all threads/posts made by a user???

yes ,account and all threads and post.

thanks.
ACP -> Users and Groups -> Users -> User to be deleted -> Options -> Delete User - This is to delete users.

AFAIK deleting all posts would require a plugin.
http://www.mybbcentral.com/thread-1727.html
(2009-06-20, 11:55 AM)Joshua Mayer Wrote: [ -> ]ACP -> Users and Groups -> Users -> User to be deleted -> Options -> Delete User - This is to delete users.

AFAIK deleting all posts would require a plugin.
http://www.mybbcentral.com/thread-1727.html

thansk Joshua,my problem thread and all post,but no visit mybb central.

Forbidden

You don't have permission to access /thread-1727.html on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
(2009-06-20, 11:59 AM)roy Wrote: [ -> ]
(2009-06-20, 11:55 AM)Joshua Mayer Wrote: [ -> ]ACP -> Users and Groups -> Users -> User to be deleted -> Options -> Delete User - This is to delete users.

AFAIK deleting all posts would require a plugin.
http://www.mybbcentral.com/thread-1727.html

thansk Joshua,my problem thread and all post,but no visit mybb central.

Forbidden

You don't have permission to access /thread-1727.html on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

I think Labrocca banned you...
interesting, I was not my fault there ..

Do other way,phpmyadmin?
DELETE FROM `mybb_threads` WHERE `uid` = 'X';
DELETE FROM `mybb_posts` WHERE `uid` = 'X';

Check your table prefix, and change the X to the ID of the user.
very thanks Matt. Smile