Find jobs - Anime Downloads - Submit articles - Air Jordans - Spanish Property

PDA

View Full Version : Google bot


allwayslearning
Nov 6th 2006, 10:47 am
How do I know when the last time the google bot visits my site?

frankcow
Nov 6th 2006, 10:57 am
check your raw weblogs

TVCokeCan
Nov 6th 2006, 11:58 am
However if you don't have Cpanel you could always include this code into your site. [PHP pages]

<?
$email = "yourname@example.com";
if( eregi("googlebot", $_SERVER['HTTP_USER_AGENT']) )
{
mail($email, "Googlebot Alert",
"Google just indexed your following page: " .
$_SERVER['REQUEST_URI']);
}
?>