<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Analytics Land &#187; coorelation</title>
	<atom:link href="http://webanalyticsland.com/sitecatalyst-implementation/tag/coorelation/feed" rel="self" type="application/rss+xml" />
	<link>http://webanalyticsland.com</link>
	<description>Omniture SiteCatalyst Implementation Optimization.</description>
	<lastBuildDate>Wed, 04 Apr 2012 04:00:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Increase SiteCatalyst Clickmap Functionality with Dynamic Object IDs Plug-in</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in</link>
		<comments>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:58:16 +0000</pubDate>
		<dc:creator>VaBeachKevin</dc:creator>
				<category><![CDATA[SiteCatalyst Implementation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coorelation]]></category>
		<category><![CDATA[enhancements]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[omniture]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sitecatalyst]]></category>
		<category><![CDATA[subrelation]]></category>
		<category><![CDATA[URL length]]></category>

		<guid isPermaLink="false">http://webanalyticsland.com/?p=254</guid>
		<description><![CDATA[ClickMap. Pretty useful tool. It gives you a neat overlay that shows you what links are clicked on a page and the associated traffic. I wonder how we can make it better? Knock knock. Oh who is that at the door? Why its the Dynamic Object IDs Plugin. Please step right in.
The Dynamic Object IDs [...]]]></description>
			<content:encoded><![CDATA[<p>ClickMap. Pretty useful tool. It gives you a neat overlay that shows you what links are clicked on a page and the associated traffic. I wonder how we can make it better? Knock knock. Oh who is that at the door? Why its the Dynamic Object IDs Plugin. Please step right in.</p>
<p>The Dynamic Object IDs Plug-in dynamically adds an object ID to the click thru URL. You can see it using the debugger. It is designed to improve the function of the Clickmap. </p>
<p>Let&#8217;s take a look at an example. From the home page of this site, there are 3 links that take you to the Contact page. I click the last one on the page, then open the debugger on the page I land on. Here you can see that the click thru URL has been appended with the number of the order that it happened to appear in on the page. So now when I have multiple links on a single page each one is easily spotted in the debugger, even though they all have the same anchor text and click thru URL.<br />
<img src="http://webanalyticsland.com/images/debugshot.jpg" alt="Dynamic Object ID Plug-in" /></p>
<p>Now what do we get? If you look at the clickmap report, <strong>Site Content>Links>ClickMap</strong>, you will now see a number attached to each URL.<br />
<img src="http://webanalyticsland.com/images/clickmap-report.jpg" alt="Clickmap Report" /><br />
Now you know exactly which link was clicked.</p>
<p>Here is how I have it implemented on this site. Before the <strong>function s_doPlugins(s)</strong>  I include the code:</p>
<pre class="brush: jscript">
/* DynamicObjectIDs config */
function s_getObjectID(o) {
	var ID=o.href;
	return ID;
}
s.getObjectID=s_getObjectID
</pre>
<p>Then within the s_doPlugins(s) function, I include:</p>
<pre class="brush: jscript">
/* To setup Dynamic Object IDs */
s.setupDynamicObjectIDs();
</pre>
<p>And finally in the <strong>Plug-ins section</strong> I have the plug-in code itself.</p>
<pre class="brush: jscript">
/*
 * DynamicObjectIDs
 */
s.setupDynamicObjectIDs=new Function(&quot;&quot;
+&quot;var s=this;if(!s.doi){s.doi=1;if(s.apv&gt;3&amp;&amp;(!s.isie||!s.ismac||s.apv&quot;
+&quot;&gt;=5)){if(s.wd.attachEvent)s.wd.attachEvent(&#039;onload&#039;,s.setOIDs);else&quot;
+&quot; if(s.wd.addEventListener)s.wd.addEventListener(&#039;load&#039;,s.setOIDs,fa&quot;
+&quot;lse);else{s.doiol=s.wd.onload;s.wd.onload=s.setOIDs}}s.wd.s_semapho&quot;
+&quot;re=1}&quot;);
s.setOIDs=new Function(&quot;e&quot;,&quot;&quot;
+&quot;var s=s_c_il[&quot;+s._in+&quot;],b=s.eh(s.wd,&#039;onload&#039;),o=&#039;onclick&#039;,x,l,u,c,i&quot;
+&quot;,a=new Array;if(s.doiol){if(b)s[b]=s.wd[b];s.doiol(e)}if(s.d.links)&quot;
+&quot;{for(i=0;i&lt;s.d.links.length;i++){l=s.d.links[i];c=l[o]?&#039;&#039;+l[o]:&#039;&#039;;b&quot;
+&quot;=s.eh(l,o);z=l[b]?&#039;&#039;+l[b]:&#039;&#039;;u=s.getObjectID(l);if(u&amp;&amp;c.indexOf(&#039;s_&quot;
+&quot;objectID&#039;)&lt;0&amp;&amp;z.indexOf(&#039;s_objectID&#039;)&lt;0){u=s.repl(u,&#039;\&quot;&#039;,&#039;&#039;);u=s.re&quot;
+&quot;pl(u,&#039;\\n&#039;,&#039;&#039;).substring(0,97);l.s_oc=l[o];a[u]=a[u]?a[u]+1:1;x=&#039;&#039;;&quot;
+&quot;if(c.indexOf(&#039;.t(&#039;)&gt;=0||c.indexOf(&#039;.tl(&#039;)&gt;=0||c.indexOf(&#039;s_gs(&#039;)&gt;=0&quot;
+&quot;)x=&#039;var x=\&quot;.tl(\&quot;;&#039;;x+=&#039;s_objectID=\&quot;&#039;+u+&#039;_&#039;+a[u]+&#039;\&quot;;return this.&quot;
+&quot;s_oc?this.s_oc(e):true&#039;;if(s.isns&amp;&amp;s.apv&gt;=5)l.setAttribute(o,x);l[o&quot;
+&quot;]=new Function(&#039;e&#039;,x)}}}s.wd.s_semaphore=0;return true&quot;);
</pre>
<p>To see this code in the s_code file running this site, you can check it out <a href="http://webanalyticsland.com/super-code.php" target="_new" >here</a>.</p>
<p>Ok great. Now what else can we do with this plug-in? Lets say I want to track how many contact form submissions I received from clicking the third Contact link that appears on the Home Page? Well I could add a custom onclick function. I could add a tracking code on the end of the click thru URL. But how can I use this new plug-in to track this? </p>
<p>Recently there was a post on the Omniture blog about <a href="http://blogs.omniture.com/2009/11/24/trimming-the-fat-with-dynamic-variables/" target="_new" >using Dynamic Variables</a>. Using these variables we can now grab the  value of <strong>oid</strong>, which is the click thru URL with the new object id added to it, and you can get the <strong>pid</strong> which is the page the click happened on. I have it set up on this site:</p>
<pre class="brush: jscript">
s.prop20=s.eVar20=&quot;D=oid&quot;;
s.prop22=s.eVar22=&quot;D=pid&quot;;
</pre>
<p>Now with a simple subrelation I can get what link was clicked on what page and what events occurred, all without adding any additional code to the page. </p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Correlating Servers with 404 Error Pages in SiteCatalyst</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/correlating-servers-with-404-error-pages-in-sitecatalyst</link>
		<comments>http://webanalyticsland.com/sitecatalyst-implementation/correlating-servers-with-404-error-pages-in-sitecatalyst#comments</comments>
		<pubDate>Wed, 01 Apr 2009 18:50:42 +0000</pubDate>
		<dc:creator>VaBeachKevin</dc:creator>
				<category><![CDATA[SiteCatalyst Implementation]]></category>
		<category><![CDATA[coorelation]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[sitecatalyst]]></category>

		<guid isPermaLink="false">http://webanalyticsland.com/?p=91</guid>
		<description><![CDATA[Looking for a quick win? Try correlating your 404 pages with your servers report. On larger sites, multiple servers are used to deliver the pages with some kind of load balancing. The problem that can come of this is when there is a code push, errors can occur and the push does not make it [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for a quick win? Try correlating your 404 pages with your servers report. On larger sites, multiple servers are used to deliver the pages with some kind of load balancing. The problem that can come of this is when there is a code push, errors can occur and the push does not make it out to all of the servers and errors ensue. By being able to break down your 404 error pages by the server that is deloivering them can help spot troublesome machines, or code pushes that didn&#8217;t quite make it out to every machine.</p>
<p>Not using the s.server variable yet? Get on it!</p>
]]></content:encoded>
			<wfw:commentRss>http://webanalyticsland.com/sitecatalyst-implementation/correlating-servers-with-404-error-pages-in-sitecatalyst/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

