We're under trackback attack. Can anyone tell me how to turn off trackback globally?
Posted by Jane Galt at February 14, 2005 10:54 AM | TrackBack | Technorati inbound linksYou need to download MTClose2 from http://thedeadone.net/sw/000480.shtml and run it. It will close trackbacks on all yout old posts.
I did it a few weeks ago. Works great.
Posted by: Chris on February 14, 2005 11:19 AMIt's turned off at the moment. I'll see if I can figure out how to block this latest set.
Posted by: Kathy K on February 14, 2005 12:01 PMBy the way, don't panic if you see one or two come through, I'm testing the blocks.
Posted by: Kathy K on February 14, 2005 12:27 PMIt's just the spammer's way of saying 'will you be my Valentine'...
Nevermind Cupid, give me a good hunting bow and one of those spammers in my sights...
(No, I wouldn't shoot... but I'd sure enjoy watching them beg.)
Posted by: Kathy K on February 14, 2005 01:25 PMWell, if you're hosted on a UNIX machine and know how to telnet in, you can turn off all the permissions of MT's trackback script. Go into the MT directory, and do a:
chmod 0 mt-tb.cgi
That second thing is a zero. This keeps anybody from running that script, effectively disabling trackbacks. When you want to turn it back on do:
chmod 755 mt-tb.cgi
Posted by: fling93 on February 14, 2005 03:06 PMOr, you can just enter:
mv mt-tb.cgi mt-tb.cgi.illremovethislater
Then, when later comes:
mv mt-tb.cgi.illremovethislater mt-tb.cgi
Or, you can login to MySQL (if you use that) and enter:
select distinct tbping_source_url from mt_tbping;
- to see a list of all the pings
delete from mt_tbping where tbping_source_url = 'http://spammername.com';
- replace spammer name with the bad URL; be very careful
delete from mt_tbping where LOCATE('spammername', tbping_source_url) > 0;
- replace spammer name with the bad URL; be very careful since this uses just part of the URL, not the whole URL
update mt_trackback set trackback_is_disabled = 1;
- untested, but might turn off trackbacks on all posts. Change the 1 to 0 to turn them back on.
Posted by: The Lonewacko Blog on February 14, 2005 08:20 PMPersonally, as a reader I'd rather sort through a little trackback spam than not see people who are linking to you. But that's just me. Trackback is a pretty cool thing, and it'd be a shame to have to disable it.
As a blogger I hate any kind of spam, but if there's any spam I'm willing to tolerate, it's trackback spam.
Posted by: dave munger on February 15, 2005 06:26 AMComments are Closed.