rishimodi
Account Closed
- Impact
- 35
Googlebot Monitoring Script :
A free php script that notifies you when google bot visits your page.
To install the script, copy paste the script given below on your index 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("[email protected]", "googlebot alert", $message);
}
}
A free php script that notifies you when google bot visits your page.
To install the script, copy paste the script given below on your index 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("[email protected]", "googlebot alert", $message);
}
}






