<?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 for Andy&#039;s Blog</title>
	<atom:link href="http://www.acleon.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acleon.co.uk</link>
	<description></description>
	<lastBuildDate>Sun, 24 Jan 2010 18:22:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by Kyle Klaus</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1147</link>
		<dc:creator>Kyle Klaus</dc:creator>
		<pubDate>Sun, 24 Jan 2010 18:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1147</guid>
		<description>Love this class! Great work. 

I setup a small cdn system to make a set of small gif images available to a large forum to use and wanted some way to present a basic url to the image, and still have all the analytic information about page impressions and where the images were being refereed from. 

So through a combination of mod_rewrite rules, some php scripting and your class I can get full analytic information on an image like this:

http://cdn.indemnity83.com/gif/indemnity83-userbar.gif</description>
		<content:encoded><![CDATA[<p>Love this class! Great work. </p>
<p>I setup a small cdn system to make a set of small gif images available to a large forum to use and wanted some way to present a basic url to the image, and still have all the analytic information about page impressions and where the images were being refereed from. </p>
<p>So through a combination of mod_rewrite rules, some php scripting and your class I can get full analytic information on an image like this:</p>
<p><a href="http://cdn.indemnity83.com/gif/indemnity83-userbar.gif" rel="nofollow">http://cdn.indemnity83.com/gif/indemnity83-userbar.gif</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by Fernando</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1113</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Tue, 19 Jan 2010 12:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1113</guid>
		<description>Hi Andy,

I tried to use it to track a download page with the following code:

-------------------------------
function download_file() {

    global $file;
	
    $GA = new Galvanize(UA-XXXXXX-Y);
    $GA-trackPageView(index.php, Download);

    header(Content-Description: File Transfer);
    header(Content-Type: application/octet-stream);
    header(Content-Disposition: attachment; filename=xyz.exe);
    header(Content-Transfer-Encoding: binary);
    header(Expires: 0);
    header(Cache-Control: must-revalidate, post-check=0, pre-check=0);
    header(Pragma: public);
    header(Content-Length:  . filesize($file));
    readfile($file);
		
}
--------------------------------------------------------

and Im getting this error:

-------------------------------------------------------
Warning: preg_match() [function.preg-match]: No ending delimiter $ found in /home/curricle/public_html/descarga/Galvanize.php on line 316

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 63

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 64

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 65

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 66

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 67

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 68

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 70
--------------------------------------------------------

Is this a bug or am I doing something wrong?

Thanks in advance,
Fernando</description>
		<content:encoded><![CDATA[<p>Hi Andy,</p>
<p>I tried to use it to track a download page with the following code:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
function download_file() {</p>
<p>    global $file;</p>
<p>    $GA = new Galvanize(UA-XXXXXX-Y);<br />
    $GA-trackPageView(index.php, Download);</p>
<p>    header(Content-Description: File Transfer);<br />
    header(Content-Type: application/octet-stream);<br />
    header(Content-Disposition: attachment; filename=xyz.exe);<br />
    header(Content-Transfer-Encoding: binary);<br />
    header(Expires: 0);<br />
    header(Cache-Control: must-revalidate, post-check=0, pre-check=0);<br />
    header(Pragma: public);<br />
    header(Content-Length:  . filesize($file));<br />
    readfile($file);</p>
<p>}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>and Im getting this error:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Warning: preg_match() [function.preg-match]: No ending delimiter $ found in /home/curricle/public_html/descarga/Galvanize.php on line 316</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 63</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 64</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 65</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 66</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 67</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 68</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 69</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /home/curricle/public_html/descarga/Galvanize.php:316) in /home/curricle/public_html/descarga/index.php on line 70<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Is this a bug or am I doing something wrong?</p>
<p>Thanks in advance,<br />
Fernando</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by AndyLeon</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1074</link>
		<dc:creator>AndyLeon</dc:creator>
		<pubDate>Thu, 14 Jan 2010 23:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1074</guid>
		<description>@mann - You would need to have PHP available on the server, but not necessarily have .php files already. I&#039;m going to be working on simpler ways to add this but if all your content is HTML / CSS you should be fine with a normal Google Analytics installation. Let me know what it was you were trying to track and I&#039;ll see if I can help.</description>
		<content:encoded><![CDATA[<p>@mann &#8211; You would need to have PHP available on the server, but not necessarily have .php files already. I&#8217;m going to be working on simpler ways to add this but if all your content is HTML / CSS you should be fine with a normal Google Analytics installation. Let me know what it was you were trying to track and I&#8217;ll see if I can help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by AndyLeon</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1073</link>
		<dc:creator>AndyLeon</dc:creator>
		<pubDate>Thu, 14 Jan 2010 23:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1073</guid>
		<description>@John - Thanks for the comment. I&#039;ve identified a couple of bugs that need ironing out. I&#039;ll have them sorted very shortly and some additional features to boot.</description>
		<content:encoded><![CDATA[<p>@John &#8211; Thanks for the comment. I&#8217;ve identified a couple of bugs that need ironing out. I&#8217;ll have them sorted very shortly and some additional features to boot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by AndyLeon</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1072</link>
		<dc:creator>AndyLeon</dc:creator>
		<pubDate>Thu, 14 Jan 2010 23:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1072</guid>
		<description>@Greg - It&#039;s looking like I&#039;ve finally got some free time this weekend so expect something very shortly.</description>
		<content:encoded><![CDATA[<p>@Greg &#8211; It&#8217;s looking like I&#8217;ve finally got some free time this weekend so expect something very shortly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by mann</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-1066</link>
		<dc:creator>mann</dc:creator>
		<pubDate>Thu, 14 Jan 2010 12:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-1066</guid>
		<description>apologies for sounding like a newbie but can this be use for a plain html/css website (i.e. not php) like ours www.lotus-architects.com</description>
		<content:encoded><![CDATA[<p>apologies for sounding like a newbie but can this be use for a plain html/css website (i.e. not php) like ours <a href="http://www.lotus-architects.com" rel="nofollow">http://www.lotus-architects.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by John</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-981</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 07 Jan 2010 13:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-981</guid>
		<description>Very nice work! This is a most useful initiative.
There seams to be a little bug in the latest version though.

I hope you will be able to release the final version soon..

Regards,

John</description>
		<content:encoded><![CDATA[<p>Very nice work! This is a most useful initiative.<br />
There seams to be a little bug in the latest version though.</p>
<p>I hope you will be able to release the final version soon..</p>
<p>Regards,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Galvanize: Google Analytics without the Javascript by Greg</title>
		<link>http://www.acleon.co.uk/posts/galvanize-google-analytics-without-the-javascript/comment-page-1/#comment-576</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 11 Dec 2009 20:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=173#comment-576</guid>
		<description>Hows the work on .12 coming? Any ETA on its release?</description>
		<content:encoded><![CDATA[<p>Hows the work on .12 coming? Any ETA on its release?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing The Default Mac OS X Screenshot Location by Neil</title>
		<link>http://www.acleon.co.uk/posts/changing-the-default-screenshot-location/comment-page-1/#comment-343</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=123#comment-343</guid>
		<description>You need to log out and back in to activate this.  Great tip

Thanks

Neil</description>
		<content:encoded><![CDATA[<p>You need to log out and back in to activate this.  Great tip</p>
<p>Thanks</p>
<p>Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracking Your phpBB Forum Signups by Greecewax</title>
		<link>http://www.acleon.co.uk/posts/tracking-your-phpbb-forum-signups/comment-page-1/#comment-218</link>
		<dc:creator>Greecewax</dc:creator>
		<pubDate>Mon, 09 Nov 2009 20:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.acleon.co.uk/?p=170#comment-218</guid>
		<description>Just wanted to say hi. I&#039;m new and I like it here so far!</description>
		<content:encoded><![CDATA[<p>Just wanted to say hi. I&#8217;m new and I like it here so far!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
