<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Google Analytics</title>
	<atom:link href="http://www.mattcutts.com/blog/google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattcutts.com/blog/google-analytics/</link>
	<description>neat fun stuff</description>
	<lastBuildDate>Thu, 05 Nov 2009 10:52:39 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter (IMC)</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-128175</link>
		<dc:creator>Peter (IMC)</dc:creator>
		<pubDate>Tue, 03 Jun 2008 04:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-128175</guid>
		<description>Matt,

Is there any way that I can access specific analytics data through php? I just want to grab some simple statistics from my clients data so I can present it simplified to my customers. Simple as in: month x the site had xxxx visitors.</description>
		<content:encoded><![CDATA[<p>Matt,</p>
<p>Is there any way that I can access specific analytics data through php? I just want to grab some simple statistics from my clients data so I can present it simplified to my customers. Simple as in: month x the site had xxxx visitors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-122009</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sun, 03 Feb 2008 01:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-122009</guid>
		<description>Nice one Mark. i&#039;ve been using a direct link to the ssl js @ https://ssl.google-analytics.com/urchin.js but I&#039;ll try this one for some other sites. Thanks!</description>
		<content:encoded><![CDATA[<p>Nice one Mark. i&#8217;ve been using a direct link to the ssl js @ <a href="https://ssl.google-analytics.com/urchin.js" rel="nofollow">https://ssl.google-analytics.com/urchin.js</a> but I&#8217;ll try this one for some other sites. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Brimm</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-121011</link>
		<dc:creator>Mark Brimm</dc:creator>
		<pubDate>Mon, 21 Jan 2008 20:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-121011</guid>
		<description>Hey Matt,

Today I noticed that Google&#039;s Analytics tracking CODE was WRONG...it&#039;s missing the little right-pointing arrow/carot at the end of a javascript string used to mark the end of the line (how does a programmer with a sweet job at Google mess up something so simple...). This problem caused me to waste the whole weekend for a client site after installing the WRONG code on Thursday and thinking it would be all full of juicy data by Monday.

The code they are using (the new tracker code version) is :


var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&#039;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#039; type=&#039;text/javascript&#039;%3E%3C/script%3E&quot;));


var pageTracker = _gat._getTracker(&quot;UA-986914-4&quot;);
pageTracker._initData();
pageTracker._trackPageview();



But it SHOULD read:


var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&#039;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#039; type=&#039;text/javascript&#039;%3E%3C/script%3E&quot;));&gt;


var pageTracker = _gat._getTracker(&quot;UA-986914-4&quot;);
pageTracker._initData();
pageTracker._trackPageview();


Just thought I would pass this info along.</description>
		<content:encoded><![CDATA[<p>Hey Matt,</p>
<p>Today I noticed that Google&#8217;s Analytics tracking CODE was WRONG&#8230;it&#8217;s missing the little right-pointing arrow/carot at the end of a javascript string used to mark the end of the line (how does a programmer with a sweet job at Google mess up something so simple&#8230;). This problem caused me to waste the whole weekend for a client site after installing the WRONG code on Thursday and thinking it would be all full of juicy data by Monday.</p>
<p>The code they are using (the new tracker code version) is :</p>
<p>var gaJsHost = ((&#8221;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8221;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));</p>
<p>var pageTracker = _gat._getTracker(&#8221;UA-986914-4&#8243;);<br />
pageTracker._initData();<br />
pageTracker._trackPageview();</p>
<p>But it SHOULD read:</p>
<p>var gaJsHost = ((&#8221;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8221;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));&gt;</p>
<p>var pageTracker = _gat._getTracker(&#8221;UA-986914-4&#8243;);<br />
pageTracker._initData();<br />
pageTracker._trackPageview();</p>
<p>Just thought I would pass this info along.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesus</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-120175</link>
		<dc:creator>Jesus</dc:creator>
		<pubDate>Mon, 07 Jan 2008 22:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-120175</guid>
		<description>i use it on my page http://www.googleminigames.com it is way better than statcounter</description>
		<content:encoded><![CDATA[<p>i use it on my page <a href="http://www.googleminigames.com" rel="nofollow">http://www.googleminigames.com</a> it is way better than statcounter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Affiliate Marketing Tips</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-119888</link>
		<dc:creator>Affiliate Marketing Tips</dc:creator>
		<pubDate>Tue, 01 Jan 2008 23:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-119888</guid>
		<description>Google analytics is such a great resources. It really is a must especially for affiliate marketing newbies

I have used analytics for a few months now and the results are awesome</description>
		<content:encoded><![CDATA[<p>Google analytics is such a great resources. It really is a must especially for affiliate marketing newbies</p>
<p>I have used analytics for a few months now and the results are awesome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Islam</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-119831</link>
		<dc:creator>Islam</dc:creator>
		<pubDate>Mon, 31 Dec 2007 10:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-119831</guid>
		<description>The only thing which bothers me regards analytics is they provide the resutls next day.Aprt from that, they are best</description>
		<content:encoded><![CDATA[<p>The only thing which bothers me regards analytics is they provide the resutls next day.Aprt from that, they are best</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Page</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-117329</link>
		<dc:creator>Bob Page</dc:creator>
		<pubDate>Wed, 28 Nov 2007 15:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-117329</guid>
		<description>The analytics software is great because it gives information for the average person plus the detailed information for the more inclined. I particularly like the site overlay feature.</description>
		<content:encoded><![CDATA[<p>The analytics software is great because it gives information for the average person plus the detailed information for the more inclined. I particularly like the site overlay feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: healthprotein</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-114630</link>
		<dc:creator>healthprotein</dc:creator>
		<pubDate>Fri, 19 Oct 2007 05:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-114630</guid>
		<description>First, you claim that Google will have a high-integrity policy regarding data and privacy.I’d like to see Google using their position for good, but when it’s used to dominate smaller businesses it’s hard to keep respecting Google.
http://www.healthprotein.info</description>
		<content:encoded><![CDATA[<p>First, you claim that Google will have a high-integrity policy regarding data and privacy.I’d like to see Google using their position for good, but when it’s used to dominate smaller businesses it’s hard to keep respecting Google.<br />
<a href="http://www.healthprotein.info" rel="nofollow">http://www.healthprotein.info</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raheel</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-113627</link>
		<dc:creator>raheel</dc:creator>
		<pubDate>Fri, 28 Sep 2007 14:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-113627</guid>
		<description>Hi,

The code which we installed on our web pages to track by Google Analytics took how long to deduct that code and once the code deducted the code how long it took to gather the stats from these web pages and during stats gathering how much site that installed that code get effected by Google down loader or what ever or how ever they get the stats from those web sites does during the gathering the stats site gets slow?


http://www.memory4less.net</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>The code which we installed on our web pages to track by Google Analytics took how long to deduct that code and once the code deducted the code how long it took to gather the stats from these web pages and during stats gathering how much site that installed that code get effected by Google down loader or what ever or how ever they get the stats from those web sites does during the gathering the stats site gets slow?</p>
<p><a href="http://www.memory4less.net" rel="nofollow">http://www.memory4less.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://www.mattcutts.com/blog/google-analytics/#comment-113565</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Thu, 27 Sep 2007 15:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=97#comment-113565</guid>
		<description>When ever we try to visit any google analytics page it take more than 5 minutes to download.  It is limited to google analytics and no other pages, unless the page/website is using analytics.  Can anyone throw out some ideas as to what could be causing this?</description>
		<content:encoded><![CDATA[<p>When ever we try to visit any google analytics page it take more than 5 minutes to download.  It is limited to google analytics and no other pages, unless the page/website is using analytics.  Can anyone throw out some ideas as to what could be causing this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
