View Full Version : How Do I find if google bot is visiting my site?
sudarshannus
Oct 16th 2008, 7:14 am
How do I find when google bot is visiting my site? Is there any way to check that out?
bacanze
Oct 16th 2008, 7:19 am
Your CPanel web logs should do.
fri3ndly
Oct 16th 2008, 7:26 am
Your CPanel web logs should do.
Thats if you have Cpanel.
If you do simply go to the 'Latest Visitors' tab or Webalizer and that will tell you :)
sooribabu
Oct 16th 2008, 7:49 am
if your site is developed in php add this/customise this code to check google and yahoo bots visit
<?php
$email = "youremail@youremail.com";
if(eregi("yahoo! Slurp",$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "The Yahoo bot came to call yoursite",
"Yahoo has visited: ".$_SERVER['REQUEST_URI']);
}
if(eregi("googlebot",$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "The Googlebot came to call your site",
"Google has visited: ".$_SERVER['REQUEST_URI']);
}
?>
justinlorder
Oct 16th 2008, 7:55 am
Google webmaster tools tell you everything. Didn't you know?
Webmaster tools even let you know how many byte did google download from your site.
Every details there, you can't miss that .
another way is sooribabu 's php code.
abercrombie
Oct 16th 2008, 8:46 am
i usually use cpanel > awstats and there's a section to indicate last visits and how many times your robots.txt file has been hit.
andaman
Oct 16th 2008, 9:08 am
put stat counter into your website and check it
angilina
Oct 16th 2008, 12:25 pm
You can use google webmaster tools to see when google bot visited your site. I saw somewhere in this forum that we can also see google bot via google analytics. I suggest you search for some details, may be you will find the way to use google analytics to see google bot.
Nonny
Oct 16th 2008, 2:40 pm
You should get a Google Webmaster Tools account, if you haven't already.
http://www.google.com/webmasters/tools/
That will give you stats on Google's crawls of your web site, plus lots of other information.
I don't think Google Analytics has that data, since the bots don't execute the javascript used for tracking.
gitamurtibhandar
Oct 16th 2008, 11:01 pm
this is check your cpanal
hans
Oct 16th 2008, 11:43 pm
my preferred method in addition to correct below methods is to download ( and save for 1+ yrs ) all access_log files for offline-processing by suitable software.
any decent available offline log analyzer tool gives you stats for bogs.
the offline method has the advantage to have all access data on hand in case of security problems. for that reason I also keep access_log files for up to a year or longer. to have back in time data for in depth research if needed. I needed - you'll need as well sooner or later!
SEOpaw
Oct 16th 2008, 11:47 pm
1. Cpanel web logs
2. Statcounter
3. analytics
4. web master tool
genuineseo
Oct 17th 2008, 1:10 am
you can try through Cpanel web logs or analytics.
Mr Brightside
Oct 17th 2008, 3:41 am
Google Webmaster Tools is a good start and as the previous poster mentioned Analytics can also give a good indication if the search bots are crawling your pages as it can be displayed in the 'Content' tab of most popular pages (if its gaining visitors its a good indication that the pages are indexed)
kmy02
Oct 17th 2008, 3:53 am
If your website is integerated with Google Analytics, you can check it at Visitors > Browser Capabilities > Browsers
You can also check it through Google Webmaster Tool.
Cheers..
ciplseo
Oct 17th 2008, 4:57 am
You can use Google Webmaster Tools (https://www.google.com/accounts/Login?continue=http%3A%2F%2Fwww.google.com%2Fwebmasters%2Ftools%2Fdashboard&followup=http%3A%2F%2Fwww.google.com%2Fwebmasters%2Ftools%2Fdashboard&hl=en&service=sitemaps) and after you can observe when Googlebot visited your site
jiggymehta
Oct 17th 2008, 5:00 am
I use google webmaster tools and thats pretty much it..
kidsnscience
Oct 17th 2008, 5:28 am
just check google last cache date of crawl page
bytuncay
Oct 16th 2009, 12:49 pm
www.googlebotlog.com
googlebot crawling activity logging
Add your site and your site crawling activities of the Save All Spiders Bot, Online Check
seolion
Oct 24th 2009, 8:00 am
if your site is developed in php add this/customise this code to check google and yahoo bots visit
<?php
$email = "youremail@youremail.com";
if(eregi("yahoo! Slurp",$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "The Yahoo bot came to call yoursite",
"Yahoo has visited: ".$_SERVER['REQUEST_URI']);
}
if(eregi("googlebot",$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "The Googlebot came to call your site",
"Google has visited: ".$_SERVER['REQUEST_URI']);
}
?>
Lol! Thats the easiest way to fill your inbox if you include it in all pages and there is a lot of crawler activity.
As many have already mentioned, Web server logs are the best (may not be easiest) way to see the crawler activity.
If you can get a day's log or something simply search for Googlebot in it.
CannonLogin
Oct 25th 2009, 5:15 pm
If I were you I'd check the cpanel of your site, and look at your awstats, or install google analytics.
manofasia
Oct 27th 2009, 5:54 pm
Use webmaster tools from google..it give info when the last time google bot crawl your site
aix4200
Nov 7th 2009, 8:53 am
on share domain hosting you can ssh to your servers and then
use putty for ssh
1.) cd to access_log (change directory)
2.) Next run search for Googlebot using grep (global regular expression search )
$grep Googlebot sitenamelog
You can find information on when Google bot visits your site and what's it's picking up and what Googlebot is discarding
enjoy
:-)
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.