Page 1 of 1
I want to delete all 6000 plus Comments.
Posted: Thu May 24, 2007 11:27 am
by Capt Mike
I robot posted 6000 something comments on my blog. I want to delete all comments and trackbacks. Everything.
How?
Stupid robots....
Re: I want to delete all 6000 plus Comments.
Posted: Thu May 24, 2007 1:49 pm
by garvinhicking
Hi!
You can do that via MySQL / phpMyAdmin:
Code: Select all
DELETE FROM serendipity_comments;
UPDATE serendipity_entries SET comments = 0, trackbacks = 0;
Then ALL comments and trackbacks to ALL entries will be deleted;
Regards,
Garvinn
Posted: Fri May 25, 2007 9:03 am
by Capt Mike
HA!!
Thanks!