where's the salt?

04/16
2010

Site Speed: The new Google ranking factor (21,797 views)

Google
Although announced back in November of 2009 (Site Speed, Google’s Next Ranking Factor), it seems like this update has been overlooked by most webmasters, site owners and a lot of SEO-ers.

In a Webmaster Central Blog entry (Using site speed in web search ranking) dated Fri, Apr 9 2010, they finally made it official.

So give your pages a little overhaul and get them up to speed!


Following is a selection of tools and options you can use to increase your page’s speed:

Speed Testing:

Download and install Google’s Page Speed tool for Firefox and run it to get an idea of what can be optimized.
Page Speed

After:
PageSpeed after optimization

Install the Web Developer Add-On for Firefox and check the document size (Web Developer > Information > View Document Size):
WebDeveloper Document Size

After:
WebDeveloper after optimization

Or try Zoompf’s performance tester: http://zoompf.com. It returns a long list of issues including solutions.

Compression:
Chances are all speed testing tools will tell you to enable (gzip) compression if you haven’t already done so.
To check if your site currently has compression enabled, check out GIDNetwork’s web page compression / deflate / gzip test tool: http://www.gidnetwork.com/tools/gzip-test.php

To enable compression, you can either add a couple of directives to your .htaccess file, or add one single line of PHP to your page:

.htaccess:

<Files *.htm>
SetOutputFilter DEFLATE
</Files>

This directive compresses all *.htm files.
To add compression for other file types, simply add more file types to your .htaccess file:

<Files *.css>
SetOutputFilter DEFLATE
</Files>

If you don’t have access to your .htaccess file or if your server doesn’t support mod_deflate, add this line of PHP code to your page(s):

<?
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) 
    ob_start("ob_gzhandler"); 
    else ob_start(); 
?>

What it does is to check for the presence of "Accept-encoding: gzip" in the request header and returns a gzipped version of the requested file, otherwise it returns the regular (uncompressed) version.
(Note: We don’t have .NET or .ASP or IIS solutions. Please don’t ask.)

Deferred JavaScript Loading/Asynchronous Tracking:
If you are using Google Analytics, there is yet another little trick. Have you noticed the new "Asynchronous Tracking" in your Analytics settings? Google announced it in December 2009 (Google Analytics Launches Asynchronous Tracking), and you can find it under Analytics Settings > Profile Settings > Tracking Code

Replace your existing Google Analytics code with the new code and it won’t delay rendering of the page, meaning you can put it in a higher spot in your page’s code.

Tools (Firefox addons – require Firebug):
YSlow: http://developer.yahoo.com/yslow/
PageSpeed: http://code.google.com/speed/page-speed/
Web Developer Add-on: https://addons.mozilla.org/en-US/firefox/addon/60

Online tools:
Slowshow: http://www.showslow.com/
GIDNetwork: http://www.gidnetwork.com/tools/gzip-test.php
Zoompf: http://zoompf.com/
Webpagetest: http://www.webpagetest.org/test

(Visited 5,326 times, 1 visits today)

Tags:

Date posted: Friday, April 16th, 2010 at 6:43 am (13 years, 11 months ago.)
Posted in: business mix, news mix, tech mix
Comments RSS Feed Comments RSS Feed
Reply
Ttrackback

9 Responses to “Site Speed: The new Google ranking factor”

  1. 1

    […] This post was mentioned on Twitter by ninanet. ninanet said: Is your site up to speed? Site Speed: The new Google ranking factor http://bit.ly/d0gD4h […]

    Tweets that mention Site Speed: The new Google ranking factor -- Topsy.com on April 16th, 2010 at 2:02 pm
  2. 2

    […] Site Speed: The new Google ranking factor […]

    How to Conduct a Computer Speed Test | Error Fix on April 17th, 2010 at 10:02 pm
  3. 3

    So will other sites like Twitter and possibly google itself fall behind in rankings as well as other sites like facebook and myspace for loading and operating slowly?

    Dave on April 18th, 2010 at 5:38 pm
  4. 4

    Social comments and analytics for this post…

    This post was mentioned on Twitter by ninanet: Is your site up to speed? Site Speed: The new Google ranking factor http://bit.ly/d0gD4h

    uberVU - social comments on April 19th, 2010 at 8:20 am
  5. 5

    That change only effected less than 1% of websites. Google said this themselves afterwards.

    Mike Annable on January 31st, 2011 at 8:13 pm
  6. 6

    i always use these tools. great tips though ty <3

    miami allergy on March 9th, 2011 at 12:16 pm
  7. 7

    Definetely agree with you, site speed is very important… We have to be smart to choose simple template for the website (lightweight pageload), thanks

    Atap baja ringan on May 30th, 2011 at 6:56 am
  8. 8

    Yes, it’s true. The site speed is scored by search engine. but I’m trying to find information about gzip and search engine , I’m not sure that the gzip may effects to the ranking.

    janifer on September 24th, 2011 at 1:56 am
  9. 9

    Gzip compression detection is part of Google’s Page Speed for Firebug as well as Yahoo!’s YSlow.
    So it’s fair to assume that these two take gzip compression into account; since they both state that the page loading time/server response time is part of the factors they use to determine a page’s status as it directly relates to the (overall) user experience.

    nina on September 24th, 2011 at 8:21 am

Leave a Reply


search

Categories

css.php