<?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: Tracing their Steps: How to track feed subscriber referrals with Google Analytics</title>
	<atom:link href="http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/</link>
	<description>Advanced Search Engine Marketing Tips to Succeed Online</description>
	<lastBuildDate>Tue, 31 Jan 2012 15:19:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tabita</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-80431</link>
		<dc:creator>Tabita</dc:creator>
		<pubDate>Sat, 10 Sep 2011 14:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-80431</guid>
		<description>Hi, just for clarification, if I have a url livesimplyenough.com/feed that points to the feedburner page, that&#039;s the URL I would use where you have .../tracking/feed?

Also, is this still the right way to do it?</description>
		<content:encoded><![CDATA[<p>Hi, just for clarification, if I have a url livesimplyenough.com/feed that points to the feedburner page, that&#8217;s the URL I would use where you have &#8230;/tracking/feed?</p>
<p>Also, is this still the right way to do it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-77771</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Fri, 25 Mar 2011 17:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-77771</guid>
		<description>Hi Hamlet, Bill here again. I&#039;m really loving the articles on your blog. 
Google Analytics is a truly amazing tool. I installed it a while ago on my sites but never really looked at it closely. Only in the last month have I sat down and really started to play with it. I see they have a new feature now (I think called &#039;intelligence&#039;) that shows you what people actually did on your website. It shows you an image of your homepage and then shows you what activity took place where. This is a brilliant feature which I am loving. It has shown me which links people are clicking on and which ones people are not clicking on. I could ramble on about Google analytics for hours, but I&#039;ll stop here :)
Thanks again for the post
All the best
Bill</description>
		<content:encoded><![CDATA[<p>Hi Hamlet, Bill here again. I&#8217;m really loving the articles on your blog.<br />
Google Analytics is a truly amazing tool. I installed it a while ago on my sites but never really looked at it closely. Only in the last month have I sat down and really started to play with it. I see they have a new feature now (I think called &#8216;intelligence&#8217;) that shows you what people actually did on your website. It shows you an image of your homepage and then shows you what activity took place where. This is a brilliant feature which I am loving. It has shown me which links people are clicking on and which ones people are not clicking on. I could ramble on about Google analytics for hours, but I&#8217;ll stop here <img src='http://hamletbatista.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Thanks again for the post<br />
All the best<br />
Bill</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Weichman</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-76960</link>
		<dc:creator>Tim Weichman</dc:creator>
		<pubDate>Mon, 17 Jan 2011 21:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-76960</guid>
		<description>Howdy,

Just thought of a way to get an exact number of active subscribers (or even a cumulative total)... but it requires using your site&#039;s raw logs.

A normal feed URL might look something like this:

http://yoursite.com/podcasts/feed.xml

Instead you could generate a random identifier each time the page loads and make the URL look like this:

http://yoursite.com/podcasts/{RandomString}.xml

This would ensure every user get their own feed URL.

You drop a php file called podcasts (no file extension) in the root directory and use it to build your xml page. You would use Apache&#039;s .htaccess file to force the phantom /podcasts/ directory in the feed URLs to be processed and treated as a php file of the same name. Apache would then disregard the random_string.xml part and just send the request to the &#039;podcast&#039; php file for processing.

So now in your site&#039;s raw logs you&#039;d see a bunch of different URLs in the format:

http://yoursite.com/podcasts/UNIQUE_ID.xml

The number of unique URL&#039;s is equal to your number of subscribers... well, the number of active subscribers for that time period.

As for the number of subscribers who are subscribed to your old feed URL, you could use the stats from your new style URLs to get a very good approximation of the number of subscribers subscribed to the old URL.

Just take the total number of hits to all of the unique URLs and divide by the number of unique URL&#039;s (unique subscribers). This gives an average # of hits per user for your new-style URLs. Then take your total # of hits to your old generic URL and divide it by the # of hits per user from the new style and you&#039;ll have a good idea of the number of active subscribers to your old URL.

Tim</description>
		<content:encoded><![CDATA[<p>Howdy,</p>
<p>Just thought of a way to get an exact number of active subscribers (or even a cumulative total)&#8230; but it requires using your site&#8217;s raw logs.</p>
<p>A normal feed URL might look something like this:</p>
<p><a href="http://yoursite.com/podcasts/feed.xml" rel="nofollow">http://yoursite.com/podcasts/feed.xml</a></p>
<p>Instead you could generate a random identifier each time the page loads and make the URL look like this:</p>
<p><a href="http://yoursite.com/podcasts/" rel="nofollow">http://yoursite.com/podcasts/</a>{RandomString}.xml</p>
<p>This would ensure every user get their own feed URL.</p>
<p>You drop a php file called podcasts (no file extension) in the root directory and use it to build your xml page. You would use Apache&#8217;s .htaccess file to force the phantom /podcasts/ directory in the feed URLs to be processed and treated as a php file of the same name. Apache would then disregard the random_string.xml part and just send the request to the &#8216;podcast&#8217; php file for processing.</p>
<p>So now in your site&#8217;s raw logs you&#8217;d see a bunch of different URLs in the format:</p>
<p><a href="http://yoursite.com/podcasts/UNIQUE_ID.xml" rel="nofollow">http://yoursite.com/podcasts/UNIQUE_ID.xml</a></p>
<p>The number of unique URL&#8217;s is equal to your number of subscribers&#8230; well, the number of active subscribers for that time period.</p>
<p>As for the number of subscribers who are subscribed to your old feed URL, you could use the stats from your new style URLs to get a very good approximation of the number of subscribers subscribed to the old URL.</p>
<p>Just take the total number of hits to all of the unique URLs and divide by the number of unique URL&#8217;s (unique subscribers). This gives an average # of hits per user for your new-style URLs. Then take your total # of hits to your old generic URL and divide it by the # of hits per user from the new style and you&#8217;ll have a good idea of the number of active subscribers to your old URL.</p>
<p>Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Franz</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-74942</link>
		<dc:creator>Franz</dc:creator>
		<pubDate>Wed, 18 Aug 2010 11:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-74942</guid>
		<description>Hey,

does this work with the browser&#039;s feed button, too? If not, it might just only track half of the subscriptions...</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>does this work with the browser&#8217;s feed button, too? If not, it might just only track half of the subscriptions&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Track Visitors, Rankings &#38; Conversions in Google Analytics &#124; Hobo</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-59865</link>
		<dc:creator>How To Track Visitors, Rankings &#38; Conversions in Google Analytics &#124; Hobo</dc:creator>
		<pubDate>Mon, 19 Jan 2009 13:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-59865</guid>
		<description>[...] How to Track Feed Subscriber Referrals in Google Analytics  [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Track Feed Subscriber Referrals in Google Analytics  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rootix Blog</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-32346</link>
		<dc:creator>Rootix Blog</dc:creator>
		<pubDate>Tue, 30 Sep 2008 18:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-32346</guid>
		<description>[...] Analytics die Subscriptions als Conversion Goal zu konfigurieren. Ein gutes Tutorial findet ihr hier in englischer Sprache. So seht ihr wieviele Leute den Feed abonnieren. Dies bedeutet aber nicht, [...]</description>
		<content:encoded><![CDATA[<p>[...] Analytics die Subscriptions als Conversion Goal zu konfigurieren. Ein gutes Tutorial findet ihr hier in englischer Sprache. So seht ihr wieviele Leute den Feed abonnieren. Dies bedeutet aber nicht, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C. August</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-17047</link>
		<dc:creator>C. August</dc:creator>
		<pubDate>Wed, 13 Aug 2008 15:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-17047</guid>
		<description>Thanks for this, but have you tried it with Google&#039;s new tracking script?  They are moving away from the Urchin.js, and it&#039;s not immediately clear which function to call in the OnClick event ga.js script.

I think it might be pageTracker._trackPageview(); because at least I don&#039;t see any javascript errors.  But I have yet to see anything come through in the reports.</description>
		<content:encoded><![CDATA[<p>Thanks for this, but have you tried it with Google&#8217;s new tracking script?  They are moving away from the Urchin.js, and it&#8217;s not immediately clear which function to call in the OnClick event ga.js script.</p>
<p>I think it might be pageTracker._trackPageview(); because at least I don&#8217;t see any javascript errors.  But I have yet to see anything come through in the reports.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zé Cacetudo &#124; The Daily Hype</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-13420</link>
		<dc:creator>Zé Cacetudo &#124; The Daily Hype</dc:creator>
		<pubDate>Thu, 26 Jun 2008 23:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-13420</guid>
		<description>An excellent article. I found it to be well-written and relatively easy to follow. I&#039;ve followed your technique and so far it appears to be working fine (gotta wait a day or two to see if my own test clicks on the RSS links show up in Google Analytics though).

One question, however: I&#039;m also using FeedBurner&#039;s FeedFlare tool to create e-mail/Facebook/Digg/etc. links below each of my posts. The code for that appears to call a script that&#039;s hosted on FeedBurner&#039;s site, which (as far as I can tell) makes it impossible for me to add the onClick argument to the link.

I looked through the relevant groups to see if there&#039;s something already out there on this, but found nothing. If you have any thoughts or ideas, I&#039;d appreciate hearing them. Cheers.</description>
		<content:encoded><![CDATA[<p>An excellent article. I found it to be well-written and relatively easy to follow. I&#8217;ve followed your technique and so far it appears to be working fine (gotta wait a day or two to see if my own test clicks on the RSS links show up in Google Analytics though).</p>
<p>One question, however: I&#8217;m also using FeedBurner&#8217;s FeedFlare tool to create e-mail/Facebook/Digg/etc. links below each of my posts. The code for that appears to call a script that&#8217;s hosted on FeedBurner&#8217;s site, which (as far as I can tell) makes it impossible for me to add the onClick argument to the link.</p>
<p>I looked through the relevant groups to see if there&#8217;s something already out there on this, but found nothing. If you have any thoughts or ideas, I&#8217;d appreciate hearing them. Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan Donovan</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-5292</link>
		<dc:creator>Evan Donovan</dc:creator>
		<pubDate>Thu, 31 Jan 2008 22:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-5292</guid>
		<description>Would it possible to use this technique to track subscriptions to RSS feeds through the feed included in the &lt;head&gt; via the &lt;link rel&gt; tag?</description>
		<content:encoded><![CDATA[<p>Would it possible to use this technique to track subscriptions to RSS feeds through the feed included in the &lt;head&gt; via the &lt;link rel&gt; tag?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEO Tracker</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-5121</link>
		<dc:creator>SEO Tracker</dc:creator>
		<pubDate>Thu, 17 Jan 2008 21:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-5121</guid>
		<description>WOW, thanks for the tip! I have been using analytics for a while now and never really understood how this all worked. Your example is pretty straight forward and I am now tracking more efficiently.</description>
		<content:encoded><![CDATA[<p>WOW, thanks for the tip! I have been using analytics for a while now and never really understood how this all worked. Your example is pretty straight forward and I am now tracking more efficiently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aimz</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-5030</link>
		<dc:creator>Aimz</dc:creator>
		<pubDate>Wed, 16 Jan 2008 02:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-5030</guid>
		<description>Thanks hamlet for posting this info. I am going to try a few different ideas and this might be one of them I&#039;ll try.
Good idea</description>
		<content:encoded><![CDATA[<p>Thanks hamlet for posting this info. I am going to try a few different ideas and this might be one of them I&#8217;ll try.<br />
Good idea</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bkennedy</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-4087</link>
		<dc:creator>bkennedy</dc:creator>
		<pubDate>Mon, 10 Dec 2007 15:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-4087</guid>
		<description>isn&#039;t it true that once the page loads all the javascript will be loaded, and so it doesn&#039;t matter if the javascript comes in the header since most people wait for the page to load entirely before they click on anything?</description>
		<content:encoded><![CDATA[<p>isn&#8217;t it true that once the page loads all the javascript will be loaded, and so it doesn&#8217;t matter if the javascript comes in the header since most people wait for the page to load entirely before they click on anything?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2955</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Thu, 04 Oct 2007 08:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2955</guid>
		<description>Hamlet, excellent explanation. Just what I was looking for, only I did not fully comprehend G.A.&#039;s description in their online help. :-) Thanks!</description>
		<content:encoded><![CDATA[<p>Hamlet, excellent explanation. Just what I was looking for, only I did not fully comprehend G.A.&#8217;s description in their online help. <img src='http://hamletbatista.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamlet Batista</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2636</link>
		<dc:creator>Hamlet Batista</dc:creator>
		<pubDate>Fri, 28 Sep 2007 19:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2636</guid>
		<description>Brandie - Thanks for your comment. You do need to complete that part in order to see the stats on Google Analytics.</description>
		<content:encoded><![CDATA[<p>Brandie &#8211; Thanks for your comment. You do need to complete that part in order to see the stats on Google Analytics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamlet Batista</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2635</link>
		<dc:creator>Hamlet Batista</dc:creator>
		<pubDate>Fri, 28 Sep 2007 19:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2635</guid>
		<description>Tina - Sorry I missed your comment. You don&#039;t need to worry about those. As you said yourself, those are the robots that extract the content of your site to feed the search engine services.</description>
		<content:encoded><![CDATA[<p>Tina &#8211; Sorry I missed your comment. You don&#8217;t need to worry about those. As you said yourself, those are the robots that extract the content of your site to feed the search engine services.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandie Kajino</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2606</link>
		<dc:creator>Brandie Kajino</dc:creator>
		<pubDate>Fri, 28 Sep 2007 06:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2606</guid>
		<description>Ok, not feeling very smart... do I need to use the &quot;tracking/feeds&quot; part?</description>
		<content:encoded><![CDATA[<p>Ok, not feeling very smart&#8230; do I need to use the &#8220;tracking/feeds&#8221; part?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tina</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2334</link>
		<dc:creator>Tina</dc:creator>
		<pubDate>Sun, 23 Sep 2007 17:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2334</guid>
		<description>Hey... Thanks a lot :)
I wonder if I have just put everything right...
URL: 
www.flowerofparadise.blogspot.com

I have one more uncertainty. In my feed burner Live hits section; there are these user agents’ lists I can find something new there. Google feed fetcher, I guess it’s something which crawls over the content in my blog...Could you please explain what that is!!! And is that something harmful???? Also there is something called Technorati search Bot and Feed burner Feed Insurance. Are these spiders???Or subscribers visit???Or something else!!! I found this recently...Kindly explain this it would help me a lot. I’m lacking in knowledge..</description>
		<content:encoded><![CDATA[<p>Hey&#8230; Thanks a lot <img src='http://hamletbatista.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I wonder if I have just put everything right&#8230;<br />
URL:<br />
<a href="http://www.flowerofparadise.blogspot.com" rel="nofollow">http://www.flowerofparadise.blogspot.com</a></p>
<p>I have one more uncertainty. In my feed burner Live hits section; there are these user agents’ lists I can find something new there. Google feed fetcher, I guess it’s something which crawls over the content in my blog&#8230;Could you please explain what that is!!! And is that something harmful???? Also there is something called Technorati search Bot and Feed burner Feed Insurance. Are these spiders???Or subscribers visit???Or something else!!! I found this recently&#8230;Kindly explain this it would help me a lot. I’m lacking in knowledge..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamlet Batista</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2328</link>
		<dc:creator>Hamlet Batista</dc:creator>
		<pubDate>Sun, 23 Sep 2007 15:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2328</guid>
		<description>Tina - Thanks for your comment. You need to place the Google Analytics Javascript first. Follow their instructions for this. Next, you place the onClick code in the link to your feed.

If possible, please provide the URL and I will check it out and tell you what you need to fix.</description>
		<content:encoded><![CDATA[<p>Tina &#8211; Thanks for your comment. You need to place the Google Analytics Javascript first. Follow their instructions for this. Next, you place the onClick code in the link to your feed.</p>
<p>If possible, please provide the URL and I will check it out and tell you what you need to fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tina</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-2317</link>
		<dc:creator>Tina</dc:creator>
		<pubDate>Sun, 23 Sep 2007 09:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-2317</guid>
		<description>Hi...

Looks like a great idea....I wanna track my subscribers. I really didn&#039;t get a picture of how and where to place the Javascript,Kinda confused about how to do it.I tried something and it&#039;s not working...Could you please help me out with that???</description>
		<content:encoded><![CDATA[<p>Hi&#8230;</p>
<p>Looks like a great idea&#8230;.I wanna track my subscribers. I really didn&#8217;t get a picture of how and where to place the Javascript,Kinda confused about how to do it.I tried something and it&#8217;s not working&#8230;Could you please help me out with that???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blog do valdecir carvalho &#187; Blog Archive &#187; links for 2007-08-09</title>
		<link>http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/comment-page-1/#comment-817</link>
		<dc:creator>blog do valdecir carvalho &#187; Blog Archive &#187; links for 2007-08-09</dc:creator>
		<pubDate>Thu, 09 Aug 2007 11:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://hamletbatista.com/2007/07/24/tracing-their-steps-how-to-track-feed-subscriber-referrals-with-google-analytics/#comment-817</guid>
		<description>[...] Tracing their Steps: How to track feed subscriber referrals with Google Analytics † Hamlet Batista... Como medir os acessos ao site via RSS no Goolgle Analytics (tags: analytics google tracking feed blogging howto) [...]</description>
		<content:encoded><![CDATA[<p>[...] Tracing their Steps: How to track feed subscriber referrals with Google Analytics † Hamlet Batista&#8230; Como medir os acessos ao site via RSS no Goolgle Analytics (tags: analytics google tracking feed blogging howto) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

