1 daveatkins Apr 16, 2008 02:32
3 ecology Apr 20, 2008 05:04
4 tilqicom Apr 20, 2008 12:14
afaik, best way to prevent comment spamming is either using [url=http://manual.b2evolution.net/Plugins/captcha_img_plugin]Image verification (Captcha Image)[/url] or using the [url=http://wonderwinds.com/hackblog.php/2007/12/turing-test-plugin-updated-for-v220]Turing Test plugin[/url]
and btw you can disable trackbacks, under blog settigns > Features tab
5 ecology May 16, 2008 23:51
Help! Some of my posts have hundreds of existing spam trackbacks. How can I automatically select and delete these spam?
Many thanks,
ecology
6 ecology May 17, 2008 00:21
I have managed to delete some existing trackbacks by adding banned words to antispam but it is slow going.
7 stk May 17, 2008 01:33
I'd try what ¥åßßå suggested:
Hit phpMyAdmin and go to the SQL pane ...
DELETE from 'evo_comments'
WHERE 'comment_type' = 'trackback'
All yer trackback spam is *poof* gone :D
8 ecology May 21, 2008 01:23
Thanks, but I haven't tried that solution because I don't know how to get to PhpMyAdmin. I appreciate your direction.
Thanks.
ecology
9 ecology May 21, 2008 01:32
Found php myadmin and sql but
DELETE from 'evo_comments'
WHERE 'comment_type' = 'trackback'
is incorrect code. I am using MySQL client version: 4.1.22.
10 ecology May 21, 2008 01:45
Yes! I found help in the MySQL 5.0 manual and here is the correct code: DELETE FROM evo_comments WHERE comment_type = 'trackback'.
Thanks stk.
- ecology
11 stk May 21, 2008 01:49
no worries ... seems odd that it was tossing errors b/c of single quotes (code looks the same, minus those). Then again ... the mySQL stuff does seem to be picky.
Glad you got it sorted. :D
12 edb May 23, 2008 17:05
It is probably due to the 2 different types of single quotes available on a keyboard. Surrounding the field name, phpmyadmin likes to see the ones that come from the key on the left of the numbers across the top of the keyboard. The key with the tilda on it, which is what I think that thing is called. ~ and ` on the same key. For the value name, phpmyadmin likes the traditional single quote character that looks like ' which hopefully will be different in this post.
13 happeh Dec 26, 2009 18:17
This post should be stickied. I enabled trackback because it sounded helpful. Next time I checked the email there was 1000 trackback spams.
Deleting those one at a time was giving me a really bad attitude towards the blog software.
Now they are all gone with that MySql command
DELETE FROM evo_comments
WHERE comment_type = 'trackback'
You can use PhpMyAdmin to delete all comments of type trackback.
¥