Articles: 843 | Categories: 148   
   
   
Home Articles Contact Us
 
 
 
 
Googlebot Monitor (0 Comments)
Admin: Posted Date: April 4, 2010

Googlebot Monitor is a free PHP script that notifies you when a google bot visits your page. Configure Googlebot Monitor to send email to any adress or with some coding, have it send to varriety of users.

Googlebot Monitor

 

This is a free php script that notifies you when google bot visits your page. To install this script, simply copy paste into your page and edit email address you want to be notified.

                             

if(eregi("googlebot",$_SERVER['HTTP_USER_AGENT'])) {
  $s = "";
  foreach($_SERVER as $item => $value) {
    $s .= "\n$item : $value";
  }
  $sdate = date("Y-m-d h:i:s");
  $message = <<<MESSAGE
Visit date:$sdate
Information:
=================================
$s
=================================
MESSAGE;
  if($google_alert) {
    mail("youremail@yourdomain.com", "googlebot alert", $message);
  }
}
 

 

 
 
Add a Comment:
 
(You must be signed in to comment on an article. Not a member? Click here to register)
   
Title:

Comments: