post-page

Ping Yahoo RSS from WordPress and Moveable Type

5
responses
by
 
on
January 26th, 2004
in
General

Jeremy pointed out a method to ping Yahoo RSS crawler for Moveable Type blogs and he did a great job explaining it with pictures. So if you are using MT, check out his entry. I consequently wrote a little pinger for WordPress which does the same thing.

Add this function to your my-hacks.php:
// pings Yahoo.com RSS Crawler
function pingYahoo($blog_ID = 1) {
// original function by Dries Buytaert for Drupal
global $blogname,$siteurl,$blogfilename;
if ((!(($blogname==”my weblog”) && ($siteurl==”http://example.com”) && ($blogfilename==”wp.php”))) && (!preg_match(“/localhost\//”,$siteurl))) {
$client = new xmlrpc_client(“/RPC2”, “api.my.yahoo.com”, 80);
$message = new xmlrpcmsg(“weblogUpdates.ping”, array(new xmlrpcval($blogname), new xmlrpcval($siteurl.”/”.$blogfilename)));
$result = $client->send($message);
if (!$result || $result->faultCode()) {
return false;
}
return true;
} else {
return false;
}
}

Find these lines in your post.php (inside wp-admin folder) :
pingWeblogs($blog_ID);
pingBlogs($blog_ID);

And add this right after that:
pingYahoo($blog_ID);

All done and pingin!

heading
heading
5
Responses

 

Comments

  1. Craig says:

    Worth noting that there’s actually 3 places in post.php which need changing, as well as locations in xmlrpc.php in the root folder, and wp-mail.php. Bit hacky, should really be some global place which says “notify everyone who cares” and then call each of the pingXYZ() functions from there, and everywhere which needs to notify things just calls that one function.

  2. Mark says:

    You dont really need to change it in all those places, unless you use email blogging frequently. The ping will work fine in one place inside post.php. xmlrpc.php does not exist in 1.0 and above. It has been replaced by class-xmlrpc.php. In addition, no change needs to be made to class-xmlrpc.php. (If I am wrong, please point out for everyone’s benefit)
    To address the notify everyone who cares issue, you could just do as Matt said:

    With 1.01 you could just add:

    add_filter(‘action_publish_post’, ‘pingYahoo’);

    to your my-hacks.php.

  3. bob w says:

    It may be possible with Moveable Type ,but it is impossible with Typepad. even typepad pro. i asked support and they confirmed it. any chance Yahoo could speak directly to Typepad and get some movement on this issue?

    THanks

  4. Mark says:

    You would have to talk with the Yahoo developers to see where that could be headed. I am just a puny student. I really have no experience with Typepad and I would be lying if I told you I knew how to solve the problem.
    However, if you have access to the Typepad source code, I could try to whip something up for you.



Trackbacks/Pingbacks

  1. […] Yahoo: en 3 sencillos pasos” y luego Mark hizo lo propio con su post llamado ”hacer ping al RSS de Yahoo con WordPress y Mova […]

Obviously Powered by WordPress. © 2003-2013

css.php