TheInsaneManiac
01-09-2013, 11:00 PM
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_
delete from prefix_blog where blogid > 1000;
delete from prefix_blog_text where blogid > 1000;
delete from prefix_blog_subscribeentry where blogid > 1000;
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_
delete from prefix_blog where blogid > 1000;
delete from prefix_blog_text where blogid > 1000;
delete from prefix_blog_subscribeentry where blogid > 1000;