<?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>Yahoo! Web Analytics Blog &#187; Training</title>
	<atom:link href="http://www.yanalyticsblog.com/blog/index.php/category/training/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yanalyticsblog.com/blog</link>
	<description>Leveraging Audience Insights to Improve Digital Marketing ROI</description>
	<lastBuildDate>Thu, 02 Feb 2012 17:49:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>YWA 101: Tracking Code Installation And Testing</title>
		<link>http://www.yanalyticsblog.com/blog/2010/11/ywa-101-tracking-code-installation-and-testing/</link>
		<comments>http://www.yanalyticsblog.com/blog/2010/11/ywa-101-tracking-code-installation-and-testing/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 16:00:29 +0000</pubDate>
		<dc:creator>Tim Hampshire</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[Yahoo! Web Analytics]]></category>
		<category><![CDATA[YWA 101]]></category>

		<guid isPermaLink="false">http://www.yanalyticsblog.com/blog/?p=558</guid>
		<description><![CDATA[Before you can gather insights into what your visitors are doing, you'll need to install YWA on your site as well as verify that it is functioning correctly.  In this post we will explain how to install the basic YWA tracking code and then how to check if it is actually sending data from the end user's browser.  We will also illustrate the difference between the pixel only tracking code vs JavaScript tracking code and how YWA uses both to ensure accurate tracking of the users of your site.]]></description>
			<content:encoded><![CDATA[<p>Before you can gather insights into what your visitors are doing, you&#8217;ll need to install YWA on your site as well as verify that it is functioning correctly.  In this post we will explain how to install the basic YWA tracking code and then how to check if it is actually sending data from the end user&#8217;s browser.  We will also illustrate the difference between the pixel only tracking code vs JavaScript tracking code and how YWA uses both to ensure accurate tracking of the users of your site.</p>
<p><strong>Basic Tracking Code Installation</strong></p>
<p>The basic tracking code for your project can be generated by YWA with with 4 easy steps:</p>
<ol>
<li>Click on the &#8220;Installation&#8221; section of the YWA interface</li>
<li>Choose the correct project URL from the dropdown menu</li>
<li>Select tracking code for non-secure (http) or secure (https) pages</li>
<li>Click the next button</li>
</ol>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/gen_tracking_code.png"><img class="size-medium wp-image-971  aligncenter img_border" title="Generate Tracking Code" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/gen_tracking_code-300x154.png" alt="" width="300" height="154" /></a></p>
<p><span id="more-558"></span>YWA will then generate customized HTML tracking code for your project.  You&#8217;ll then want to highlight (ctrl/cmd &#8211; a) and then copy (ctrl/cmd &#8211; c) this code:</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/10/Screen-shot-2010-10-19-at-7.52.15-AM.png"></a><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/copy_code.png"><img class="size-medium wp-image-973  aligncenter img_border" title="Copy Tracking Code" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/copy_code-300x240.png" alt="" width="300" height="240" /></a></p>
<p>Next you will need to paste (ctrl/cmd &#8211; v) the copied code into each page of your site that you want YWA to track.  This code should be placed just before the closing body statement:</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/live_code.png"></a><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/source_code.png"><img class="size-medium wp-image-1062 img_border   aligncenter" title="HTML Source Code" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/source_code-300x129.png" alt="" width="300" height="129" /></a></p>
<p>You will then need to save/upload the pages to your live site.   YWA has now been deployed to your site and will begin collecting data in near real-time within 30 minutes of the first execution of the tracking code.  So at this point YWA will not have collected any data and so the reporting interface should look like this:</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/empty_project.png"><img class="size-medium wp-image-981  img_border  aligncenter" title="Empy Project" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/empty_project-300x237.png" alt="" width="300" height="237" /></a><strong></strong></p>
<p><strong>Pixel Tracking</strong></p>
<p>YWA can use multiple techniques for measuring visits to your site.  The simplest of these techniques is Pixel Tracking, which utilizes a call to the YWA servers requesting a 1&#215;1 pixel tracking image.  This call is made through a standard HTML image tag embedded in the web page you wish to track:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;img src=&quot;http://a.analytics.yahoo.com/p.pl?a=1000508780245&amp;amp;js=no&quot; width=&quot;1&quot; height=&quot;1&quot;&gt;
</pre>
<p>The url for the requested pixel contains a query string parameter containing the project ID (in this example: a=1000508780245) which is how YWA knows which project this tracking request belongs to.</p>
<p><strong>JavaScript Tracking</strong></p>
<p>While functional, pixel tracking provides limited support for advanced YWA tracking functions.  A better version of the tracking code utilizes a JavaScript file called &#8216;ywa.js&#8217; that is hosted on a Yahoo! server.  This JavaScript code provides more advanced activity tracking such as exit link tracking and file download tracking.  This in turn generates fuller analytics data which can be used to determine what visitors are doing on your site.</p>
<p>Here is the minimalist code fragment that can be utilized to enable JavaScript tracking on a page:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://d.yimg.com/mi/ywa.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var YWATracker = YWA.getTracker(&quot;1000508780245&quot;);
YWATracker.submit();
&lt;/script&gt;
</pre>
<p>The first line downloads the JavaScript file which contains all of the YWA tracking functions:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;  src=&quot;http://d.yimg.com/mi/ywa.js&quot;&lt;/script&gt;
</pre>
<p>Next a tracking object is created in the end user&#8217;s browser which is associated with your project ID:</p>
<pre class="brush: xml; first-line: 3; title: ; notranslate">
var YWATracker = YWA.getTracker(&quot;1000508780245&quot;);
</pre>
<p>Finally a submit function is called which sends the analytics  tracking information for a pageview to the YWA servers:</p>
<pre class="brush: xml; first-line: 4; title: ; notranslate">
YWATracker.submit();
</pre>
<p><strong>Combined JavaScript and Pixel Tracking Code</strong></p>
<p>JavaScript tracking is the prefered method of running YWA, however not all end users have browsers that support it (as well the users that disable JavaScript).  To adapt for this we designed our default tracking code use JavaScript tracking but to fall back to pixel tracking if JavaScript is unsupported.</p>
<p>JavaScript enabled browsers use the section of code denoted by the <strong>&lt;script type=&#8221;text/javascript&#8221;&gt;</strong> tags and non-JavaScript enabled browsers run the code in the <strong>&lt;noscript&gt;</strong> tags.</p>
<p>The minimal version of the combined tracking code looks like this:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://d.yimg.com/mi/ywa.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  var YWATracker = YWA.getTracker(&quot;1000508780245&quot;);
  YWATracker.submit();
&lt;/script&gt;

&lt;noscript&gt;
&lt;div&gt;&lt;img src=&quot;http://a.analytics.yahoo.com/p.pl?a=1000508780245&amp;amp;js=no&quot; width=&quot;1&quot; height=&quot;1&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;/noscript&gt;
</pre>
<p><strong>Is The Tracking Code Working?</strong></p>
<p>Once your tracking code is installed you will want to confirm that it is working correctly.  This can be accomplished by browsing to the web page(s) that you have added tracking code which will then create a visit event tracked by YWA.  You can then confirm this visit by checking the YWA UI to see if it successfully logged.</p>
<p>First you will want to browse to a page on your site that has the tracking code installed (while there you can view the page&#8217;s source code to confirm that the tracking code there).  Then load up the YWA reporting interface for your project and browse to the Last Visitor Details report, there you should be able to find your visit.  This will confirm that your tracking code is installed correctly and YWA is recording visits.</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/lvd.png"><img class="size-medium wp-image-993  aligncenter img_border" title="LVD Confirmation" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/lvd-300x245.png" alt="" width="300" height="245" /></a></p>
<p>One thing to note here is that this method will not work if you have configured the <a href="http://help.yahoo.com/l/us/yahoo/ywa/faqs/tracking/customcode/customcode-34.html">YWA IP filtering setting</a> to block your <a href="http://www.whatismyip.com/">public IP address</a> or if you have <a href="http://help.yahoo.com/l/us/yahoo/ywa/faqs/tracking/customcode/customcode-35.html">excluded your browser</a> from being tracked by YWA.   Also remember that YWA takes up to <a href="http://help.yahoo.com/l/us/yahoo/ywa/faqs/tracking/firststeps/firststeps-10.html">30 minutes to start collecting data</a> after it has first been deployed.</p>
<p><strong>Viewing Tracking Calls To YWA</strong></p>
<p>Firefox has a couple of 3rd party add-ons that can be used to troubleshoot your YWA installation.</p>
<p>The first add-on we will demonstrate is <a href="https://addons.mozilla.org/en-US/firefox/addon/6647/">HttpFox</a>, this handy tool can be used to monitor all of the HTTP traffic between your Firefox web-browser and the web servers you browse to with it.  Once you have <a href="http://www.accessfirefox.org/Addons_Installation_Guide.php">installed HttpFox</a> you activate it by clicking on the icon in the lower right corner of your browser and then clicking on the start button in the toolbar.</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/10/Screen-shot-2010-10-19-at-5.47.48-PM.png"></a><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox1.png"><img class="aligncenter size-medium wp-image-1004" title="Httpfox Loaded" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox1-300x271.png" alt="" width="300" height="271" /></a></p>
<p>After HttpFox has been loaded and started then all of your subsequent http requests in that browser will be shown in the HttpFox logger. For our purpose we are looking for requests to &#8220;analytics.yahoo.com&#8221; and when we find one we can use the Query String tab to view the request the browser sent to the YWA server.  Each parameter listed here is a piece of data that is processed by YWA and stored in that project&#8217;s database.  The first parameter you see is &#8216;a&#8217; which stores the projectID and <strong>it is vital that this ‘a’ parameter is sent with the correct projectID</strong>.  Failure to use the correct projectID will result in no data collection for that project.  The correct projectID can be cross checked by looking in the installation section of the YWA interface for that particular project.</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/10/Screen-shot-2010-10-19-at-5.55.22-PM.png"></a><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox2.png"><img class="aligncenter size-medium wp-image-1005 img_border" title="Httpfox JavaScript Tracking" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox2-300x142.png" alt="" width="300" height="142" /></a></p>
<p>And if JavaScript happens to be disabled in the browser, then you should see the pixel tracking call to &#8220;analytics.yahoo.com&#8221; that we setup in the &lt;noscript&gt; tag:</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox3.png"><img class="aligncenter size-medium wp-image-1006 img_border" title="Httpfox Pixel Tracking" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/11/httpfox3-300x141.png" alt="" width="300" height="141" /></a></p>
<p>If you are unable to see any calls to &#8220;analytics.yahoo.com&#8221; then you may  want to double check the tracking code installation for the site.</p>
<p><strong>JavaScript Debugging</strong></p>
<p>Another great Firefox Add-on you can use to test your YWA installation is <a href="http://getfirebug.com/">Firebug</a>.  Firebug includes a JavaScript debugger that can used to ensure that there are no JavaScript errors on the web page.  It is very important that there are no JavaScript errors as they can prevent the browser from sending tracking calls to YWA.</p>
<p style="text-align: center;"><a href="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/10/Screen-shot-2010-10-19-at-6.17.36-PM.png"><img class="size-medium wp-image-861    aligncenter img_border" title="Firebug JavaScript Debugger" src="http://www.yanalyticsblog.com/blog/wp-content/uploads/2010/10/Screen-shot-2010-10-19-at-6.17.36-PM-300x295.png" alt="" width="300" height="295" /></a></p>
<p><strong>Conclusion</strong></p>
<p>If you have confirmed that the tracking calls are being made to the YWA servers without error (and you can see the tracked data in your last visitor details report) then you know your YWA tracking code is functioning correctly on your site.  You&#8217;re now ready to <a href="http://help.yahoo.com/l/us/yahoo/ywa/faqs/tracking/customcode/">customize your tracking code</a> in order to fully capture all the interactions happening on your site!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanalyticsblog.com/blog/2010/11/ywa-101-tracking-code-installation-and-testing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>YWA Training Webinars</title>
		<link>http://www.yanalyticsblog.com/blog/2010/05/ywa-training-webinars/</link>
		<comments>http://www.yanalyticsblog.com/blog/2010/05/ywa-training-webinars/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:00:23 +0000</pubDate>
		<dc:creator>Mihaela Popa</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.yanalyticsblog.com/blog/?p=417</guid>
		<description><![CDATA[We are proud to announce that we have recently completed a series of product training webinars on YWA, which you can find in the Training Section of our YWA Resource Center.

The training sessions were designed to provide new users of the tool with a comprehensive overview of YWA, as well as offer more advanced users refresher sessions on key topics. ]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">We are proud to announce that we have recently completed a series of product training webinars on YWA, which you can find in the <a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/">Training Section</a> of our <a href="http://help.yahoo.com/l/us/yahoo/ywa/">YWA Resource Center</a>.</p>
<p>The training sessions were designed to provide new users of the tool with a comprehensive overview of YWA, as well as offer more advanced users refresher sessions on key topics.  The idea of the training sessions is to provide you as much information on YWA as possible and help you to get the most out of the tool.  Please note that the training sessions are focused on the functionality of the tool, rather than how to perform in-depth analysis/take decisions.  However, we aim to give you enough insight into how to use the product so you can focus on getting insight from your data!</p>
<p><span id="more-417"></span>The training sessions we have created cover the following topics:</p>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session1.html">Session 1</a>: Starts with an overview of how YWA works, and then moves on to cover the standard installation, discussing how to enable basic tracking and how to customize the tracking code.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session2.html">Session 2</a>: Covers how to enable sales and merchandising tracking and the standard sales and merchandising reports available in YWA.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session3.html">Session 3</a>: Presents a series of YWA standard reports, from basic reporting on traffic, content and navigation, to demographics and techno-graphics profiling.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session4.html">Section 4</a>: Is dedicated to conversion analysis and scenario analysis, explaining how to create and analyze sequential funnels on your website.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session5.html">Section 5</a>: Presents the tools and features available on the YWA reporting interface, including filters, drill-downs, report comparisons, report customization, bookmark creation, segmentation, and more!</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session6.html">Session 6</a>: Covers manual campaign setup for different types of campaigns (e.g, paid search, banners, email campaigns, etc.), as well as campaign categorization and bulk campaign management.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session7.html">Session 7</a>: Provides you with an overview of the automated setup for paid search campaigns using the Cost Retrieval feature.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session8.html">Section 8</a>: Is dedicated to marketing and campaign reporting, and traffic attribution types.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session9.html">Section 9</a>: Presents how to create a dashboard from scratch, how to add items to a dashboard, and how to work with the data visualization options available on a dashboard.</li>
</ul>
<ul>
<li><a href="http://help.yahoo.com/l/us/yahoo/ywa/documentation/training/training_session10.html">Section 10</a>: Covers how to configure account settings, both at a project and at a user level.</li>
</ul>
<p>These webinars discuss various aspects of YWA functionality in sessions of manageable length (from 8 – 15 minutes), which you can go through at your own pace.  Each section has a set of review questions that can be taken after you have watched the section and these are located in a separate link next to each training section. Each section quiz has from 3 &#8211; 6 questions and should take no longer than a few minutes to complete.  Upon completion of the questions you&#8217;ll have the opportunity to review your answers.</p>
<p>We hope you will find these sessions useful, and we would like to encourage you to use these training webinars as a quick reference source on YWA.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanalyticsblog.com/blog/2010/05/ywa-training-webinars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

