- Blue Hat SEO-Advanced SEO Tactics - http://www.BlueHatSEO.com -

Awstats Hacks

Posted By Eli On January 19, 2007 @ 3:57 pm In Random Thoughts | 112 Comments

Thought I might share a neat Awstats hack of mine that I use to read my referer data better. This simple hack/addon is nothing more than a bit of regex. It takes your search traffic data and puts it into separate Yahoo, MSN, and Google tables. It also grabs your traffic from Digg.com and puts them into a nice table organized by referring page.

ScreenShot (Click To Enlarge)

[1] awstats-hack-thumb.jpg

Installation
All you got to do is append the code below into your sites’ conf file. Your conf file on a standard Cpanel setup is usually located in the /tmp/awstats/awstats.mydomain.conf folder below your root in the ftp. Place the code at the bottom, save, and reupload. Be sure to make a backup of your previous conf file even though this should be pretty foolproof.

If you got any requests for additions to this hack drop a comment and let me know.


112 Comments To "Awstats Hacks"

#1 Comment By agloco On January 19, 2007 @ 7:54 pm

thanks. another great post. ill try this later. bookmarked..

*sorry had to edit links out*

#2 Comment By Eli On January 20, 2007 @ 1:02 am

Bonus For The People Who Read The Comments

Tracks referals from Google Images

Just add this below the others in the conf file.

#3 Comment By Mike On January 20, 2007 @ 3:43 am

Cool Eli. Thanks for that!

#4 Comment By Jon On January 20, 2007 @ 12:13 pm

Cheers Eli, never paid enough attention to realise you could do this sort of thing with awstats!

#5 Comment By Seocracy On January 20, 2007 @ 3:20 pm

This is brilliant.

You, sir, are both a scholar and a gentleman!

#6 Comment By NSUSA On January 20, 2007 @ 8:06 pm

Does not work for me on a very busy site with about 2500 unique visitors per day. However works on a site with less traffic. Anyway - thanks for sharing.

Christoph

#7 Comment By kansieo On January 22, 2007 @ 4:09 am

High $xxx on 100k uniques? With that much traffic, you should have at least another digit on that dollar amount. Doesn’t even matter that it’s crap traffic from MySpace…

#8 Comment By Sweet Dick Willie On January 22, 2007 @ 6:55 am

I think your fulla shit cracker. Why don’t you enlighten us to all the ways you make all of this money online rather than slamming other folks?

#9 Comment By Gabor On January 22, 2007 @ 8:27 am

Yeah, it’s just too easy to say things like “I made 56million bucks yesterday, and this site is full of shit.”

Who are u Cracker? Someone who doesn’t implement anything from here. You are wasting your time here, and time is money, so you are funny:)

It was a good tip Eli, Thanks.

#10 Comment By Rob On January 22, 2007 @ 11:14 am

It doesn’t matter if you receive 100 people per day or 300 trillion people a day. This is still useful.

This line here
MaxNbOfExtra5=10

That line determines how many results to show.. (like this one is top 10)

This is top 5
MaxNbOfExtra5=5

Its not going to show you every single one that came thru..

#11 Comment By Eli On January 22, 2007 @ 11:25 am

I deleted joe crackers comment. Incase you were curious he said the usual “This sucks you should spam myspace.” haha kind of like trying to sell cookies to the other girlscouts wouldn’t ya say? He also said he makes $xxx for his 100k visitors/day which means he’s officially got the lowest payouts and conversions in all of myspace spam history.
Getting boring so he’s banned from commenting.

#12 Comment By Rob On January 22, 2007 @ 11:38 am

sounds good

#13 Comment By Seocracy On January 22, 2007 @ 11:44 am

my AWSTATS conf file keeps reverting back to its original state a day after I add the code.

Anyone know why?

#14 Comment By Rob On January 22, 2007 @ 11:47 am

Are you on a cpanel setup?

Cpanel runs a cron that rebuilds all those config files daily.

#15 Comment By Rob On January 22, 2007 @ 12:00 pm

The default awstats config file for cpanel is located at
/usr/local/cpanel/etc/awstats.conf

It would require root permissions to edit that file.

If your on shared hosting you’d have to manually upload your config file each time… Pain in butt…

Or make a cronjob that did it for you daily =)

#16 Comment By Eli On January 22, 2007 @ 12:07 pm

Here’s the perl code for the cronjob. Don’t forget to put your perl headers at the top #!/usr/bin/perl or whatever.

$path_to_conf = '/home/mydomain/tmp/awstats/awstats.mydomain.conf';

$append_code = qq~
ExtraSectionName1=”Google Search Keywords/Phrases”
ExtraSectionCodeFilter1=”200 304″
ExtraSectionCondition1=”REFERER,^http:\/\/www\.google\.[^/]+\/search\?.*q=.*$”
ExtraSectionFirstColumnTitle1=”Search Phrases”
ExtraSectionFirstColumnValues1=”REFERER,[?&]q= *([^& ][^&]*[^& +])[ +]*(&.*)?$”
ExtraSectionFirstColumnFormat1=”%s”
ExtraSectionStatTypes1=PHBL
ExtraSectionAddSumRow1=1
MaxNbOfExtra1=10
MinHitExtra1=1

ExtraSectionName2=”Yahoo! Search Keywords/Phrases”
ExtraSectionCodeFilter2=”200 304″
ExtraSectionCondition2=”REFERER,^http:\/\/(\w*\.)*search\.yahoo\.[^/]+\/.*$”
ExtraSectionFirstColumnTitle2=”Search Phrases”
ExtraSectionFirstColumnValues2=”REFERER,[?&]p= *([^& ][^&]*[^& +])[ +]*(&.*)?$”
ExtraSectionFirstColumnFormat2=”%s”
ExtraSectionStatTypes2=PHBL
ExtraSectionAddSumRow2=1
MaxNbOfExtra2=10
MinHitExtra2=1

ExtraSectionName3=”Live Search - MSN Search Keywords/Phrases”
ExtraSectionCodeFilter3=”200 304″
ExtraSectionCondition3=”REFERER,^http:\/\/search\.(msn\.[^/]+|live\.com)\/.*$”
ExtraSectionFirstColumnTitle3=”Search Phrases”
ExtraSectionFirstColumnValues3=”REFERER,[?&]q= *([^& ][^&]*[^& +])[ +]*(&.*)?$”
ExtraSectionFirstColumnFormat3=”%s”
ExtraSectionStatTypes3=PHBL
ExtraSectionAddSumRow3=1
MaxNbOfExtra3=10
MinHitExtra3=1

ExtraSectionName4=”Digg.com Visitors”
ExtraSectionCodeFilter4=”200 304″
ExtraSectionCondition4=”REFERER,^http:\/\/(\w*\.)*digg\.[^/]+\/.*$”
ExtraSectionFirstColumnTitle4=”Digg Referers”
ExtraSectionFirstColumnValues4=”REFERER”
ExtraSectionFirstColumnFormat4=”%s”
ExtraSectionStatTypes4=PHBL
ExtraSectionAddSumRow4=1
MaxNbOfExtra4=10
MinHitExtra4=1

ExtraSectionName5=”Google Image Keyphrases”
ExtraSectionCodeFilter5=”200 304″
ExtraSectionCondition5=”REFERER,^http:\/\/images\.google\.”
ExtraSectionFirstColumnTitle5=”Keyphrases”
ExtraSectionFirstColumnValues5=”REFERER,^.*q\%3D(([^\%]|\%[^2]|\%2[^6])*)\%26.*$”
ExtraSectionFirstColumnFormat5=”%s”
ExtraSectionStatTypes5=PHL
ExtraSectionAddSumRow5=1
MaxNbOfExtra5=10
MinHitExtra5=1
~;

open(OUTF,”>>$path_to_conf”);
print OUTF “\n\n$append_code”;
close(OUTF);
Than just set it to update every night immediately after your awstats automatically updates(about 12:30am).

#17 Comment By Seocracy On January 22, 2007 @ 12:28 pm

I heart Blue Hat SEO

#18 Comment By Rob On January 22, 2007 @ 12:34 pm

Eli, your on vacation.. Most people don’t troll around forums and lurk on blogs during vacation..

go camping, get drunk, goto the dairy queen and get a flameburger, or stop by here and pickup some money.

-rob

#19 Comment By GlobalWarming Awareness2007 On January 22, 2007 @ 9:17 pm

#20 Comment By Eli On January 23, 2007 @ 12:59 am

Holy shit!
nice comment!
Notice that the first result is a pr6

#21 Comment By Robb DeVore On January 24, 2007 @ 8:41 pm

Awesome post. This will help a lot. I added your blog to my blogroll. This place is great.

#22 Comment By GlobalWarming Awareness2007 On January 27, 2007 @ 3:25 pm

Also there’s other packages that can be targeted, analog and webalizer come to mind. Bunch more here: [3] http://en.wikipedia.org/wiki/Web_log_analysis_software#Popular_log_analyzers

You could also try stuffing the stats page with keywords through a google search referer. I’m not sure, but it may be possible to use keywords like keyword

#23 Comment By Gemme On January 28, 2007 @ 9:32 pm

Very useful hacks, thanks a lot, I already implemented them.

I was trying to modify the hacks to make it possible to track specific referrals but my hacking knowledge is rather limited, hence I didn’t succeed.

Is there a standard hack where one just can replace the url in order to track from which pages on a domain visitors are coming. That would absolutely great.

#24 Comment By David On June 1, 2007 @ 8:11 am

Hi Eli,

You forgot to say that you copied these great hacks from [4] http://www.internetofficer.com/awstats/keywords-by-search-engine/

David :-(

#25 Comment By Eli On June 1, 2007 @ 8:30 am

Actually, you forgot to give me credit :)
Your post date: Feb. 19th 2007
Mine: Jan. 19th 2007
:(

Credit where credit is due, would be I guess the Awstats documentation where most of this info is.

No worries though as long as the info gets out there and helps people, I’ll keep your link up anyway because you have a few useful comments in that post that I think everyone here should read. BTW my compliments on your blog I’ll add it to my reader and maybe add it to the blogroll here as well.

#26 Comment By bruce On July 4, 2007 @ 7:01 pm

Hi Eli and GlobalwarmingAwareness..

I know you posted these comments about 6 months ago, but I’ve just found your blog and I am thoroughly enjoying it..

WRT to Awstats idea, what do you guys see as the best way to take advantage of this AWSTATS info you found in Google.

Initially I thought of using something like running a simple script that would call the root site with the HTTP_REFERER tag containing the site I want to promote, but is this the best way to tackle it..

Hopeing you can help

bruce

#27 Comment By tom On November 19, 2007 @ 4:56 pm

Nice Stuff!

Loads of different hacks and mods here to

#28 Comment By tom On November 19, 2007 @ 4:57 pm

sorry that didnt work here > [5] http://computech-pcs.co.uk

#29 Comment By rent back On April 11, 2008 @ 8:52 am

cron jobs, php coding, mysql its all too much to take in!
AWstats is really useful though and i’m sure lots of people find this post useful too.

#30 Comment By hack myspace On June 17, 2008 @ 6:55 pm

Interesting. So much hacking. It must be human nature to want to hack anything and everything :)

#31 Comment By Callanetics On July 17, 2008 @ 10:44 am

Cool. Great tip Eli

#32 Comment By Zango Review On July 26, 2008 @ 8:41 am

Error: The number of values found for extra section 5 has grown too large.

And I was only looking at a daily report! It would have been about 7000 uniques, 150,000 page views by this time of day. My awstats never had any trouble before the modification.

I was looking forward to this mod, it looked very promising. :(

#33 Comment By restaurrant website design On October 26, 2008 @ 8:40 pm

Is there any way to turn this off (so we do not have to do the Chron job- as I can see that it may lose stats if done at the wrong time) or is there a way to find out when it does it, so we can time the chron job to place the code a minute after it updates?

Better still, what do we ask of the webhost? Are they able to do it their end? I have asked them before, but they cannot seem to work out how. I have 2 hosts, both with Cpanel, and one updates the conf file and the other does not.

#34 Comment By wordpress consulting On November 4, 2008 @ 3:46 pm

Never used awstats, more of a Google Analytics guy.

There are some really great scripts out there (especially greasemonkey scripts) that put some extra data into your Analytics overviews.

I would certainly check them out.

-brad

#35 Comment By Fat Loss For Idiots Review On February 3, 2009 @ 10:44 pm

Thanks for the script. It’s hard to sometimes organize all you traffic sources so you can see them all at once.

#36 Comment By shophola On March 18, 2009 @ 4:31 am

this is great! Thanks for that!

#37 Comment By Shop Fitting On March 19, 2009 @ 3:15 am

Didn’t know you could hack that as well.

#38 Comment By ENT Doctor On March 21, 2009 @ 11:03 am

Nice hack on Awstats.

#39 Comment By Bob On March 24, 2009 @ 4:32 am

Hey Eli,

I know this is a rather old post but I have just implemented your hacks and they work well.

For those who say the Extras exceed their lines in the log file, you should amend this line and increase the number:

ExtraTrackedRowsLimit=500

So count the lines in your access_log and increase the number with this.

I had two polite requests… I was wondering if you could possibly amend the regexp so that it rewrites the ampersand into & (my awstats are generated in xml and it will not parse anything if a & is found instead of &).

Also your Google images code works well but instead of spaces in the key phrases it displays + signs. Is there any way to modify it so it displays it with spaces like the other Extras?

Thanks alot and great blog, will keep on reading.

#40 Comment By Bob On March 24, 2009 @ 4:33 am

Sorry your comments seem to rewrite & amp; into a normal ampersand…

#41 Comment By Ruben Zevallos Jr. On April 15, 2009 @ 4:46 am

I´m using the AWSTast for years, but I never understand it to use it´s full potential… very good idea… thanks again

#42 Comment By Mobile Broadband On April 30, 2009 @ 10:59 pm

Simply a great piece of work.

#43 Comment By Acne On August 4, 2009 @ 5:49 am

Nice posting!
great article.
i learn many things from this article.

Thanks

#44 Comment By BusinessAdvice Forum On August 7, 2009 @ 7:24 am

Very useful hacks, thanks a lot, I already implemented them.

I was trying to modify the hacks to make it possible to track specific referrals but my hacking knowledge is rather limited, hence I didn’t succeed.

Any simple method?

#45 Comment By Payday Uk On October 9, 2009 @ 3:05 am

Mind-blowing coding and post!

#46 Comment By Callanetics DVD On October 31, 2009 @ 5:46 am

It is claimed that students return home from Callanetics classes and have energy to burn rather than the usual tiredness people suffer after high impact exercises.

#47 Comment By Escort Service London On June 28, 2010 @ 6:47 am

Another statement that mark the greatness of this blog!

#48 Comment By Купить отопительную технику On June 29, 2010 @ 5:18 pm

Very useful hacks, thanks a lot, I already implemented them.

#49 Comment By توبيكات On July 4, 2010 @ 1:21 pm

thanx for all :)

#50 Comment By edhardy On August 18, 2010 @ 4:57 pm

Very intereating article. Thanks because it is the useful knowledge.

#51 Comment By thahkat On August 25, 2010 @ 7:32 am

very good about this topic
good job and nicee

#52 Comment By India Tour Packeges On October 10, 2010 @ 8:04 am

good job Dude

#53 Comment By Deadbeat Super Affiliate Bonus On October 29, 2010 @ 11:01 am

Nice, a real code hack for awstats. I need to revisit what it can actually do and stop using the vanilla implementation.

#54 Comment By fullprogramindir On November 11, 2010 @ 4:12 am

you never cease to amaze me. thanks admin.

#55 Comment By imleme On November 11, 2010 @ 4:14 am

Very intereating article. Thanks because it is the useful knowledge.

#56 Comment By oyun On November 11, 2010 @ 4:17 am

very good about this topic. good job and nicee

#57 Comment By haber On November 11, 2010 @ 4:20 am

Very useful hacks, thanks a lot, I already implemented the

#58 Comment By SEO Miami On November 28, 2010 @ 1:38 pm

These kids are still playing around with Awstats, nice!!

#59 Comment By Andrei On December 17, 2010 @ 6:31 am

Hi,
I used the extra section trick you mention here and it’s working fine and well.
I do have a question though, I moved these days a site from one server to another and I would like to merge two awstats files so i can see all the stats on the new server.
I tried to do it manually (just for the total number of visitors) but it gets reset after running awstats again.
Do you have any advice? (I could wait for the end of the month and update the values then…)

#60 Comment By abercrombie New York On December 27, 2010 @ 1:19 am

When you

#61 Comment By oyun On January 12, 2011 @ 3:53 pm

Very intereating article Thanks because it is the useful knowledge

#62 Comment By Скачать фильм On January 15, 2011 @ 5:08 am

Very useful hacks, thanks a lot, I already implemented them.

I was trying to modify the hacks to make it possible to track specific referrals but my hacking knowledge is rather limited, hence I didn’t succeed.

#63 Comment By Cosimo On February 2, 2011 @ 8:27 am

I’ve tried to use your code bur my ExtraSections in stats page still have empty set for search phrases.
I’ve tried a lot of different kind of codes for config files, but the section is still empty.
So what do I miss? maybe I have to modify something for the logs part or in the configuration file, have I?

#64 Comment By tech house On April 27, 2011 @ 8:42 pm

You, sir, are both a scholar and a gentleman!

#65 Comment By freegamesgirls On May 8, 2011 @ 12:22 pm

Hello i am so delighted I found your weblog, I truly found you by mistake, even though I was searching Yahoo for some thing else, Anyway I’m here now and would just like to say thanks for a tremendous weblog posting and a all round interesting blog (I also love the theme/design), I don’t have time to study it all at the moment but I have bookmarked it and also added your RSS feeds, so when I’ve time I is going to be back to examine far more..

#66 Comment By porno On May 12, 2011 @ 8:11 am

I was trying to modify the hacks to make it possible to track specific referrals but my hacking knowledge is rather limited, hence I didn’t succeed.

#67 Comment By p90x On May 13, 2011 @ 6:26 pm

The P90X fitness dvd set system includes several activities and exercises for the ones who want an attractive physique to enhance their personality.

#68 Comment By abercrombie milano On May 16, 2011 @ 11:52 pm

8You made some respectable factors there. I appeared on the web for the problem and found most individuals will associate with with your website.

#69 Comment By abercrombie deutschland On May 17, 2011 @ 3:21 am

33Thanks i like your blog very much , i come back most days to find new posts like this.

#70 Comment By ผ้าม่าน On June 20, 2011 @ 2:25 am

10

#71 Comment By clothing factory On June 26, 2011 @ 2:05 am

php coding, mysql its all too much to take in!
AWstats is really useful though and i’m sure lots of people find this post useful too.

#72 Comment By Sell Broken Iphone 3g On July 17, 2011 @ 10:38 pm

The advanced in the sense that they are new and progressive sometimes more difficult than basic or require special tools and expertise some of the tactics are no short term tactics, they’re probably strategies.Thanks for sharing informative post.
Regards.

#73 Comment By name necklaces On July 28, 2011 @ 1:48 am

The everyone of us occasionally experience what it is when you can not find the right way of solving the problem and how much time it takes.Thanks for sharing informative post.
Regards.

#74 Comment By kadın On July 29, 2011 @ 4:09 am

I do agree with all of the ideas you have presented in your post. They’re really convincing and will definitely work. Still, the posts are too short for newbies. Could you please extend them a bit from next time? Thanks for the post.

#75 Comment By Handbags On Sale On August 14, 2011 @ 8:09 pm

I do agree with all of the ideas you have presented in your post. They’re really convincing and will definitely work. Still, the posts are too short for newbies. Could you please extend them a bit from next time? Thanks for the post.

#76 Comment By Caldaie Saunier Duval On September 24, 2011 @ 7:39 am

I’ve been meaning to start a video blog for some time now

#77 Comment By مدونة On September 26, 2011 @ 8:47 am

keep it up
thanx

#78 Comment By Americki Plakari On October 15, 2011 @ 12:55 am

this is great! Thanks for that!

#79 Comment By Property Marbella On October 19, 2011 @ 8:00 am

So much hacking. It must be human nature to want to hack anything and everything

#80 Comment By free dental ce courses On November 16, 2011 @ 7:49 am

I totally agree. I’m tired of reading about people who don’t actually want to work for anything anymore.

#81 Comment By thesis writing service On December 9, 2011 @ 1:24 pm

It’s amazing how much technology has changed in the few short years since you first posted this article. Thanks for taking the time to write this along with the other many blog posts you’ve provided over the years. Much appreciated.

#82 Comment By thesis writing service On December 9, 2011 @ 1:24 pm

I really enjoyed reading this post,big fan. Keep up the good work and please tell me when can you publish more articles or where can I read more on the subject? Thank you on behalf of the

#83 Comment By شات مصرى On December 19, 2011 @ 2:55 am

lol nice website chat p7bk chat egypt good

#84 Comment By شات صوتي On December 20, 2011 @ 12:43 am

okkkkkkkkkkkkkkkkkkkkkkkkkkkkkk

#85 Comment By سعودي انحراف On December 20, 2011 @ 12:44 am

yesssssssssssssssssssssssssss

#86 Comment By Nitish On January 6, 2012 @ 12:47 pm

Great post, and it is something which i was not expecting at all.

#87 Comment By Nitish On January 6, 2012 @ 12:47 pm

is kamine ke ok ki toh

#88 Comment By Nitish On January 6, 2012 @ 12:47 pm

It surely is my friend xD

#89 Comment By Nitish On January 6, 2012 @ 12:48 pm

Me too, Xd

#90 Comment By Nitish On January 6, 2012 @ 12:48 pm

Yep it surely is awesome

#91 Comment By Nitish On January 6, 2012 @ 12:49 pm

Its Legen–wait for it— dary legendary xD

#92 Comment By Ismat Zahra On January 8, 2012 @ 6:21 am

hahahahahhahah ok ke tokyy…. mar dyy sali koo…

#93 Comment By Ismat Zahra On January 8, 2012 @ 6:21 am

and yeah good post :)

#94 Comment By Ismat Zahra On January 8, 2012 @ 6:27 am

:(

#95 Comment By Ismat Zahra On January 8, 2012 @ 6:28 am

dil to kr raha hy k kisi ko ja k ail lagaown #96

#96 Comment By Property Marbella On February 8, 2012 @ 1:21 am

Why don’t you enlighten us to all the ways you make all of this money online rather than slamming other folks?

#97 Comment By Classificados On March 6, 2012 @ 2:53 pm

Thanks for this article, very interesting.

#98 Comment By Crafts Factory On March 11, 2012 @ 1:38 am

These kids are still playing around with Awstats, nice!!

#99 Comment By HealthWrong On March 20, 2012 @ 10:09 pm

nice hack… playing with awstats is like playing with fire… so exciting

#100 Comment By Life Insurance Over 85 Years Old On April 5, 2012 @ 6:09 pm

Lol.. greatest joke so far but you have a sense of humour!

#101 Comment By Justbeenpaid On April 29, 2012 @ 8:54 am

I don’t find aw stats so affecting

#102 Comment By منتديات رمز السلام On May 17, 2012 @ 4:19 pm

WoOOW very nice

#103 Comment By طعون On May 20, 2012 @ 4:43 am

good nice post i like

#104 Comment By Planetary Mixer On June 28, 2012 @ 9:09 pm

Hydraulic lift Planetary Mixer The snorkels mixer mixing a variety of mixed liquid and solid dissolved, dispersed, homogeneous and efficient equipment. The main motor for variable speed motors, medium speed for stirring to dissolve, for high-speed Mixing Equipment homogeneous with.

#105 Comment By barbie On July 7, 2012 @ 8:17 am

and yeah good post

#106 Comment By James Stuckey On July 13, 2012 @ 9:32 am

Thanks for teaching us on how to install this one. this would be a lot easier to everybody else. Good job on this.

#107 Comment By Prestação de Serviços On July 17, 2012 @ 5:34 am

Great job, excelent post. thanks for sharing this with us. Hugs.

#108 Comment By security guard resume On August 22, 2012 @ 12:59 am

I have released 2 new site and have not had any problems getting them indexed in Google

#109 Comment By buffalo website design On August 27, 2012 @ 11:00 pm

thanks for sharing this..i have been looking for awstats hacks

#110 Comment By hut be phot On September 2, 2012 @ 6:06 pm

These kids are still playing around with Awstats, nice!!

#111 Comment By thong cong On September 2, 2012 @ 10:59 pm

nice hack… playing with awstats is like playing with fire… so exciting

#112 Comment By thong cong On September 8, 2012 @ 6:30 am

Cool Eli. Thanks for that!


Article printed from Blue Hat SEO-Advanced SEO Tactics: http://www.BlueHatSEO.com

URL to article: http://www.BlueHatSEO.com/awstats-hacks/

URLs in this post:
[1] Image: http://www.bluehatseo.com/wp-content/uploads/2007/01/awstats-hack.jpg
[2] http://www.google.com/search?hl=en&lr=&safe=off&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=Q0s&q=site%3Aedu+OR+site%3Agov+%22Links+from+an+external+page+%28other+web+sites+except+search+engines%29%22&btnG=Search: http://www.google.com/search?hl=en&lr=&safe=off&client=firefox-a&rls=org.mozilla
%3Aen-US%3Aofficial&hs=Q0s&q=site%3Aedu+OR+site%3Agov+%22Links+from+an+external+page+%28ot
her+web+sites+except+search+engines%29%22&btnG=Search

[3] http://en.wikipedia.org/wiki/Web_log_analysis_software#Popular_log_analyzers: http://en.wikipedia.org/wiki/Web_log_analysis_software#Popular_log_analyzers
[4] http://www.internetofficer.com/awstats/keywords-by-search-engine/: http://www.internetofficer.com/awstats/keywords-by-search-engine/
[5] http://computech-pcs.co.uk: http://computech-pcs.co.uk

Click here to print.