2013-01-06, 02:40 PM
2013-01-06, 03:12 PM
You probably want to take a look at the Goodbye Spammer plugin.
2013-01-06, 03:57 PM
Goodbye Spammer plugin is deleting user by user.
i want delete all threads of all users .. which are under 'Moderator Approval'
i want delete all threads of all users .. which are under 'Moderator Approval'
2013-01-06, 06:44 PM
If you are sure you don't have any unapproved threads that you want approved place this code in a new page:
Once you save that in a file on your server, just navigate to the page to execute it.
<?php
define("IN_MYBB", 1);
require_once "global.php";
$tids = 0;
$query = $db->simple_select("threads", "tid", "visible=0");
while($thread = $db->fetch_array($query))
{
$tids .= "," .$thread['tid'];
}
$db->query("DELETE FROM mybb_posts WHERE tid IN ('$tids')");
$db->query("DELETE FROM mybb_threads WHERE tid IN ('$tids')");
?>
Once you save that in a file on your server, just navigate to the page to execute it.