Re: Auto-Login to Google Analytics

2010-03-10 Thread Jochem van Dieten
On Tue, Mar 9, 2010 at 11:23 PM, Donnie Carvajal wrote: Is it possible to authenticate to Google using the AuthSub and then pass the token in a GET/POST to Analytics? On an intranet you could do some DNS voodoo to hijack a google DNS name and set some cookies from that DNS name. But if you go

Re: Auto-Login to Google Analytics

2010-03-10 Thread Kevin Pepperman
Ben Nadel's CFHttpSession.cfc may be able to do this, I have not tried it yet-- but it mimics browser sessions. http://www.bennadel.com/projects/cfhttp-session.htm logged out from your own Gmail account and into another Google account for the analytics. Just as a side note: You can log

Re: Auto-Login to Google Analytics

2010-03-10 Thread Dave Watts
Just as a side note: You can log into 2 gmail accounts in the same browser as once as long as one of them is a business account. :) I do it all the time. ... unless both accounts share the same email address. For example, I have two Google accounts with the email address dwa...@figleaf.com.

Re: Auto-Login to Google Analytics

2010-03-10 Thread Matthew Smith
How do you create a business account on google? I googled and just got the local business stuff. On Wed, Mar 10, 2010 at 6:21 AM, Kevin Pepperman chorno...@gmail.comwrote: Ben Nadel's CFHttpSession.cfc may be able to do this, I have not tried it yet-- but it mimics browser sessions.

Re: Auto-Login to Google Analytics

2010-03-10 Thread Kevin Pepperman
http://www.google.com/services/ It is a paid service-- We recently converted a company I work for from Exchange to Google business-- They are all very happy with it. -- /Kevin Pepperman They who can give up essential liberty to obtain a little temporary safety, deserve neither liberty nor

Re: Auto-Login to Google Analytics

2010-03-10 Thread Dave Watts
http://www.google.com/services/ It is a paid service-- We recently converted a company I work for from Exchange to Google business-- They are all very happy with it. Actually, for Apps specifically, you can go directly there: http://www.google.com/a/ We've been using this for figleaf.com

Auto-Login to Google Analytics

2010-03-09 Thread Donnie Carvajal
We want to add single login access to Google Analytics from our Content Management System for our clients. I know there is an API for grabbing the Analytics data, but we are not interested in reproducing the reports. We like the UI provided by Google. We just want to give our clients a link

(ot) Google Analytics

2010-02-19 Thread Rick Root
Hey all, I'm helping run a large web site that hosts many sites using virtual domains. Each site is different though built on the same file structure. Users can choose templates, they build their own content, etc. Users often put google analytics code on their own sites, but we don't do any

Re: (ot) Google Analytics

2010-02-19 Thread Jerry Johnson
http://seojeff.com/2008/04/03/tracking-data-for-multiple-google-analytics-accounts-on-one-page/ On Fri, Feb 19, 2010 at 10:48 PM, Rick Root rick.r...@gmail.com wrote: Hey all, I'm helping run a large web site that hosts many sites using virtual domains. Each site is different though

How to Block Google Analytics code inside a firewall

2009-04-06 Thread Paul Ihrig
We have a chunk of code on our footer that does the normal tracking. outside the firewall or in the real world, or site runs fine, inside the firewall it runs poorly. any one care to explain how i could cfif the code out for users inside the firewall.. i have played around with the all the cgi

RE: How to Block Google Analytics code inside a firewall

2009-04-06 Thread Scott Stewart
06, 2009 8:09 AM To: cf-talk Subject: How to Block Google Analytics code inside a firewall We have a chunk of code on our footer that does the normal tracking. outside the firewall or in the real world, or site runs fine, inside the firewall it runs poorly. any one care to explain how i could cfif

Re: How to Block Google Analytics code inside a firewall

2009-04-06 Thread Paul Ihrig
Load google code /cfif -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: Monday, April 06, 2009 8:09 AM To: cf-talk Subject: How to Block Google

Re: How to Block Google Analytics code inside a firewall

2009-04-06 Thread Jason Fisher
Use cgi.remote_addr ... that will be the address of the User, rather than the Server. That should do it. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: How to Block Google Analytics code inside a firewall

2009-04-06 Thread Paul Ihrig
http://www DOT rittal-corp DOT com/cgivars DOT cfm ok i and the guy next to me get* REMOTE_ADDR*: 63.144.103.200 so as long as that dosnt change i should be fine? On Mon, Apr 6, 2009 at 9:59 AM, Jason Fisher ja...@wanax.com wrote: Use cgi.remote_addr ... that will be the address of the

Re: How to Block Google Analytics code inside a firewall

2009-04-06 Thread Paul Ihrig
thanks that seems to have done the trick.. On Mon, Apr 6, 2009 at 10:07 AM, Paul Ihrig pih...@gmail.com wrote: http://www DOT rittal-corp DOT com/cgivars DOT cfm ok i and the guy next to me get* REMOTE_ADDR*: 63.144.103.200 so as long as that dosnt change i should be fine? On Mon,

Google Analytics - no templates, lots of pages

2008-06-19 Thread coldfusion . developer
All, I've got this site with several hundred pages, multiple directories. Was wondering what the best way to implement Google Analytics. I was going to use onrequestend, but that will insert the code after the /body tag, utilize the application.cfm/cfc file and it loads before the body tag. I do

Re: Google Analytics - no templates, lots of pages

2008-06-19 Thread Phillip Vector
Can't you put the closing body tag in onrequestend? On 6/19/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: All, I've got this site with several hundred pages, multiple directories. Was wondering what the best way to implement Google Analytics. I was going to use onrequestend

OT: Google analytics

2007-02-26 Thread Josh Nathanson
Hey all, Does anyone know if Google analytics makes any attempt to factor in bots (theirs or anyone else's) when they report site visits? I've been doing some analysis of CF sessions, and it looks like Google's reports about 25% more visits than what I'm seeing in my session stats, once I

Re: OT: Google analytics

2007-02-26 Thread Nick Tong - http://TalkWebSolutions.co.uk
Hi Josh, A quick search on the analytics group site ( http://groups.google.com/group/analytics-help) showed: Any user-agent (browser, search *bot*, etc...) that can't or doesn't load JavaScript won't be *counted* by Google Analytics. On 26/02/07, Josh Nathanson [EMAIL PROTECTED] wrote: Hey

Re: OT: Google analytics

2007-02-26 Thread Josh Nathanson
Hey Nick, Thanks, just after I posted I went through and found similar verbiage in the help area. I figured out at least part of the discrepancy - our home page is html, not CF, so CF sessions are only created when people go past the home page. But, on Google we're only showing a 10% bounce

RE: OT: Google Analytics question. Anyone?

2006-08-15 Thread Ken Ferguson
: Jason Radosevich [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 6:43 PM To: CF-Talk Subject: Re: OT: Google Analytics question. Anyone? I think that you need to have 2 different analycts profiles for http and https On 8/14/06, Andy Matthews [EMAIL PROTECTED] wrote: I'm not sure what you

RE: OT: Google Analytics question. Anyone?

2006-08-15 Thread Andy Matthews
--//- -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 15, 2006 8:49 AM To: CF-Talk Subject: RE: OT: Google Analytics question. Anyone? You DO NOT need two profiles. The address for the secure script is a little different actually. https://ssl.google

OT: Google Analytics question. Anyone?

2006-08-14 Thread Andy Matthews
A client of mine is trying to track purchases through his shopping cart using his Analytics account. I'm pretty sure I've got the code in place correctly but he's not getting any hits (and he is getting purchases). I'm thinking he might have his addresses entered in correctly. Can someone

Re: OT: Google Analytics question. Anyone?

2006-08-14 Thread Jason Radosevich
Did you put the JS code in the pages that you want tracked ? On 8/14/06, Andy Matthews [EMAIL PROTECTED] wrote: A client of mine is trying to track purchases through his shopping cart using his Analytics account. I'm pretty sure I've got the code in place correctly but he's not getting any

Re: OT: Google Analytics question. Anyone?

2006-08-14 Thread Phill B
I don't think you can track http and https on the same site profile. I could be wrong but that is the way it looks to me when I set up my sites. Phil On 8/14/06, Andy Matthews [EMAIL PROTECTED] wrote: A client of mine is trying to track purchases through his shopping cart using his Analytics

Re: OT: Google Analytics question. Anyone?

2006-08-14 Thread Jerry Johnson
And doesn't the js code in the https pages need to point to the https version on google analytics? On 8/14/06, Jason Radosevich [EMAIL PROTECTED] wrote: Did you put the JS code in the pages that you want tracked ? On 8/14/06, Andy Matthews [EMAIL PROTECTED] wrote: A client of mine is trying

RE: OT: Google Analytics question. Anyone?

2006-08-14 Thread Dave Watts
And doesn't the js code in the https pages need to point to the https version on google analytics? Yes, it should. This exact problem bit me not too long ago. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

RE: OT: Google Analytics question. Anyone?

2006-08-14 Thread Andy Matthews
coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Jason Radosevich [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 2:04 PM To: CF-Talk Subject: Re: OT: Google Analytics question. Anyone? Did you put the JS code

RE: OT: Google Analytics question. Anyone?

2006-08-14 Thread Andy Matthews
, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 3:25 PM To: CF-Talk Subject: RE: OT: Google Analytics question. Anyone? And doesn't the js code in the https pages need to point

Re: OT: Google Analytics question. Anyone?

2006-08-14 Thread Jason Radosevich
] Sent: Monday, August 14, 2006 3:25 PM To: CF-Talk Subject: RE: OT: Google Analytics question. Anyone? And doesn't the js code in the https pages need to point to the https version on google analytics? Yes, it should. This exact problem bit me not too long ago

RE: Google Analytics?

2006-05-24 Thread Hugo Ahlenius
I am just waiting for Google A. to set up a web service so that I can query it remotely. I would like to integrate the visitors ranking into a web-site that I am working on, like for instance to order entries by popularity. /Hugo -- Hugo Ahlenius

Re: Google Analytics?

2006-05-23 Thread Nick Tong - TalkWebSolutions.co.uk
Hi Mike - check this post out: http://succor.co.uk/index.cfm/2006/2/13/Google-analytics---urchin On 22/05/06, Mike Klostermeyer [EMAIL PROTECTED] wrote: Since it appears many here use Google Analytics, I have a question. Does anyone use it over an SSL connection (during the checkout process

RE: Google Analytics?

2006-05-23 Thread Aldon
Thanks Nick! Al -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 4:36 PM To: CF-Talk Subject: Re: Google Analytics? Mike, Did you check out my post? Aldon, . it can be slower but be sure to put the script at the end of you

RE: Google Analytics?

2006-05-23 Thread Mike Klostermeyer
hmm, it's almost as if you are looking over my shoulder, blogging about what I'm doing incorrectly! Thanks a lot. Mike -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 8:37 AM To: CF-Talk Subject: Re: Google Analytics? Hi

Re: Google Analytics?

2006-05-23 Thread Casey Dougall
Google A. Breakdown: Yeah it's great if your looking for savings against going the route of Omniture or Webtrends but it's not as intuitive, well it is in some sence, it can tell me the version of flash someon it running, Nice!!!. More setup work on your campaigns ahead of time is the worst part

Re: Google Analytics?

2006-05-22 Thread Michael Dinowitz
That's the difference between marketting and what the software actually reports. 8.5 is now version 9.0 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241119 Archives:

RE: Google Analytics?

2006-05-22 Thread Mike Klostermeyer
Since it appears many here use Google Analytics, I have a question. Does anyone use it over an SSL connection (during the checkout process of a cart, for example)? I can't figure out how to use it without throwing browser security warnings (domain name does not match, etc.). Any way around

RE: Google Analytics?

2006-05-22 Thread Dave Watts
Since it appears many here use Google Analytics, I have a question. Does anyone use it over an SSL connection (during the checkout process of a cart, for example)? I can't figure out how to use it without throwing browser security warnings (domain name does not match, etc.). Any way

RE: Google Analytics?

2006-05-22 Thread Ken Ketsdever
I've tried to register a couple of times over the past few weeks currently it appears as though you need an invitation or to register for access at some later date. Does anyone have the ability to send an invitation? Ken Confidentiality Notice: This message including any attachments is for

Re: Google Analytics?

2006-05-22 Thread Neil Middleton
Looking around in my login of analytics it would appear you need to ask Google for one.. http://www.google.com/analytics/sign_up.html Neil On 5/22/06, Ken Ketsdever [EMAIL PROTECTED] wrote: I've tried to register a couple of times over the past few weeks currently it appears as though you

Re: Google Analytics?

2006-05-22 Thread Jeff Small
Looking around in my login of analytics it would appear you need to ask Google for one.. http://www.google.com/analytics/sign_up.html Yep, it took me about a month to get an invite. Thanks for all the words! I'm actually quite excited about it now.

RE: Google Analytics?

2006-05-22 Thread Paul
Subject: RE: Google Analytics? Since it appears many here use Google Analytics, I have a question. Does anyone use it over an SSL connection (during the checkout process of a cart, for example)? I can't figure out how to use it without throwing browser security warnings (domain name does

RE: Google Analytics?

2006-05-22 Thread Dave Watts
This must no longer be true; I just set up Analytics last month on our SSL site and after searching their online help for SSL and following the instructions, all is working well. Maybe it was just a temporary glitch. The SSL certificate seems to be fine now. Dave Watts, CTO, Fig Leaf

RE: Google Analytics?

2006-05-22 Thread Mike Klostermeyer
I'm still getting the security warning. Any ideas what I need to do? Mike -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 11:24 AM To: CF-Talk Subject: RE: Google Analytics? This must no longer be true; I just set up Analytics last month

RE: Google Analytics?

2006-05-22 Thread Dave Watts
I'm still getting the security warning. Any ideas what I need to do? Use this URL for your secure pages: https://ssl.google-analytics.com/urchin.js Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our

RE: Google Analytics?

2006-05-22 Thread Aldon
I have found Google Analytics to increase load time making my pages slower. Has anyone found a solution to this? Al -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 12:10 PM To: CF-Talk Subject: RE: Google Analytics? This must no longer be true; I just

Re: Google Analytics?

2006-05-22 Thread Nick Tong - TalkWebSolutions.co.uk
Mike, Did you check out my post? Aldon, . it can be slower but be sure to put the script at the end of you page - just before the /body tag. HTH On 22/05/06, Aldon [EMAIL PROTECTED] wrote: I have found Google Analytics to increase load time making my pages slower. Has anyone found a solution

RE: Google Analytics?

2006-05-22 Thread Mike Klostermeyer
Found the problem. I had the wrong SSL URL. Doh! Thanks for everyone's help. Mike -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 3:36 PM To: CF-Talk Subject: Re: Google Analytics? Mike, Did you check out my post

Re: Google Analytics?

2006-05-21 Thread Michael Dinowitz
Here are some stats I can get from analytics for House of Fusion alone in the last week (14-20): Number of new, unique users:28435 Number of unique returning visiters:3844 Google is responsable for 88.05% of hits on the site (almost all due to search) Google is responsable for 32603 visits India

RE: Google Analytics?

2006-05-21 Thread Adrian Lynch
96.71% of visiters are using Flash, about 80% are using version 8 or better (a little over 1.5% are using 9) Don't you mean 8.5? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: 21 May 2006 19:51 To: CF-Talk Subject: Re: Google Analytics? Here are some stats I

Re: Google Analytics?

2006-05-21 Thread Claude Schneegans
And there's a whole lot more That sounds interesting, how do you get it? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241084 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: Google Analytics?

2006-05-21 Thread Michael Dinowitz
over 1.5% are using 9) Don't you mean 8.5? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: 21 May 2006 19:51 To: CF-Talk Subject: Re: Google Analytics? Here are some stats I can get from analytics for House of Fusion alone in the last week (14-20

Re: Google Analytics?

2006-05-21 Thread dave
is it any better than smarterstats? ~Dave the disruptor~ From: Tony [EMAIL PROTECTED] Sent: Sunday, May 21, 2006 1:53 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: Google Analytics? its far and above just some web trends thing. sign up, give

Re: Google Analytics?

2006-05-21 Thread Brad Haas
It is really great software, but let me give you a word of caution. Nothing is free. You're sharing your website data with Google. This may not be a bad thing, but if you are using AdWords--you might not want to share this information. I'm not saying Google is doing anything wrong, but I'd

Re: Google Analytics?

2006-05-21 Thread Michael Dinowitz
http://www.google.com/analytics/ Michael Dinowitz Host: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com And there's a whole lot more That sounds interesting, how do you get it?

RE: Google Analytics?

2006-05-21 Thread Stacy Young
8.5 is now version 9.0 -Stace -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Sunday, May 21, 2006 3:06 PM To: CF-Talk Subject: RE: Google Analytics? 96.71% of visiters are using Flash, about 80% are using version 8 or better (a little over 1.5% are using 9

OT: Google Analytics

2006-01-09 Thread Bobby Hartsfield
Am I EVER going to get into Google Analytics??? I've been on the waiting list for quite some time now. Anyone here using it? Is it worth waiting? Should I stick with SmarterStats? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
into Google Analytics??? I've been on the waiting list for quite some time now. Anyone here using it? Is it worth waiting? Should I stick with SmarterStats? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

Re: Google Analytics

2006-01-09 Thread Jeff Small
Was it a beta that you had to sign up for? I'm doing their sitemapping beta, but I hadn't heard of their analytics...more info please? I'm very curious. Am I EVER going to get into Google Analytics??? I've been on the waiting list for quite some time now. Anyone here using it? Is it worth

RE: Google Analytics

2006-01-09 Thread Bobby Hartsfield
. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:14 AM To: CF-Talk Subject: Re: Google Analytics Was it a beta that you had to sign up for? I'm doing their sitemapping beta, but I hadn't heard

RE: Google Analytics

2006-01-09 Thread Munson, Jacob
. -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 8:14 AM To: CF-Talk Subject: Re: Google Analytics Was it a beta that you had to sign up for? I'm doing their sitemapping beta, but I hadn't heard of their analytics...more info please? I'm very

RE: OT: Google Analytics

2006-01-09 Thread Bobby Hartsfield
: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:12 AM To: CF-Talk Subject: Re: OT: Google Analytics I signed up quick enough to get in in the beginning, and they just recently (maybe two weeks ago) allowed the ones that are already signed up to track up to 5 websites, up from 2

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
, January 09, 2006 10:12 AM To: CF-Talk Subject: Re: OT: Google Analytics I signed up quick enough to get in in the beginning, and they just recently (maybe two weeks ago) allowed the ones that are already signed up to track up to 5 websites, up from 2 websites previously for me. So I would

RE: Google Analytics

2006-01-09 Thread Rick Faircloth
[mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:38 AM To: CF-Talk Subject: RE: Google Analytics It's a site stats program, as far as I understand it. And I am still waiting to get in as well. Last I heard they have stopped taking new signups because they got overwhelmed

RE: OT: Google Analytics

2006-01-09 Thread Bobby Hartsfield
Nice. Thanks for the info. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:54 AM To: CF-Talk Subject: Re: OT: Google Analytics I have an administrator

RE: OT: Google Analytics

2006-01-09 Thread Bobby Hartsfield
Subject: RE: OT: Google Analytics Nice. Thanks for the info. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:54 AM To: CF-Talk Subject: Re: OT: Google

RE: Google Analytics

2006-01-09 Thread Jennifer Gavin-Wear
, as has been my experience on their Reporting system for Adwords. My tuppenth, Jenny -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: 09 January 2006 15:08 To: CF-Talk Subject: OT: Google Analytics Am I EVER going to get into Google Analytics??? I've been

RE: Google Analytics

2006-01-09 Thread Munson, Jacob
Having watched Google's direction over the past year or so I am also thinking that the analytics are as much for Google's benefit as any supposed help to us, as has been my experience on their Reporting system for Adwords. I think you're right about Google's motivations with Analytics. If

RE: Google Analytics

2006-01-09 Thread Rick Faircloth
, January 09, 2006 11:08 AM To: CF-Talk Subject: RE: Google Analytics Hi Bobby, Whether Google gets it's act together or not, I'd not rely on a third party for my analytics unless I had no other option. Having watched Google's direction over the past year or so I am also thinking

RE: Google Analytics

2006-01-09 Thread Bobby Hartsfield
-Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 11:08 AM To: CF-Talk Subject: RE: Google Analytics Hi Bobby, Whether Google gets it's act together or not, I'd not rely on a third party for my analytics unless I had no other option

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 11:03 AM To: CF-Talk Subject: RE: OT: Google Analytics Nice. Thanks for the info. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL

RE: Google Analytics

2006-01-09 Thread Jennifer Gavin-Wear
Subject: RE: Google Analytics Oh, I'm sure the analytics are to Google's benefit...but why not go ahead and use the data their crunching anyway? Rick PS - I do run my own numbers with my home-grown stats packages, too... -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL

RE: Google Analytics

2006-01-09 Thread Rick Faircloth
Maybe they'll lower rates since we're being nice and sharing... ;o) Rick -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 12:44 PM To: CF-Talk Subject: RE: Google Analytics Like pretty much all of the changes they have made

Re: Google Analytics

2006-01-09 Thread Donnie Bachan
Google Analytics is basically Urchin 5 that has been amped up a bit. Google bought Urchin last year. I have used their early release of it because a client of mine is an AdWords customer. It is pretty neat stuff. I also primarily use SmarterStats but I think that Urchin was a better choice