<?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>dougneubauer.com &#187; Featured</title>
	<atom:link href="http://dougneubauer.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougneubauer.com</link>
	<description>Web Design, SEO and Online Promotional Videos</description>
	<lastBuildDate>Mon, 05 Mar 2012 05:39:49 +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>PHP G.A.S.P. For WordPress</title>
		<link>http://dougneubauer.com/2010/12/php-g-a-s-p-for-wordpress/</link>
		<comments>http://dougneubauer.com/2010/12/php-g-a-s-p-for-wordpress/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 22:24:14 +0000</pubDate>
		<dc:creator>Doug Neubauer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CommentLuv]]></category>
		<category><![CDATA[GASP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://dougneubauer.com/?p=13428</guid>
		<description><![CDATA[G.A.S.P. stands for GrowMap Anti-Spambot Plugin, the idea with GASP is to stop SpamBots, without using a captcha, simply by clicking a checkbox.]]></description>
			<content:encoded><![CDATA[<p>G.A.S.P. stands for <a href="http://www.growmap.com/growmap-anti-spambot-plugin/">GrowMap Anti-Spambot Plugin</a> and was written by Andy Bailey of <a href="http://comluv.com/">CommentLuv</a> fame. G.A.S.P. is a fairly new technique, the idea is to stop SpamBots without using a <a href="http://en.wikipedia.org/wiki/CAPTCHA">captcha</a> by simply clicking a checkbox (see below).<span id="more-13428"></span></p>
<p><img src="http://dougneubauer.com/wp-content/uploads/2010/12/pgasp1.jpg" alt="pgasp1" title="GASP click here" width="532" height="153" class="alignnone size-full wp-image-13429" /></p>
<p>G.A.S.P. looks like a good idea, but some folks have had mixed results: <a href="http://techpatio.com/2010/web-development/gasp-antispam-plugin-wordpress-akismet-alternative">G.A.S.P.: WordPress anti-spam plugin. Good idea, but does it deliver?</a>, though on the whole it seems to work pretty well. G.A.S.P uses javascript, so that if a commenter has javascript turned off they can&#8217;t post a comment. Since most everyone these days has javascript turned on this isn&#8217;t much of a problem, but just for fun I did a php version (no javascript needed) of G.A.S.P. for WordPress, it doesn&#8217;t use a plugin yet, so you have to &#8220;tweak&#8221; the php code and edit some files by hand, specifically: </p>
<ul>
<li>comments.php</li>
<li>your style sheet</li>
<li>And you need to make a new file called: &#8220;pgasp-comments-post.php&#8221;</li>
</ul>
<h5>Modifications and Additions of WordPress Files for PHP GASP</h5>
<p><b>Comments.php</b></p>
<p>Modify this line (about line 78 in comments.php) and change the file name to: &#8220;pgasp-comments-post.php&#8221; like so&#8230;</p>
<pre class="code1">&lt;form action= "&lt;?php echo get_option('siteurl'); ?&gt;/<span style="color:red;">pgasp-comments-post.php</span>"  method="post" id="commentform"&gt;
</pre>
<p>Then, just before the submit button line in comments.php (around line 100 or so) add in this line:</p>
<pre class="code1">
<span style="color:red;">&lt;p&gt;&lt;input type="checkbox" id="comchk1" name="comchk1" value="yes" /&gt; &lt;input type="checkbox" id="comchk2" name="comchk2" value="yes" /&gt; Check this box if you're human. (Dofollow, CommentLuv) No bots or spam, please! &lt;/p&gt;</span>
</pre>
<p>Note that there are actually 2 checkboxes in the code. One of the checkboxes is hidden (using CSS) and will remain unchecked if a human is involved. However, SpamBots will typically fill in all items in a form, so if the hidden checkbox is checked, we know it&#8217;s spam.</p>
<p><b>CSS Stylesheet</b></p>
<p>To hide one of the checkboxes, you need to add the following to your stylesheet file (at the bottom of the file should be fine):</p>
<pre class="code1">
<span style="color:red;">#comchk2 { display:none; }</span>
</pre>
<p><b>pgasp-comments-post.php</b></p>
<p>You need to create a file named &#8220;pgasp-comments-post.php&#8221; with the following code. This is where the spam check takes place. If the comment passes the spam check it is then passed on to WordPress (wp-comments-post.php) Place this file (using ftp, or cpanel) in the top level directory (or whichever directory wp-comments-post.php is in)</p>
<pre class="code1">
&lt;?php
/**
* php gasp
 */

/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );

/* the next 6 lines is the spam checker... */
$comment_spamfilter = ( isset($_POST['comchk1']) ) ? trim($_POST['comchk1']) : null;
if ( 'yes'  != $comment_spamfilter )
  wp_die(__('Error: please check the box above the Submit button.'));
$comment_spamfilter2 = ( isset($_POST['comchk2']) ) ? trim($_POST['comchk2']) : null;
if ( 'yes'  == $comment_spamfilter2 )
  wp_die( __('Your Comment is waiting for moderation.')); // spam!

/* comment looks ok, so send on to wordpress... */
include ( dirname(__FILE__) . '/wp-comments-post.php');

?&gt;
</pre>
<h5>SpamBots, Mixing It Up</h5>
<p>Of course, if enough people use GASP or PHP GASP, the SpamBotters will adapt their code, so you might want to mix it up a little. For example, make comchk1 the hidden checkbox, or add more hidden checkboxes (comchk3, comchk4, comchk5&#8230;) and so on. </p>
<p>Also GASP doesn&#8217;t stop human spammers, who fill up your moderation folder with comments like <i>&#8220;Great post dude! Thanks for sharing.&#8221;</i> (with a link to some spammy website) and the like, so you might need to try <a href="http://akismet.com/">Akismet</a> (which isn&#8217;t perfect either) or something. To be continued&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dougneubauer.com/2010/12/php-g-a-s-p-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Performance-Based SEO. Buyer Beware.</title>
		<link>http://dougneubauer.com/2010/11/performance-based-seo-buyer-beware/</link>
		<comments>http://dougneubauer.com/2010/11/performance-based-seo-buyer-beware/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 19:52:16 +0000</pubDate>
		<dc:creator>Doug Neubauer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[performance based]]></category>

		<guid isPermaLink="false">http://dougneubauer.com/?p=12795</guid>
		<description><![CDATA[What could go wrong with Performance Based SEO? Judging by the feedback from some of the people who have tried it, a lot.]]></description>
			<content:encoded><![CDATA[<p>One of the problems with SEO is &#8220;what exactly are you buying&#8221;. With a website it&#8217;s easy. You pay your money and you get your website. Same thing goes for a Promotional Video. But with SEO it&#8217;s not so clear. You know you want to rank higher on Google but how do you get there? One thing people have tried is &#8220;Performance-Based SEO&#8221;. The idea here is that you set a target goal such as: Reaching the first page for a given keyword (or group of keywords) and the SEOer gets paid only if the goal is reached. </p>
<p>Sounds great you say, what could go wrong? Well, judging by the feedback from some of the people who have tried it, a lot.<span id="more-12795"></span></p>
<p>Here is a list of some of the problems people have had with certain performance-based SEO companies. Watch out for these tricks&#8230;</p>
<p><b>Money for nothing</b></p>
<p>Some performance-based SEO companies will give you a range of prices depending on the performance goal. Here is an actual example for a VERY competitive keyword:</p>
<ul>
<li>ranking 1-3:  $90 a month</li>
<li>ranking 4-6:  $72 a month</li>
<li>ranking 7-10:  $54 a month</li>
<li>on page two:  $36 a month</li>
<li>on page three: $18 a month</li>
</ul>
<p>At first glance it looks good. Suppose for example you currently rank #28 for the VERY competitive keyword, then for only 90 dollars a month you can rank in the first three. A bargain!</p>
<p>But look a little further. If you reach page three you have to pay $18 a month, but you&#8217;re already on page three! So even if the SEO company does absolutely nothing, there is a good chance that at any particular time Google will rank you #27 or #26 or even higher and you&#8217;ll be out $18 each month.</p>
<p>Now multiply that by a thousand or ten thousand customers. Pretty good income for doing nothing. And of course it&#8217;s even worse for the people who are already on page two or page one.</p>
<p><b>Paying for No Traffic</b>     </p>
<p>In terms of bringing traffic to your site, being on page two or three of Google is virtually worthless. And as if that&#8217;s not bad enough some performance-based SEO companies will actually charge you if you&#8217;re on page two or three of Yahoo or Bing, which have much less traffic than Google. (and they won&#8217;t let you opt out).</p>
<p><b>Google Dance</b>     </p>
<p> Here&#8217;s one that&#8217;s a bit technical.</p>
<p> One performance-based SEO company charges you based on what your rank is on the first of the month. But apparently, and this is the technical part, they pick and choose which of the <a href="http://www.vaughns-1-pagers.com/internet/google-data-centers.htm">Google Data Centers</a> gives you the highest ranking.</p>
<p>As one disgruntled user puts it, &#8220;You&#8217;re constantly in this circle where your rank keeps dropping, yet by some miracle, on the first of the month, your rank increases (while your wallet decreases).&#8221;  Also see: <a href="http://www.google-dance-tool.com/what_is_google_dance.html">Google Dance</a></p>
<p><b>Monthly Search Volume</b>       </p>
<p>Some performance-based SEO companies will provide monthly search estimates for your keyword. In theory, this would allow you to make a rough estimate of your ROI. The problem is their numbers aren&#8217;t very accurate. An example from a disgruntled user&#8230; &#8220;The estimate was for 8,000 monthly searches. It turns out the monthly searches were only 320 for this particular keyword. Needless to say, this mistake currently costs me $44 per month for a measly #22 spot in Google.&#8221;</p>
<p><b>Six Month Contract</b>       </p>
<p>One of the biggest problem with Performance-Based SEO is the long contract. Often times there is quite a bit of a delay between making SEO changes and seeing results on Google. So imagine a legitimate SEOer who works diligently for six months or so and finally gets the customer&#8217;s website onto the 1st page, only to have the customer cancel the contract. The legitimate SEOer works hard for all that and receives nothing.</p>
<p>On the other hand, suppose during that six months the websites ratings go down! The customer is locked into a six month contract, it&#8217;s a disaster.</p>
<p>So what&#8217;s the solution? Hire a legitimate SEO company with a proven track record. Here&#8217;s some good advice from a top five poster at <a href="http://forums.seochat.com/">forums.seochat.com</a>&#8230;</p>
<p><b>Hiring an SEO company is not that hard.</b></p>
<ol>
<li>Ask them to give you 6 keywords/phrases they&#8217;re appearing for on Google and what position they are holding. There&#8217;s your list of 6 references, call them, ask questions about what they did.</li>
<li>Go to <a href="http://siteexplorer.search.yahoo.com/">Yahoo site explorer</a> and look at the inbound links they have acquired. Follow them.</li>
<li> If they ask you to sign any contract that extends beyond month-to-month, find someone else.</li>
<li>
 If anything they say sounds too good to be true&#8230; it is. Anyone that says they can rank you for multiple competitive keyphrases for $100.00 a month, can&#8217;t.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://dougneubauer.com/2010/11/performance-based-seo-buyer-beware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Click Through Rates and Search Classification</title>
		<link>http://dougneubauer.com/2010/10/click-through-rates-and-search-classification/</link>
		<comments>http://dougneubauer.com/2010/10/click-through-rates-and-search-classification/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 12:55:34 +0000</pubDate>
		<dc:creator>Doug Neubauer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[AOL Data]]></category>
		<category><![CDATA[Click Through Rates]]></category>
		<category><![CDATA[CTR]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://dougneubauer.com/?p=12486</guid>
		<description><![CDATA[An analysis of Click-Through-Rates for Navigational Searches, Goods and Services Searches, Comparison Shoppers and Buyers.]]></description>
			<content:encoded><![CDATA[<p>An important number in search engine optimization is the Click through Rate (CTR) for each position on a Search Engine Results Page (<a href="http://dougneubauer.com/2010/10/seo-serp/">SERP</a>). </p>
<p>In a previous article, <a href="http://dougneubauer.com/2010/10/click-through-rates-the-aol-data-revisited/">Click Through Rates. The AOL Data Revisited</a>, we looked at one of the historically important sources of &#8220;click through&#8221; statistics: the <a href="http://en.wikipedia.org/wiki/AOL_search_data_scandal">2006 AOL Data Logs</a>. SEOers have long been interested in the large 71% drop in click-throughs, between the #1 and #2 positions and the impact this has on potential Web sales. This large drop has motivated companies to strive to obtain the #1 position.<img src="http://dougneubauer.com/wp-content/uploads/2010/10/aolctr2.jpg" alt="AOL CTR DATA" title="AOL CTR DATA" width="250" height="230" class="floatleft noimgborder" /></p>
<p>But how accurate are the AOL numbers?  Does the ROI justify the costs involved in reaching #1? One of the problems with the AOL numbers is that they assume that all searchers search the same way and have the same click through patterns. Analyzing the AOL data in greater detail shows that this assumption is incorrect, the search patterns can be quite different, and this throws all the numbers off.<span id="more-12486"></span></p>
<p>To get a better handle on click through rates, this article revisits the AOL Data Logs and breaks web searches into different classifications: Navigational, Informational, Goods and Services Searches, Comparison Shoppers and Buyers, and examines the difference in click through patterns between the groups.</p>
<h3>The AOL Data in Detail</h3>
<p>An earlier 2002 study, &#8220;<a href="http://www.sigir.org/forum/F2002/broder.pdf">A taxonomy of web search</a>&#8221; by <a href="http://research.yahoo.com/Andrei_Broder">Andrei Broder</a> (formerly of IBM Research), classifies web searches into three major types based on &#8220;query intent&#8221;:</p>
<ul>
<li>Navigational. The immediate intent is to reach a particular site.</li>
<li>Informational. The intent is to acquire some information assumed to be present on one or more web pages.</li>
<li>Transactional. The intent is to perform some web-mediated activity such as Web shopping or downloading.</li>
</ul>
<p>The Broder study estimates the search percentages of the 3 groups as: Navigational: 25%, Transactional: 36% and Informational: 39%.</p>
<p><img src="http://dougneubauer.com/wp-content/uploads/2010/10/aolnav1.jpg" alt="Navigational Search Click Through Percentages" title="Navigational Search Click Through Percentages" width="250" height="230" class="alignright size-full wp-image-12540" />Building on this study, the AOL data logs were first broken into 2 major groups: Navigational and Informational, and click through values were determined for the 2 groups. A search was assumed to be Navigational if it contained any of the following: &#8220;http&#8221;, &#8220;.com&#8221;, &#8220;.org&#8221;, &#8220;.mil&#8221;, &#8220;.edu&#8221;, &#8220;www&#8221;, or &#8220;.gov&#8221;.</p>
<p>Out of a total 20,524,584 searches, 5,507,044 were deemed to be Navigational, this is 27% of all searches, agreeing fairly well with the 25% from the Broder study.</p>
<p>Table 1.0 (below) shows a breakdown of click through data for informational and navigational searches. The navigational numbers confirms that navigational searchers are not comparison shoppers. Over 80 percent of all click throughs are for the first two results, implying that navigational searchers have pretty much made up their minds about what they are looking for and if they don&#8217;t find it immediately they give up and try another search. Informational searchers, on the other hand, tend to look at a broader range of results.</p>
<p><b>Table 1.0. Click Through Data for Informational and Navigational Searches</b></p>
<table>
<tr>
<th rowspan="2">Indx</th>
<th colspan="3">All Searches</th>
<th colspan="3">Navigational</th>
<th colspan="3">Informational</th>
</tr>
<tr>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR</th>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR</th>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR</th>
</tr>
<tr>
<td>1</td>
<td>8072897</td>
<td> 42.21</td>
<td> 39.33</td>
<td>1888620</td>
<td> 70.54</td>
<td> 34.29</td>
<td>6184277</td>
<td> 37.60</td>
<td> 41.18</td>
</tr>
<tr>
<td>2</td>
<td>2273787</td>
<td> 11.89</td>
<td> 11.08</td>
<td>278309</td>
<td> 10.39</td>
<td>  5.05</td>
<td>1995478</td>
<td> 12.13</td>
<td> 13.29</td>
</tr>
<tr>
<td>3</td>
<td>1612156</td>
<td>  8.43</td>
<td>  7.85</td>
<td>143075</td>
<td>  5.34</td>
<td>  2.60</td>
<td>1469081</td>
<td>  8.93</td>
<td>  9.78</td>
</tr>
<tr>
<td>4</td>
<td>1151126</td>
<td>  6.02</td>
<td>  5.61</td>
<td>85219</td>
<td>  3.18</td>
<td>  1.55</td>
<td>1065907</td>
<td>  6.48</td>
<td>  7.10</td>
</tr>
<tr>
<td>5</td>
<td>927403</td>
<td>  4.85</td>
<td>  4.52</td>
<td>61460</td>
<td>  2.30</td>
<td>  1.12</td>
<td>865943</td>
<td>  5.26</td>
<td>  5.77</td>
</tr>
<tr>
<td>6</td>
<td>761531</td>
<td>  3.98</td>
<td>  3.71</td>
<td>46674</td>
<td>  1.74</td>
<td>  0.85</td>
<td>714857</td>
<td>  4.35</td>
<td>  4.76</td>
</tr>
<tr>
<td>7</td>
<td>644859</td>
<td>  3.37</td>
<td>  3.14</td>
<td>37100</td>
<td>  1.39</td>
<td>  0.67</td>
<td>607759</td>
<td>  3.70</td>
<td>  4.05</td>
</tr>
<tr>
<td>8</td>
<td>569293</td>
<td>  2.98</td>
<td>  2.77</td>
<td>31712</td>
<td>  1.18</td>
<td>  0.58</td>
<td>537581</td>
<td>  3.27</td>
<td>  3.58</td>
</tr>
<tr>
<td>9</td>
<td>539876</td>
<td>  2.82</td>
<td>  2.63</td>
<td>29512</td>
<td>  1.10</td>
<td>  0.54</td>
<td>510364</td>
<td>  3.10</td>
<td>  3.40</td>
</tr>
<tr>
<td>10</td>
<td>567456</td>
<td>  2.97</td>
<td>  2.76</td>
<td>30360</td>
<td>  1.13</td>
<td>  0.55</td>
<td>537096</td>
<td>  3.27</td>
<td>  3.58</td>
</tr>
</table>
<h3>Comparison Shoppers and Buyers</h3>
<p>Of greater interest, from an SEO standpoint, is determining the click through patterns of active shoppers and potential future customers. After looking again at search demographics in the AOL data logs, three new categories were created. The first, named &#8220;Goods and Services Searcher&#8221;, selects searches for goods and services, focusing mostly on &#8220;brick-and-mortar&#8221; businesses. Some search query examples are:</p>
<ul>
<li>real estate in phoenix</li>
<li>best new york restaurants</li>
<li>richmond dentist</li>
<li>best california ophthalmologists</li>
<li>and so on&#8230;</li>
</ul>
<p>As noted in the Broder Study it is often difficult to establish the &#8220;query intent&#8221; of a searcher by looking at the search query alone. There are times when someone doing a navigational search may use a search query that looks like an informational search. For example, someone looking for the webpage &#8220;shephardchiro.com&#8221; in Portland might use the search string &#8220;chiropractic portland&#8221; as a &#8220;lazy mans&#8221; shortcut. If the large drop-off between the #1 and #2 positions is due to navigational searches, it might be worthwhile to separate them out.</p>
<p>In an attempt to &#8220;weed out&#8221; navigational searchers from the &#8220;Goods and Services Searchers&#8221; a second new category, called &#8220;Comparison Shoppers&#8221;, was created. It selects &#8220;Goods and Services&#8221; searchers who visit (ie click-through) more than one site per search, which should hopefully remove the navigational searchers, or searchers who are not actively shopping.</p>
<p>Finally, the last category, optimistically named &#8220;Buyers&#8221;, selects &#8220;Comparison Shoppers&#8221; who after visiting several sites,  return to a previously visited site, where in theory they make a purchase/conversion. Table 2.0 (below) shows the search and click through totals for the different categories.  Note that the CTR of the Buyers is approximately 2 percent of the CTR of the Goods and Services. As a general rule of thumb the conversion rate for a website is assumed to be around 1-3% so the assumption that the Buyers category are making conversions may be a reasonable one.</p>
<p><b>Table 2.0. Total Click Through and Searches</b></p>
<table style="margin-bottom:2px;">
<tr>
<th>Category</th>
<th>Total Click Through</th>
<th>Total Searches</th>
<th>Total CTR (%)</th>
</tr>
<tr>
<td>Navigational</td>
<td>2677471</td>
<td>5507044</td>
<td>49</td>
</tr>
<tr>
<td>Informational</td>
<td>16447946</td>
<td>15017540</td>
<td>110</td>
</tr>
<tr>
<td>Goods and Services</td>
<td>2607</td>
<td>2035</td>
<td>128</td>
</tr>
<tr>
<td>Comparison Shoppers</td>
<td>1557</td>
<td>541</td>
<td>77 <sup>note1</sup></td>
</tr>
<tr>
<td>Buyers</td>
<td>50</td>
<td>50</td>
<td>2.5 <sup>note1</sup></td>
</tr>
</table>
<div><sup>note1: Comparison and Buyer CTRs use Goods and Services TotalSearches</sup></div>
<p>Figure 1.0 (below) shows the percentage of Total Click-Throughs (CT/TotCT) for the Goods and Services, Comparison Shoppers and Buyers search categories. The &#8220;All&#8221; category is the original AOL data from Table 1.0 (All Searches).  Table 3.0 (below) shows the data in greater detail.</p>
<p>In general, the percentage of click throughs decreases from the #1 position to the #10 position, but the large drop between #1 and #2 in the &#8220;All&#8221; category is less pronounced in the &#8220;Comparison Shoppers&#8221; category and appears to disappear altogether in the &#8220;Buyers&#8221; category. This could indicate that it is less important to obtain the #1 position when targeting buyers and active shoppers.</p>
<p><b>Figure 1.0. Click Through Percentages for Different Search Categories</b><br />
<img src="http://dougneubauer.com/wp-content/uploads/2010/10/aolcomp1a.jpg" alt="AOL Comparison" title="AOL Comparison" width="394" height="386" class="alignnone size-full wp-image-12570" /></p>
<p><b>Table 3.0. Click Through Data for Different Search Categories</b></p>
<table style="margin-bottom:2px;">
<tr>
<th rowspan="2">Indx</th>
<th colspan="3">Goods and Services</th>
<th colspan="3">Comparison Shoppers</th>
<th colspan="3">Buyers</th>
</tr>
<tr>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR</th>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR <sup>note1</sup></th>
<th>CT</th>
<th>CT/TotCT</th>
<th>CTR <sup>note1</sup></th>
</tr>
<tr>
<td>1</td>
<td>853</td>
<td> 32.72</td>
<td> 41.92</td>
<td>337</td>
<td> 21.64</td>
<td> 16.6</td>
<td>10</td>
<td> 20.00</td>
<td> 0.49</td>
</tr>
<tr>
<td>2</td>
<td>373</td>
<td> 14.31</td>
<td> 18.33</td>
<td>227</td>
<td> 14.58</td>
<td> 11.2</td>
<td>14</td>
<td> 28.00</td>
<td> 0.69</td>
</tr>
<tr>
<td>3</td>
<td>307</td>
<td> 11.78</td>
<td> 15.09</td>
<td>190</td>
<td> 12.20</td>
<td> 9.3</td>
<td>8</td>
<td> 16.00</td>
<td> 0.39</td>
</tr>
<tr>
<td>4</td>
<td>205</td>
<td>  7.86</td>
<td> 10.07</td>
<td>137</td>
<td>  8.80</td>
<td> 6.7</td>
<td>6</td>
<td> 12.00</td>
<td> 0.29</td>
</tr>
<tr>
<td>5</td>
<td>162</td>
<td>  6.21</td>
<td>  7.96</td>
<td>120</td>
<td>  7.71</td>
<td> 5.9</td>
<td>6</td>
<td> 12.00</td>
<td> 0.29</td>
</tr>
<tr>
<td>6</td>
<td>146</td>
<td>  5.60</td>
<td>  7.17</td>
<td>108</td>
<td>  6.94</td>
<td> 5.3</td>
<td>1</td>
<td>  2.00</td>
<td>  0.05</td>
</tr>
<tr>
<td>7</td>
<td>112</td>
<td>  4.30</td>
<td>  5.50</td>
<td>83</td>
<td>  5.33</td>
<td>4.1</td>
<td>0</td>
<td>  0.00</td>
<td>  0.00</td>
</tr>
<tr>
<td>8</td>
<td>95</td>
<td>  3.64</td>
<td>  4.67</td>
<td>78</td>
<td>  5.01</td>
<td> 3.8</td>
<td>3</td>
<td>  6.00</td>
<td>  0.15</td>
</tr>
<tr>
<td>9</td>
<td>100</td>
<td>  3.84</td>
<td>  4.91</td>
<td>76</td>
<td>  4.88</td>
<td> 3.7</td>
<td>1</td>
<td>  2.00</td>
<td> 0.05</td>
</tr>
<tr>
<td>10</td>
<td>95</td>
<td>  3.64</td>
<td>  4.67</td>
<td>78</td>
<td>  5.01</td>
<td>3.8</td>
<td>1</td>
<td>  2.00</td>
<td> 0.05</td>
</tr>
</table>
<div style="margin-bottom:7px;"><sup>note1: Comparison Shoppers and Buyer CTRs use Goods and Services TotalSearches</sup></div>
<h3>Click Through Rates for New Customers</h3>
<p>When attempting to calculate the return on investment for an SEO campaign it would be helpful to know which click through rate pattern best represents new customers. Although it&#8217;s probable that none of the patterns exactly match new customers it seems reasonable that some combination of Comparison Shoppers and Buyers would be the closest approximation.</p>
<p>To that end, a new hypothetical category labeled &#8220;New Customers&#8221; was created from a weighted composite of Goods and Services, Comparison Shoppers and Buyers. The resulting CTR Pattern is shown in Figure 2.0 and Table 4.0 (below) along with the original AOL data (ALL), Goods and Services, Comparison Shoppers and Buyers CTR patterns.</p>
<p><b>Figure 2.0. Normalized Click Through Rates for different Search Categories (in %)</b><br />
<img src="http://dougneubauer.com/wp-content/uploads/2010/10/aolctr3a.jpg" alt="AOL CTR Data" title="AOL CTR Data" width="394" height="386" class="alignnone size-full wp-image-12682" /></p>
<p><b>Table 4.0. Normalized Click Through Rates for different Search Categories (in %)</b></p>
<table style="margin-bottom:2px;">
<tr>
<th >Indx</th>
<th >All</th>
<th >Goods and Services</th>
<th >Comparison Shoppers</th>
<th >Buyers</th>
<th >New Customers</th>
</tr>
<tr>
<td>1</td>
<td>39</td>
<td>42</td>
<td>28</td>
<td>25</td>
<td>33</td>
</tr>
<tr>
<td>2</td>
<td>11</td>
<td>18</td>
<td>19</td>
<td>35</td>
<td>28</td>
</tr>
<tr>
<td>3</td>
<td>8</td>
<td>15</td>
<td>15</td>
<td>20</td>
<td>18</td>
</tr>
<tr>
<td>4</td>
<td>6</td>
<td>10</td>
<td>11</td>
<td>15</td>
<td>14</td>
</tr>
<tr>
<td>5</td>
<td>5</td>
<td>8</td>
<td>10</td>
<td>15</td>
<td>10</td>
</tr>
<tr>
<td>6</td>
<td>4</td>
<td>7</td>
<td>9</td>
<td>3</td>
<td>8</td>
</tr>
<tr>
<td>7</td>
<td>3</td>
<td>6</td>
<td>7</td>
<td>0</td>
<td>7</td>
</tr>
<tr>
<td>8</td>
<td>3</td>
<td>5</td>
<td>6</td>
<td>8</td>
<td>6</td>
</tr>
<tr>
<td>9</td>
<td>3</td>
<td>5</td>
<td>6</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>10</td>
<td>3</td>
<td>5</td>
<td>6</td>
<td>3</td>
<td>5</td>
</tr>
</table>
<p>Note: for comparison purposes, the click through rate data for comparison shoppers and buyers was normalized by dividing by their respective &#8220;conversion rates&#8221;, 2% for buyers and 60% for comparison shoppers.</p>
<h3>Conclusions and Observations</h3>
<p>The way people search differs dramatically depending on what they are searching for. Navigational searchers rarely look beyond the first two positions on a search results page. Active shoppers look deeper. The large drop-off we see in the original AOL Data between the #1 and #2 positions appears to be much less pronounced for active shoppers. From the standpoint of SEO this may mean that obtaining the #1 position is less critical than previously thought.</p>
<p>For SEO purposes, the hypothetical pattern &#8220;New Customers&#8221; may be useful for calculating click through rates and ROI. To be continued&#8230;</p>
<p><b>Notes and Limitations</b></p>
<p>The AOL data, while useful, has its limitations. The demographics are going to be different from those of Google. For example, there are probably very few Business-To-Business or .EDU searches.</p>
<p>Also, the data is from 2006. Search algorithms have improved since then. Google is much better at handling spelling errors. New features such as Google Tips, Instant Search and Universal Search have been added as well as changes in Local Search.</p>
<p><b>New Tools</b></p>
<p>Recently Google added the ability to its Webmaster tools to analyze Click Through Rates. Several studies have come out this year analyzing this new source of data. (see resources below)</p>
<h3>Click-through Resources</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/AOL_search_data_scandal">AOL Search Data Scandal</a> (Wikipedia)</li>
<li><a href="http://techcrunch.com/2006/08/06/aol-proudly-releases-massive-amounts-of-user-search-data/">AOL Data, techcrunch.com</a> 8/6/2006</li>
<li><a href="http://www.gregsadetsky.com/aol-data/">Collection of sources of the raw AOL Data</a></li>
<li><a href="http://www.redcardinal.ie/search-engine-optimisation/12-08-2006/clickthrough-analysis-of-aol-datatgz/">AOL Click-Through Analysis</a> by Richard Hearne, 12/8/2006 (redcardinal) *</li>
<li><a href="http://bits.blogs.nytimes.com/2008/09/10/who-uses-aolcom/">Who uses AOL?</a> New York Times, 9/10/2008</li>
<li><a href="http://training.seobook.com/google-ranking-value">Overview of Google Rankings</a>, SeoBook, 2008?</li>
<li><a href="http://www.seobook.com/google-serp-ctr-data-search-rank">Google SERP CTR Data by Search Rank</a>, SeoBook, 4/15/2010</li>
<li><a href="http://www.seobook.com/search-taxonomy-getting-inside-mind-searcher">Review of the Broder Study</a>, SeoBook, 5/28/2009</li>
<li><a href="http://www.sigir.org/forum/F2002/broder.pdf">A taxonomy of web search</a>, The Broder Study, 2002</li>
<li><a href="http://www.websiteoptimization.com/speed/tweak/clickstream/">University of Hamburg, Eye-Tracking Study</a>, 7/26/2006</li>
<li><a href="http://www.cs.cornell.edu/People/tj/publications/granka_etal_04a.pdf">Cornell University, Eye-Tracking Analysis</a>, 7/25/2004</li>
<li><a href="http://www.seoresearcher.com/distribution-of-clicks-on-googles-serps-and-eye-tracking-analysis.htm">Distribution of Clicks on Googles SERPs</a>, Eye-tracking study, 10/26/2006</li>
<li><a href="http://www.seo-scientist.com/google-ranking-ctr-click-distribution-over-serps.html">AOL Data and Eye-Tracking</a>, 7/12/2009</li>
<li><a href="http://www.seomad.com/SEOBlog/google-organic-click-through-rate-ctr.html">CTR and Google Webmaster Tools</a>, by Neil Walker, 5/11/2010, (seomad.com)*</li>
<li><a href="http://chitika.com/research/2010/the-value-of-google-result-positioning/">The Value of Google Result Positioning</a>, Chitika Research, 5/25/2010, *</li>
<li><a href="http://www.blogstorm.co.uk/google-organic-seo-click-through-rates/">Review of the Walker and Chitika studies</a>, Patrick Altoft, 5/27/2010, *</li>
<li><a href="http://googlewebmastercentral.blogspot.com/2010/04/more-data-and-charts-in-top-search.html">Webmaster Tools and CTR</a>, googlewebmastercentral, 4/2010</li>
<li><a href="http://www.epiphanysolutions.co.uk/blog/google-click-through-rate-data-even-less-accurate-than-we-thought/">Accuracy of Webmaster Tools CTR</a>, Andy-Heaps, 5/20/2010</li>
<li><a href="http://www.search-engine-war.co.uk/2010/06/organic-click-through-rate-brand-vs-intent-vs-research-keyphrases.html">Organic Click Through Rate Analysis</a>, Mark Edmondson, 6/1/2010, *</li>
<li><a href="http://www.risedigital.com/blog/is-click-through-rate-only-42-for-the-first-ranking-position/">Is Click Through Rate only 42% for the first ranking position?</a>, RiseDigital, Aug 24, 2010, *</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dougneubauer.com/2010/10/click-through-rates-and-search-classification/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Credit Card Security and Ecommerce Solutions</title>
		<link>http://dougneubauer.com/2010/10/credit-card-security-and-ecommerce-solutions/</link>
		<comments>http://dougneubauer.com/2010/10/credit-card-security-and-ecommerce-solutions/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 08:05:59 +0000</pubDate>
		<dc:creator>Doug Neubauer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[credit card security]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[PCI DSS]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://dougneubauer.com/?p=12647</guid>
		<description><![CDATA[We recommend hosting your web store on a PCI certified e-commerce hosting service.]]></description>
			<content:encoded><![CDATA[<p>Businesses or their Web Designers looking at adding an online storefront or shopping cart to their website may not be aware of <a href="http://www.corecommerce.com/blog/pci-dss-deadline-for-hosted-ecommerce-providers-is-now/">recent deadlines</a> for PCI-DSS compliance. Noncompliance can result in fines up to $500,000.</p>
<p>Payment Card Industry Data Security Standard (PCI DSS), is a set of requirements designed to ensure that ALL companies that process, store or transmit credit card information maintain a secure environment.</p>
<p>Established by the Payment Card Industry, non-compliant companies risk losing their ability to process credit card payments and being audited and/or fined</p>
<p>For SMBs looking to sell a moderate number of products online, we recommend either &#8220;outsourcing&#8221; the checkout process with a payment service such as PayPal, or host your web store on a PCI certified e-commerce hosting service&#8230;  <a href="http://dougneubauer.com/ecommerce/">Read More</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dougneubauer.com/2010/10/credit-card-security-and-ecommerce-solutions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

