Feb 24 2010

Ping pingomatic.com services with PHP

Category: Php,Spiders & web botsGiulio Pons @ 11:28 pm

Ping-o-matic is a service that calls (ping) server engines and popular services to notify them that you have new contents on your site. This will help you to get your pages indexed on that servers and so it should increase your traffic.
I don’t know if this system works, but it’s implemented also in any wordpress installation, so telling Ping-o-matic that you have new contents should be a good thing. :-)
I’ve searched the web for a function to do this with php, but I didn’t found it and I’ve decided to write it by myself.

Ping-o-matic as many other services works with XML-RPC protocol, the acronym means XML Remote Procedure Call. That is to say that you can call some servers and tell them to execute some action remotely. In this case we use XML-RPC protocol to call Ping-o-matic and tell him: “EHY! I’ve updated my site, here is the link!“.
Ping-o-matic take this link and send it to many other popular services.

The complex part, for me, was understing XML-RPC rules and build the correct headers to call the service. The call is made with fsockopen php function. Here is the function that will be added to the next version of Mini Bot Class.

/*
--------------------------------------------
 $title contains the title of the page you're sending
 $url is the url of the page
 $debug true print out the debug and show xml call and answer
--------------------------------------------
 the output is an array with two elements:
 status: ok / ko
 msg: the text response from pingomatic
--------------------------------------------
*/
function pingomatic($title,$url,$debug=false) {
	$content='<?xml version="1.0"?>'.
		'<methodCall>'.
		' <methodName>weblogUpdates.ping</methodName>'.
		'  <params>'.
		'   <param>'.
		'    <value>'.$title.'</value>'.
		'   </param>'.
		'  <param>'.
		'   <value>'.$url.'</value>'.
		'  </param>'.
		' </params>'.
		'</methodCall>';

	$headers="POST / HTTP/1.0\r\n".
	"User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729)\r\n".
	"Host: rpc.pingomatic.com\r\n".
	"Content-Type: text/xml\r\n".
	"Content-length: ".strlen($content);

	if ($debug) nl2br($headers);

	$request=$headers."\r\n\r\n".$content;
	$response = "";
	$fs=fsockopen('rpc.pingomatic.com',80, $errno, $errstr);
	if ($fs) {
		fwrite ($fs, $request);
		while (!feof($fs)) $response .= fgets($fs);
		if ($debug) echo "<xmp>".$response."</xmp>";
		fclose ($fs);
		preg_match_all("/<(name|value|boolean|string)>(.*)<\/(name|value|boolean|string)>/U",$response,$ar, PREG_PATTERN_ORDER);
		for($i=0;$i<count($ar[2]);$i++) $ar[2][$i]= strip_tags($ar[2][$i]);
		return array('status'=> ( $ar[2][1]==1 ? 'ko' : 'ok' ), 'msg'=>$ar[2][3] );
	} else {
		if ($debug) echo "<xmp>".$errstr." (".$errno.")</xmp>";
		return array('status'=>'ko', 'msg'=>$errstr." (".$errno.")");
	}
}
Share

Related posts:

  1. Mixing bots to gain new services
  2. Validate email with smtp
  3. Test if a remote url exists with PHP and CURL
  4. PHP google images mini bot
  5. Bot that retrieves url meta data and other infos

Tags: , , , , , , , ,

24 Responses to “Ping pingomatic.com services with PHP”

  1. Haber Pan says:

    This function is working succesfull.
    Thank you my brother.

  2. JDG says:

    Appreciate the script!

  3. Aiko says:

    Implemented this script in my blog to ping with every new post.
    It works like a charm !!

    Thank you for sharing this code!

  4. Aiko says:

    Made some small changes (pingomatic to feedburner) and now the script pings feedburner as well.
    Guess it can be used for more services.

    It’s a great script. I made a blogpost about this at http://blog.atgp.nl/index.php?id=73 . It’s in Dutch so you might gain some fame in the Netherlands :-)

    Thanks again!

  5. admin says:

    I’ve read your post with google translate, thanks!

  6. steven says:

    yeah! it works! I even had it converted using curl… :)
    btw there’s a little question i had in mind about the return xml from pingomatic…
    when the ping is successful, pingomatic replied with xml which contain “Pings being forwarded to 13 services!”…what I have no idea with is the 13 services.. what services exactly those 13 really are? I’ve been searching the internet about that but no luck..
    Do you know what it is? or anyone know?

    thanks & regards,
    steven

  7. Andrew says:

    Hello!Thanks a lot for this amazing script.I just have some questions.. because I cannot make it run.Does this script work with any website?Could you please provide some install instructions because I don’t have too many knowledges about php.Where to add the title and the url?Thank you!!!

  8. outsource says:

    It works fine for me, tried it with XML RPC for IceRocket and it’s working as well

  9. M. Singh says:

    Will it automatically publish content to pingomatic, Whenever a new post is published?
    Or we have to run this script everytime.

  10. Orkiestry weselne says:

    For me the best SEO script ever made :)

    Who is green guy down?

  11. andi says:

    finally.. 2 years ago, i was searching some methods to ping pingomatic.com for my blog script, but i didn’t find it and i stop my own php blog project,, but now, there’s a hope to rebuild my script.. thanks dude… :D

  12. Shaaam says:

    Finally i get the solution, this is good script and works fine for me. Now i can tweet and ping both.

  13. Udin says:

    I have implemented your script, how to make sure that this script is working well in my site ? thanks for the explanation

  14. tech says:

    nice script, very nice.

    Thanks for sharing

  15. Fab Articles says:

    Awesome script, cheers dude – saved me a lot of time and effort lol :) x

  16. How to get rid of shin splints says:

    Thank you so much for this. Saved me a lot of coding time. Much appreciated.

  17. Noticias online says:

    Do you know if this works with other ping sites ?

  18. dowcipy says:

    this is very helpful for me. Thank you.

  19. oom says:

    thanks for sharing, but.. can you show me for demo use this script? thanks before

  20. yuliang says:

    just a question, can u ping other services as well?

  21. Sabine says:

    how can use the script?
    only with linux or windws? thanks

  22. Hung Nguyen says:

    Sorry mate,
    Run your script but get error: Array ( [flerror] => [message] => Pings being forwarded to 11 services! )
    I dont know success or failure :(

  23. Giulio Pons says:

    That message it’s an ok messagge! :-)

Leave a Reply