<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mohammed CHERIFI &#187; notification passage google</title>
	<atom:link href="http://www.mcherifi.org/tag/notification-passage-google/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mcherifi.org</link>
	<description>Another Web Developper Blog!</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:42:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Être notifié au passage du robot google sur son site</title>
		<link>http://www.mcherifi.org/developpement-web/php/etre-notifie-au-passage-du-robot-google-sur-son-site.html</link>
		<comments>http://www.mcherifi.org/developpement-web/php/etre-notifie-au-passage-du-robot-google-sur-son-site.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 22:56:59 +0000</pubDate>
		<dc:creator>Mohammed CHERIFI</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[googlebot]]></category>
		<category><![CDATA[notification passage google]]></category>

		<guid isPermaLink="false">http://www.mcherifi.org/?p=367</guid>
		<description><![CDATA[TweetLe référencement est parmi les grands soucis qu&#8217;un webmaster ou blogueur peuvent avoir, A chaque fois qu&#8217;on rajoute du contenu, la question qui se pose est : Quand est ce que le robot de Google passera pour l&#8217;indexer ? Aujourd&#8217;hui j&#8217;ai eu l&#8217;idée de partager une petite astuce pour être alerté au passage de Google [...]]]></description>
			<content:encoded><![CDATA[<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.mcherifi.org/developpement-web/php/etre-notifie-au-passage-du-robot-google-sur-son-site.html" data-text="Être notifié au passage du robot google sur son site" data-count="horizontal">Tweet</a><p><img src="http://www.mcherifi.org/wp-content/uploads/2009/10/googlebot1-150x150.jpg" alt="Google Bot" title="Google Bot" width="150" height="150" class="alignleft size-thumbnail wp-image-370" />Le référencement est parmi les grands soucis qu&#8217;un webmaster ou blogueur peuvent avoir, A chaque fois qu&#8217;on rajoute du contenu, la question qui se pose est : Quand est ce que le robot de Google passera pour l&#8217;indexer ? Aujourd&#8217;hui j&#8217;ai eu l&#8217;idée de partager une petite astuce pour être alerté au passage de Google sur votre site!</p>
<p>En fait pour indexer un site, google possède plusieurs robots (spider/crawler), ce sont des programmes qui tournent en boucle en parcourant le web et enregistrent tous les contenus qu&#8217;ils trouvent sur leurs chemin! Il en existe plusieurs :</p>
<ul>
<li>GoogleBot : c&#8217;est le robot qui indexe les pages de contenu</li>
<li>Googlebot-Image: celui qui indexe les images (images.google.com)</li>
<li>AdsBot-Google: le robot de Google Adsense</li>
<li>Mediapartners-Google: sert à indexer les sites et à proposer la publicité en conséquence dans le cadre d&#8217;une partenaria (exemple lycos)</li>
<li>&#8230;</li>
</ul>
<p>Il est possible de détecter le passage de l&#8217;un de ces robots sur son site, l&#8217;idée est de faire un test sur la variable global $_SERVER['UserAgent'], qui contient le nom du navigateur qui a effectué la requête HTTP!</p>
<p>Voici un bout de code pour envoyer un mail à chaque passage de GoogleBot sur votre site : </p>
<pre class="brush: php">
if(!empty($_SERVER[&#039;HTTP_USER_AGENT&#039;])
{
  if(strpos($_SERVER[&#039;HTTP_USER_AGENT&#039;], &#039;googlebot&#039;) !== false)
  {
    $webmastermail = &#039;webmaster@domain.ltd&#039;;
    mail($webmastermail, &#039;Alerte Googlebot&#039;,&quot;GoogleBot t&#039;as rendu visite sur la page : &quot; . $_SERVER[&#039;REQUEST_URI&#039;]);
   }
}
</pre>
<p>Et voilà, grâce à ce bout de code vous serai notifiés à chaque passage du robot Google sur votre site!</p>
<p>Parcontre ce n&#8217;est pas génial coté securité! Dans une requêtte HTTP l&#8217;entête HTTP_USER_AGENT est modifiable, du coup un utilisateur malveillant peut flooder votre boite mails avec un grand nombre de requêtes ayant UserAgent: Googlebot! La solution est de faire un lookup sur l&#8217;adresse IP envoyant la requête et résoudre le nom de domaine avec la fonction <a href="http://www.php.net/gethostbyaddr" target="_blank">gethostbyaddr</a>, si le nom de la machine ne correspond pas à *.googlebot.com pas d&#8217;envoi d&#8217;email ;)</p>
<pre class="brush: php">
if(!empty($_SERVER[&#039;HTTP_USER_AGENT&#039;])
{
  if(strpos($_SERVER[&#039;HTTP_USER_AGENT&#039;], &#039;googlebot&#039;) !== false)
  {
    if(preg_match(&#039;#.*?\.googlebot\.com$#&#039;,gethostbyaddr($_SERVER[&#039;REMOTE_ADDR&#039;])))
    {
      $webmastermail = &#039;webmaster@domain.ltd&#039;;
      mail($webmastermail, &#039;Alerte Googlebot&#039;,&quot;GoogleBot t&#039;as rendu visite sur la page : &quot; . $_SERVER[&#039;REQUEST_URI&#039;]);
    }
    else
    {
     // on peux bannir l&#039;adresse en la rajoutant au fichier .htaccess
    /* if(is_writable(&#039;.htaccess&#039;))
     {
       $h = fopen(&#039;.htaccess&#039;,&#039;a+&#039;);
       fwrite($h,&quot;\nDeny from: &quot;.$_SERVER[&#039;REMOTE_ADDR&#039;]);
       fclose($h);
      }
    */
    }
  }
}
</pre>
<p>A savoir que bannir l&#8217;utilisateur si le hostname ne correspond pas n&#8217;est pas une très bonne idée vu que google peut changer de domaine (*.googlebot.com), par contre ça vous évitera de recevoir un joli paquet d&#8217;emails, j&#8217;ai commenté cette partie du code pour éviter de bannir google si jamais *.googlebot.com change ;)</p>
<p>J&#8217;espère que cet astuce vous sera utile!</p>
<p>Bonne nuit!</p>



Partager cet article:


	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&d=http://twitter.com/home?status=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site%20-%20TARGET" title="Twitter"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&d=http://www.facebook.com/share.php?u=TARGET%26t=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site" title="Facebook"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;annotation=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="Google Bookmarks"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;notes=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="del.icio.us"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="Netvibes"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&urllanguage=fr" title="viadeo FR"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/viadeo.png" title="viadeo FR" alt="viadeo FR" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;bodytext=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="Digg"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;source=Mohammed+CHERIFI+Another+Web+Developper+Blog%21&amp;summary=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="LinkedIn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="Slashdot"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="Sphinn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site" title="Mixx"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="Identi.ca"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;partner=sociable" title="Print"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=pingfm&t=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&d=http://ping.fm/ref/?link=TARGET%26title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site%26body=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="Ping.fm"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=mailto&t=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&d=mailto:?subject=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site%26body=TARGET" title="email"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;selection=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d" title="Posterous"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site" title="Reddit"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;submitHeadline=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;submitSummary=Le%20r%C3%A9f%C3%A9rencement%20est%20parmi%20les%20grands%20soucis%20qu%27un%20webmaster%20ou%20blogueur%20peuvent%20avoir%2C%20A%20chaque%20fois%20qu%27on%20rajoute%20du%20contenu%2C%20la%20question%20qui%20se%20pose%20est%20%3A%20Quand%20est%20ce%20que%20le%20robot%20de%20Google%20passera%20pour%20l%27indexer%20%3F%20Aujourd%27hui%20j%27ai%20eu%20l%27id%C3%A9e%20d&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;partner=sociable" title="PDF"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/feed" title="RSS"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site" title="Diigo"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;u=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="Fark"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site" title="Blogosphere News"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=%C3%8Atre%20notifi%C3%A9%20au%20passage%20du%20robot%20google%20sur%20son%20site&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" title="blogtercimlap"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>


<br/><br/>
<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Fwww.mcherifi.org%2Fdeveloppement-web%2Fphp%2Fetre-notifie-au-passage-du-robot-google-sur-son-site.html" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcherifi.org/developpement-web/php/etre-notifie-au-passage-du-robot-google-sur-son-site.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

