Contact Us Forum Rules Search Archive
WebProWorld Part of WebProNews.com
Page One Link To Us Edit Profile Private Messages Archives FAQ RSS Feeds  
 

Go Back   WebProWorld > Search Engines > Google Discussion Forum
Subscribe to the Newsletter FREE!


Register FAQ Members List Calendar Arcade Chatbox Mark Forums Read

Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-12-2008, 02:14 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Thumbs up First date with the Googlebot: Headers and compression

Google's Webmaster Guidlelines, section Technical Guidelines:

Quote:
Make sure your web server supports the If-Modified-Since HTTP header. This feature allows your web server to tell Google whether your content has changed since we last crawled your site. Supporting this feature saves you bandwidth and overhead.
Source: google webmaster guidelines - Google Search

Do you follow this guideline already? If not, its time to look into that too:
Official Google Webmaster Central Blog: First date with the Googlebot: Headers and compression

Here are a couple tools to check your site if the "If-Modified-Since HTTP header" or "Compession" are implemented and if they work:

For If-Modified-Since:
HTTP Header Checker
or
HTTP Compression and HTTP Conditional Get test tool (beta)

For compression:
Compression Check :: Port80 Software

Last edited by Webnauts : 03-12-2008 at 02:21 AM.
Reply With Quote
  #2 (permalink)  
Old 03-12-2008, 08:21 AM
WebProWorld Veteran
 

Join Date: Jul 2004
Posts: 983
activeco RepRank 2
Default Re: First date with the Googlebot: Headers and compression

Yes, such requests should be well supported server side for the benefits of speed and bandwidth savings, thus not only for Google.
I always wondered if Google issues some penalties if server always returns fresh Date, ETag, Expires or Last-Modified headers, while actually providing non-changed document.
Some people would like having Googlebot constantly on their site.

Not only those request and return headers are important.
There is a nice tutorial originally written for Apache's mod_perl, but it explained the major headers in an excellent way.
__________________
This ad space could be yours. Contact us for affordable rates! ; )

Last edited by activeco : 03-12-2008 at 08:23 AM.
Reply With Quote
  #3 (permalink)  
Old 03-12-2008, 08:43 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

I already use the "If-Modified-Since", "If-Non-Match", "E-Tag", "Deflate", "Gzip", "ContentDigest", etc.

Can you check my HTTP Response and Request Header? Did I probably miss something important?

Thanks.

P.S. My original post issues are required by Yahoo and MSN too.

Last edited by Webnauts : 03-12-2008 at 10:08 AM.
Reply With Quote
  #4 (permalink)  
Old 03-12-2008, 09:14 AM
WebProWorld Veteran
 

Join Date: Jul 2004
Posts: 983
activeco RepRank 2
Default Re: First date with the Googlebot: Headers and compression

Apache's default setup correctly handles all usual requests.
So basically, one should take care only not to put any conflicting stuff in <head> section for static pages.
However, dynamic content headers could often be problematic for agents as the headers are generated on the fly and a programmer should properly and carefully deal with it according to language specific practices.
__________________
This ad space could be yours. Contact us for affordable rates! ; )
Reply With Quote
  #5 (permalink)  
Old 03-12-2008, 09:14 AM
kgun's Avatar
WebProWorld 1,000+ Club
 

Join Date: May 2005
Location: Norway
Posts: 5,415
kgun RepRank 3kgun RepRank 3kgun RepRank 3
Default Re: First date with the Googlebot: Headers and compression

John great post as usual. You give away too much for free.
Reply With Quote
  #6 (permalink)  
Old 03-12-2008, 09:22 AM
WebProWorld Veteran
 

Join Date: Jul 2004
Posts: 983
activeco RepRank 2
Default Re: First date with the Googlebot: Headers and compression

BTW, regarding dynamic content, a few years ago an user Alex Kemp from another forum was so kind to make a related PHP class.
__________________
This ad space could be yours. Contact us for affordable rates! ; )
Reply With Quote
  #7 (permalink)  
Old 03-12-2008, 09:49 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by kgun View Post
John great post as usual. You give away too much for free.
Well since people do not want to pay, I do not have another choice.
Reply With Quote
  #8 (permalink)  
Old 03-12-2008, 09:50 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by activeco View Post
BTW, regarding dynamic content, a few years ago an user Alex Kemp from another forum was so kind to make a related PHP class.
Thanks for sharing. I passed it to my chief developer for review.
Reply With Quote
  #9 (permalink)  
Old 03-12-2008, 12:13 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Does anyone here exclude the possibility that through the implementation of the "If-Modified-Since" HTTP Header, the bots might visit and crawl a site more frequently?
I am testing this already, but if someone knows already, please drop a note here.

Thanks.
Reply With Quote
  #10 (permalink)  
Old 03-12-2008, 02:01 PM
bobitza's Avatar
WebProWorld Pro
 

Join Date: Jan 2004
Location: Canada
Posts: 175
bobitza RepRank 1
Default Re: First date with the Googlebot: Headers and compression

Interesting topic. So far I only knew that bots can crawl gzipped xml sitemaps. Anyways, what's the benefit of all this? For compression ... save B/W? For if modified since to manipulate crawling rate?

I tested a page with one of john's tools ... I got: Last-Modified: Mon, 03 Mar 2008 17:29:42 GMT . We're still on March, is this working?
Reply With Quote
  #11 (permalink)  
Old 03-12-2008, 02:16 PM
mjtaylor's Avatar
Moderator
WebProWorld Moderator
 

Join Date: Dec 2003
Location: Florida Keys/Western NC
Posts: 1,789
mjtaylor RepRank 3mjtaylor RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by kgun View Post
John great post as usual. You give away too much for free.
Great post and it is not possible to give away too much for free. Sharing is kind of like tithing, the more you give the more comes back to you!!

Thank you, John!
__________________
M.-J. Taylor
SEO Web Design by Cyber Key Search Smart DesignŽ SEO Copywriter & Traveling Vacation Gypsy
Reply With Quote
  #12 (permalink)  
Old 03-13-2008, 01:18 AM
incrediblehelp's Avatar
Moderator
WebProWorld Moderator
 

Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,704
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by Webnauts View Post
Well since people do not want to pay, I do not have another choice.
lol, good stuff john
Reply With Quote
  #13 (permalink)  
Old 03-13-2008, 01:37 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by bobitza View Post
Interesting topic. So far I only knew that bots can crawl gzipped xml sitemaps. Anyways, what's the benefit of all this? For compression ... save B/W?
Gzip or Deflate compress your files and speeds up the loading time of your pages.

Quote:
Originally Posted by bobitza View Post
For if modified since to manipulate crawling rate?
Logically should be so. I strongly believe that is can manipulate the crawling rate.
I am now running a live test with my site and with some customers sites that did not have that implemented yet, and I should have some facts soon.

Quote:
Originally Posted by bobitza View Post
I tested a page with one of john's tools ... I got: Last-Modified: Mon, 03 Mar 2008 17:29:42 GMT . We're still on March, is this working?
The tool is working so far I am aware of. To make sure, run a test with this tool HTTP Header Checker and then with ours SEO Workers Search Engine Optimization Analysis Tool and see if there is any difference. If there is no difference, could it be that you don't understand the the meaning of the Last-Modified?

Last edited by Webnauts : 03-13-2008 at 01:50 PM.
Reply With Quote
  #14 (permalink)  
Old 03-13-2008, 02:32 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by incrediblehelp View Post
lol, good stuff john
Well it is true man.

I began to believe that people cannot make any difference between the abbreviations SEO and SSA (Social Security Administration).

Reply With Quote
  #15 (permalink)  
Old 03-13-2008, 02:52 PM
WebProWorld Veteran
 

Join Date: Jul 2004
Posts: 983
activeco RepRank 2
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by Webnauts View Post
I began to believe that people cannot make any difference between the abbreviations SEO and SSA (Social Security Administration).
How about SOE?
__________________
This ad space could be yours. Contact us for affordable rates! ; )
Reply With Quote
  #16 (permalink)  
Old 03-13-2008, 03:46 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,535
Webnauts RepRank 3Webnauts RepRank 3
Default Re: First date with the Googlebot: Headers and compression

Quote:
Originally Posted by bobitza View Post
For if modified since to manipulate crawling rate?
I mentioned before that I am observing this issue. I have setup this page if someone is interested to follow:
Google Crawl Cycle

OFF TOPIC:
I am also using that page to test a new SEO hack I came up with.

I am not using any robots meta tags with noindex and nofollow, and I do not disallow the bots to access it with robots.txt. And no kind of cloacking!

That is even more interesting. Don't you think? If that hack works, the page cannot be indexed, and not followed!

If I have used the robots.txt, still it would have been followed, and it could pass PR juice if the page had links pointing to other pages or sites.
More about: SEO Linking Gotchas Even The Pros Make | Andy Beard - Niche Marketing

God bless SEO.

Last edited by Webnauts : 03-13-2008 at 04:41 PM.
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion Forum
Tags: , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Compression gennifer Flash Discussion Forum 2 04-12-2006 08:44 AM
Video Streaming compression and upload webdiva Graphics & Design Discussion Forum 0 01-04-2005 11:40 PM
Video compression and upload webdiva Graphics & Design Discussion Forum 0 01-04-2005 06:08 PM
Quicktime compression? thedriftwoodcompany Graphics & Design Discussion Forum 1 07-17-2004 06:03 PM
video compression tj Graphics & Design Discussion Forum 14 10-28-2003 01:16 AM