I want to delete all 6000 plus Comments.

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
Capt Mike
Regular
Posts: 63
Joined: Sat Mar 11, 2006 11:43 am

I want to delete all 6000 plus Comments.

Post by Capt Mike »

I robot posted 6000 something comments on my blog. I want to delete all comments and trackbacks. Everything.

How?

Stupid robots....
"Arr, ye call that an anchor?"
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: I want to delete all 6000 plus Comments.

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Capt Mike
Regular
Posts: 63
Joined: Sat Mar 11, 2006 11:43 am

Post by Capt Mike »

HA!!

Thanks!
"Arr, ye call that an anchor?"
Post Reply