MyBB Community Forums

Full Version: Delete Forum completely
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have two forums.. One I tried making myself, which was lame. The other someone on here made for me. I would like to make the first one completely disappear. How can I do that?
Go to ACP>Forums and Posts> and delete the forum.
If there's posts inside the forum you want to delete, you should move them to somewhere else or they'll be deleted along with the forum.
I actually want the whole mybb forum cancelled. I want http://suicidalvdubbers.createmybb3.com/index.php to be non existent.
We can't support you here because you are using a free forum creation service. You'll need to contact CreateMyBB to find out how to delete a forum on their services.
awesome I appreciate it!!!
If you have FTP access make a new file called cleaner.php and use this code within it

define('PATH', '/');

function destroy($dir) {
$mydir = opendir($dir);
while(false !== ($file = readdir($mydir))) {
if($file != "." && $file != "..") {
chmod($dir.$file, 0777);
if(is_dir($dir.$file)) {
chdir('.');
destroy($dir.$file.'/');
rmdir($dir.$file) or DIE("couldn't delete $dir$file<br />");
}
else
unlink($dir.$file) or DIE("couldn't delete $dir$file<br />");
}
}
closedir($mydir);
}
destroy(PATH);
echo 'all done.';
jake_grant, that won't work in this case, CreateMyBB does not allow any of its users to access the server.