Mass Remove Blog Posts
Be sure to make backups of your database or at least the following tables:
blog blog_text blog_subscribeentry Now you will need some skills in phpmyadmin and mySQL, but basically login to phpmyadmin and search the blog table and see where your spam first began. I will use the 1000th line as example. You will need to run the following query as it will delete anything posted after the 1000th blog post, simply edit the query to reflect the actual numbers you found inside the blog table. Also change the "prefix_" to your prefix in the database rather it be vb_ or vb4_ Code:
delete from prefix_blog where blogid > 1000; delete from prefix_blog_text where blogid > 1000; delete from prefix_blog_subscribeentry where blogid > 1000; Download No files for download. |
Similar Mods
Add-On Releases dmActivityStream - Blog Posts and Blog Comments | vBulletin 4.x Add-ons |
Remove mass-prune posts option in ModCP | vBulletin 3.0 Full Releases |