Multi-ping in Movable Type
Thursday, May 2nd, 2002How to ping both weblogs.com and blo.gs when you publish from Movable Type (note that I’m assuming that you installed Movable Type in a directory named /mt/): Edit /mt/lib/MT/App/CMS.pm Find the line that reads $app->ping(Blog => $blog) or die $app->errstr; Insert a new line immediately after that, that reads: MT::XMLRPC->ping_update(‘weblogUpdates.ping’, $blog, ‘http://ping.blo.gs’) or die MT::XMLRPC->errstr; […]