February 14, 2005

silhouette3.JPG From the desk of Jane Galt:

Help!

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 links
Comments
Posted by: Chris on February 14, 2005 11:19 AM

You 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: Kathy K on February 14, 2005 12:01 PM

It'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:27 PM

By the way, don't panic if you see one or two come through, I'm testing the blocks.

Posted by: Jack on February 14, 2005 12:53 PM

Seems like a rough start to Valentine's Day...

Posted by: Kathy K on February 14, 2005 1:25 PM

It'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: fling93 on February 14, 2005 3:06 PM

Well, 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: The Lonewacko Blog on February 14, 2005 8:20 PM

Or, 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: dave munger on February 15, 2005 6:26 AM

Personally, 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.

Comments are Closed.