<?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>The Musings of Nicholas Reese</title>
	<atom:link href="http://www.nicholasreese.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nicholasreese.com</link>
	<description>Exploring the Digital Age</description>
	<lastBuildDate>Fri, 19 Jun 2009 20:11:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Auction 2 Post &#8211; Implement an Auction Countdown</title>
		<link>http://www.nicholasreese.com/auction2post-implement-an-auction-countdown/</link>
		<comments>http://www.nicholasreese.com/auction2post-implement-an-auction-countdown/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:53:20 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[auction2post]]></category>
		<category><![CDATA[eBay Partner Network]]></category>
		<category><![CDATA[make money online]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=131</guid>
		<description><![CDATA[If you don&#8217;t own Auction2Post or haven&#8217;t read my review of the Auction2Post Wordpress plugin. Please do so!
After buying Auction2Post I was pretty darn satisfied with my purchase. The support is great and the plugin in the best on the market. However as I outlined in my review of the plugin I felt it could [...]]]></description>
			<content:encoded><![CDATA[<div class="standout">If you don&#8217;t own Auction2Post or haven&#8217;t read my review of the <a href="http://www.nicholasreese.com/auction-to-post-review/">Auction2Post Wordpress plugin</a>. Please do so!</div>
<p>After buying <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> I was pretty darn satisfied with my purchase. The support is great and the plugin in the best on the market. However as I outlined in my review of the plugin I felt it could use a countdown timer to be of real use. I didn&#8217;t like the idea of my content going stale and having to maintain that part, so I came up with a solution. Introducing the Auction2Post Jquery Countdown Timer.</p>
<h3>Preview</h3>
<p><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/ends.jpg" alt="auction ends" title="ends" width="474" height="57" class="alignleft size-full wp-image-152" /></p>
<h3 style="clear:both">Auction2Post Jquery Countdown Timer</h3>
<p>This sniplet of code will display a simple countdown of how much time is left in the auction. This not only adds value to your site, but it also adds urgency for the buyer. This code is made to work right out of the box by just adding a couple blocks of code, however I have taken it to the next level for the advanced users out there. This code now supports custom display text and will even redirect the user to a specified URL if the auction has ended! I hope you enjoy it!</p>
<h3> Basic Installation </h3>
<p>To use this hack you need Auction2Post, Jquery and <a href="http://keith-wood.name/countdown.html">Jquery Countdown Plugin</a>. Once you have these three plugins installed drop each of these code blocks somewhere inside your single.php template or within any wordpress loop. I am no PHP wizard so if anyone sees anything for improvement I am open to thoughts.</p>
<h4>PHP Code Block</h4>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;?php
// Get the Ebay End Time
$key = 'a2pEndTime';
$time_array =	get_post_custom_values($key);
$endtime = $time_array[0];
&nbsp;
//2009-06-25T05:16:57.000Z - Ebay Time
//new Date(year, mth - 1, day, hr, min, sec) - Needed Format		
//Split Ebay Time into Useable Pieces	
$year = substr($endtime,0,4);
$mth = substr($endtime,5,2);
$day = substr($endtime,8,2);
$hr = substr($endtime,11,2);
$min = substr($endtime,14,2);
$sec = substr($endtime,17,2);
&nbsp;
//Setup for Display Text
$key = 'a2pExpireText';
$expire_array =	get_post_custom_values($key);
$text = addslashes($expire_array[0]);
// Check to see if we have custom text
	if(strlen($text) &gt; 0){
		$expiryText = 'expiryText: \'' . $text . '\',';
	} else { // if not use the default
		$text = '&lt;div class=&quot;ended&quot;&gt;This Auction has Ended!&lt;/div&gt;';
		$expiryText = 'expiryText: \'' . $text . '\',';
	}
&nbsp;
//Setup for Redirect
$key = 'a2pURLRedirect';
$redirect_array = get_post_custom_values($key);
$redirect = $redirect_array[0];
// Check to see if we have a redirect
	if(strlen($redirect) &gt; 0){
		$expiryUrl = 'expiryUrl: \'' . $redirect . '\'';
	}
?&gt;</pre></div></div>

<h4>JS Code Block<br />
<h4>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;script language=&quot;javascript&quot;&gt;
$(document).ready(function(){
	var auctionEnd = new Date();
	auctionEnd = new Date(&lt;?=$year?&gt;, &lt;?=$mth?&gt; -1, &lt;?=$day?&gt;, &lt;?=$hr?&gt; - 5, &lt;?=$min?&gt;, &lt;?=$sec?&gt;);
	var shortly = null; //used for styling your css of &quot;.ended&quot; switch auctionEnd with shortly on the line below to test.
	$('#defaultCountdown').countdown({until: auctionEnd,
			 alwaysExpire: 'true',
			 layout: 'This Auctions Ends in &lt;span&gt;{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}&lt;/span&gt;',
			 &lt;?=$expiryText?&gt;
			 &lt;?=$expiryUrl?&gt;
			 }); 
});
&lt;/script&gt;</pre></div></div>

<h4>Display the Counter</h4>
<p>To display the counter simply paste the following div where you need it within your template.</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">&lt;div id=&quot;defaultCountdown&quot;&gt;&lt;/div&gt;</pre></div></div>

<h3>Advanced Use</h3>
<p>As outlined within the <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post videos</a>, you can set custom fields for each auction campaign you set up.</p>
<p>If you want to make use of the advanced features such as redirect or custom text to be displayed when the auction ends you need to setup each campaign to include the corresponding custom tags. (screenshot below)</p>
<p><a href="http://www.nicholasreese.com/wp-content/uploads/2009/06/customfields.jpg"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/customfields.jpg" alt="customfields" title="customfields" width="460" height="289" class="alignleft size-full wp-image-140" /></a></p>
<h3>a2pURLRedirect</h3>
<p> This custom field is used in conjunction with a redirect URL. This was the most requested improvement on the Auction2Post Forums. Essentially this will redirect the user if the auction has been completed. This isn&#8217;t the cleanest redirect because it waits until the DOM is loaded instead of passing a php header. As I said I&#8217;m no PHP/Wizard but I couldn&#8217;t get it to pull the post variables outside the loop when working with thesis. If someone wants to mod this I&#8217;ll be happy to update it here.</p>
<p>Note: If you don&#8217;t want to use this feature, just leave it blank.</p>
<p> To Use this feature enter it into the <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> go to the custom template section and scroll down to Custom Fields and enter the following information into the corresponding fields. </p>
<h5>Key</h5>
<pre lang=LANGUAGE>
a2pURLRedirect
</pre>
<h5>Value</h5>
<pre lang=LANGUAGE>
http://www.bing.com
</pre>
<h3> a2pExpireText</h3>
<p>Essentially this field was coded out of necessity. I wanted to display a specialized message based on which campaign the auction was within when it ended. In my testing this works with providing a url and encoding it into JavaScript.</p>
<p>To use this feature enter the information into the <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> custom fields like you did in the area before. </p>
<h5>Key</h5>
<pre lang=LANGUAGE>
a2pExpireText
</pre>
<h5>Key</h5>
<pre lang=LANGUAGE>
&lt;div class=&quot;ended&quot;&gt;This Auction Has Ended! View More &lt;a href=&quot;http://www.bing.com&quot;&gt;Auctions Here&lt;/a&gt;.&lt;/div&gt;
</pre>
<h3>Closing</h3>
<p>All in all, I hope this code is of use, however I offer no warranty with it and if breaks your site I take no responsibility. I am always open to improvements so feel free to shout it out in the comments or reach me via the contact form.</p>
<div class="standout">
<h3>Updated!</h3>
<p>I think there may be a work around for thesis users. It looks like the $post variable is global. I haven&#8217;t had time to tinker with it but if anyone wants to try it and let us know that would be great. Either way I&#8217;ll keep this updated.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/auction2post-implement-an-auction-countdown/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Auction 2 Post Review</title>
		<link>http://www.nicholasreese.com/auction-to-post-review/</link>
		<comments>http://www.nicholasreese.com/auction-to-post-review/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 19:48:57 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[auction2post]]></category>
		<category><![CDATA[eBay Partner Network]]></category>
		<category><![CDATA[make money online]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=115</guid>
		<description><![CDATA[eBay Monetization
As many of you know I have been building niche sites for years with a lot of success, particularly in the automotive industry, but somehow I have always strayed from the eBay monetization plan. I think it was laziness, stubbornness, and other excuses because I definitely knew about it and how great ebay has [...]]]></description>
			<content:encoded><![CDATA[<h3>eBay Monetization</h3>
<p>As many of you know I have been building niche sites for years with a lot of success, particularly in the automotive industry, but somehow I have always strayed from the eBay monetization plan. I think it was laziness, stubbornness, and other excuses because I definitely knew about it and how great ebay has worked for some of my friends.</p>
<p> <a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/ebay-partner-network.jpg" alt="ebay-partner-network" title="ebay-partner-network" width="253" height="49" class="alignleft size-full wp-image-147" /></a></p>
<h3 style="clear:both">Past eBay Success</h3>
<p>Finally over this past week I was talking to a friend and he was ranting about having amazing success with the eBay Partner Network with PHPBay sites for about a week to 15 days after launch when suddenly they would get &#8220;nuked.&#8221; He seemed very frustrated and asked me to look at it.</p>
<h3>PHPBay Footprint </h3>
<p>My friend has been consistently been pulling in $xxx monthly though eBay partner network over the past year and a half working with PHPBay. He has noticed that it has been increasingly hard to get his sites indexed. Though I have never used PHPBay, I took a look at his site and after a quick peek at his code and a quick Google search it was apparent he had a footprint problem. Lets face it PHPBay has 1,000s of users and the majority of them are newbies using the basic template so you can bet Google has figured out which sites are generated via PHPBay.</p>
<p>This poses a problem, if you want to continue to be profitable in the eBay business you need to get away from this footprint.  This means writing your own code to interact with the eBay API. </p>
<h3>How to Eliminate this Footprint</h3>
<p>If you want to eliminate this nasty footprint without programming this leaves you with virtually no options until now! Enter <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a>. This unique plug-in goes above and beyond the plug-ins that are currently offered. </p>
<p>Originally when I saw the <a href="http://www.nicholasreese.com/recommended/Auction2Post"> Auction2Post WordPress plug-in</a>  I was a bit skeptical. I was really torn on what to do. Build my own software using the eBay API and invest 40+ hours figure it out or buy a $79 product which might already do what I needed. Finally I decided for $79 is the same as about 2 hours of my time. So I jumped in and bought it.</p>
<h3>Auction2Post &#8211; the Perfect eBay Plugin</h3>
<p>Boy am I glad I went with <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a>. This plug-in does everything and more than I would have built for myself. Even better it completely blows PHPBay out of the water in nearly every aspect and it just is still in the 1st product release!</p>
<p> <a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/a2plogo1.jpg" alt="Auction 2 post" title="Auction2Post" width="464" height="197" class="size-full wp-image-148" /></a></p>
<p style="clear:both">See PHPBay has quite a few limitations but its biggest limitation is its FOOTPRINT! There are thousands of users using PHPBay to develop eBay based sites and you bet Google has figured this out. Go ahead use PHPBay, I don&#8217;t care get your site nuked like what my friend experienced.</p>
<h3>Auction2Post &#8211; Key Features </h3>
<p>The key point where <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> stands out is it actually uses the API to pull all of the information from relevant eBay items and builds WordPress posts based on a template YOU DEFINE! On top of that, it caches the images, to help reduce your foot print! The use of template tags allows new users to advanced users to make very dynamic websites. (Available Template Tags Below)</p>
<p><a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/automation.jpg" alt="Automation" title="Auction2Post Automation" width="572" height="86" class="size-full wp-image-151" /></a></p>
<p style="clear:both">This gives you ultimate flexibility when it comes to designing your site the way you want.<a href="http://www.nicholasreese.com/recommended/Auction2Post"> Auction2Post</a> was built with customization in mind. Want to use a magazine theme? You can do that with Auction2Post because it utilizes WordPress custom fields! Want to display auctions in your sidebar, do it with custom fields. This feature alone brings Auction2Post to the forefront of the pack. (Custom Tag Area Screenshot Below)</p>
<p><a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/custom-fields-blank.jpg" alt="custom-fields-blank" title="custom-fields-blank" width="456" height="293" class="alignleft size-full wp-image-146" /></a></p>
<p style="clear:both">Finally, Auction2Post features an automation system! That’s right, not only do you get content that makes you money but it will populate automatically. Set It and Forget It! <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> will continue to deliver you with high quality niche specific content, this on top of all the other features makes Auction2Post an amazing software investment. (Screenshot Below)</p>
<p><a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/automation.jpg" alt="Automation" title="Auction2Post Automation" width="572" height="86" class="size-full wp-image-151" /></a></p>
<h3>Potential Improvements</h3>
<p> Though the Auction2Post plugin is nearly a perfect dream for an advanced user there are a few things I would like to see included. The first of which is a countdown timer to display how much time is left in the auction. </p>
<p>Next I would like to see a feature which used a widget to pull auctions into your sidebar. That would be great for a basic user.</p>
<p>Finally I would like to see auto-formatting of eBay auctions. The template system is great, but it could use a couple improvements like the ability to add images throughout the content and not just above it or below it. The good news it this is planned for the next version!</p>
<h3>Future Upgrades</h3>
<p>Though there is room for improvement, I am positive the Auction2Post team will continue to upgrade this plugin to make it even better than it currently is. All future upgrades are included with your purchase which is great. So if I was using PHPBay and having any success I would get in on the ground floor with Auction2Post and loose the footprint. Best of all you can use the plugin on unlimited domains!</p>
<h3> Outstanding Support</h3>
<p>Finally Auction2Post has a stellar support team which you can always reach on the forums or via AIM. Raido does a great job helping new users get the plugin integrated into their site.</p>
<p><a href="http://www.nicholasreese.com/recommended/Auction2Post"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/forums.jpg" alt="Auction 2 Post Forums" title="Auction 2 Post Forums" width="500" height="305" class="alignleft size-full wp-image-156" /></a></p>
<h3 style="clear:both;">Closing</h3>
<p>All in all, I would highly recommend the Auction2Post plugin to anyone who is interested in using the Ebay Partner Network to make money. It is the best longterm solution from both an SEO perspective and a customization perspective. </p>
<p>If you have tried the plugin, I would love to hear your thoughts in the comments.</p>
<div class="standout">
<h3>Updated!</h3>
<p><a href="http://www.nicholasreese.com/auction2post-implement-an-auction-countdown/"><img src="http://www.nicholasreese.com/wp-content/uploads/2009/06/ends.jpg" alt="auction ends" title="ends" width="474" height="57" class="alignleft size-full wp-image-152" /></a></p>
<p style="clear:both">To further demonstrate how easy it is to customize an Auction2Post WordPress site I have developed a <a href="http://www.nicholasreese.com/auction2post-implement-an-auction-countdown/">countdown timer</a> which you can integrate within your <a href="http://www.nicholasreese.com/recommended/Auction2Post">Auction2Post</a> website! This includes the ability to redirect to the home page if the auction has ended! This was the most requested feature on the forums and now you can implement it easily.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/auction-to-post-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Local Search and Website Copyrights</title>
		<link>http://www.nicholasreese.com/local-search-and-website-copyrights/</link>
		<comments>http://www.nicholasreese.com/local-search-and-website-copyrights/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 05:11:24 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Local SEO]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Sleepless]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=109</guid>
		<description><![CDATA[Sleepless Again
The majority of this post was written while my insomniac mind continues to mull over the MerchantCircle case. After about 45 minutes of laying in bed, sleepless I decided I might as well get my thoughts out here.
Wrong URL?
To be honest I find it puzzling how the wrong URL to many of these listings. [...]]]></description>
			<content:encoded><![CDATA[<h3>Sleepless Again</h3>
<p>The majority of this post was written while my insomniac mind continues to mull over the MerchantCircle case. After about 45 minutes of laying in bed, sleepless I decided I might as well get my thoughts out here.</p>
<h3>Wrong URL?</h3>
<p>To be honest I find it puzzling how the wrong URL to many of these listings. Taking <a href="http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/#comment-199">MerchantCircle&#8217;s words as truth</a> this points to Google Algorithm. Mike Bluementhal has <a href="http://blumenthals.com/blog/2006/10/23/redemption-in-the-gilded-google-age/">outlined</a> <a href="http://blumenthals.com/blog/2006/10/04/the-road-to-google-maps-nirvhana-is-paved-with-good-intentions/">several times</a> how <a href="http://blumenthals.com/blog/2008/07/31/google-maps-and-the-wrong-url/">Google has been attributing the wrong URL to business</a>. These examples point out that Google still has a large amount of tweaking to do to the Local search algorithm. Which is a major reason I am so interested in local search.</p>
<h3>Thinking Like a Search Engine</h3>
<p>Now when I think of SEO in general, I try to think like a search engine. In the case of attributing a website to a business, what is nearly 1 fool proof way to find out if a website belongs to a company? Well after reading <a href="http://blumenthals.com/blog/2009/04/20/what-is-merchant-circle-up-to-now/#comment-377768">Rose&#8217;s comment on Mike Bluementhals blog</a>, it jumped out at me, The Copyright phrase. </p>
<p>I&#8217;m not sure if this has been discussed but if you look at nearly all websites on the web, most have copyrights. Well in the case of the <a href="http://www.nicholasreese.com/instant-websites-and-merchant-circle-questionable-practices/">MerchantCircle registered business domains</a>, each website had a copyright symbol associated with the business name. Get that? Not just the domain name but the <strong>business name</strong>. This coupled with a nice amount of link juice and other sites from each local area linking to the domain may have attributed to &#8220;Google&#8217;s Confusion&#8221; in assigning the wrong domain to the business listing.</p>
<h3>Thoughts?</h3>
<p>Now I know this isn&#8217;t fool proof, and yes it could be gamed, but it would make sense. People want to claim their work and so do businesses. It is an interesting theory I would love to get some opinions on. Ideas? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/local-search-and-website-copyrights/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Instant Websites and Merchant  Circle Questionable Practices</title>
		<link>http://www.nicholasreese.com/instant-websites-and-merchant-circle-questionable-practices/</link>
		<comments>http://www.nicholasreese.com/instant-websites-and-merchant-circle-questionable-practices/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 21:45:36 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Local SEO]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[MerchantCircle]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shady]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=78</guid>
		<description><![CDATA[Over  the weekend I wrote how Merchant Circle was up to something shady. After doing  more research it seems the rabbit hole goes deeper than expected. 
Merchant  Circle Instant Website
After  BTS commented that these sites may have been generated via MerchantCircle&#8217;s  &#34;Instant Website&#34; service. I began to probe deeper into [...]]]></description>
			<content:encoded><![CDATA[<p>Over  the weekend I wrote how <a href="http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/">Merchant Circle was up to something shady</a>. After doing  more research it seems the rabbit hole goes deeper than expected. </p>
<h3>Merchant  Circle Instant Website</h3>
<p>After  <a href="http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/comment-page-1/#comment-193">BTS commented</a> that these sites may have been generated via MerchantCircle&#8217;s  &quot;Instant Website&quot; service. I began to probe deeper into my Merchant  Circle account.  At first I was lead to believe maybe these websites were legitimately requested by the owners, but something didn&#8217;t smell right. After all this <a href="http://www.google.com/search?hl=en&#038;client=firefox-a&#038;rls=org.mozilla%3Aen-US%3Aofficial&#038;hs=fdL&#038;q=%22Powered++by+MerchantCircle%22+-%22%3BMerchantcircle+Marketing+Advisor%22++-site%3Amerchantcircle.com&#038;btnG=Search">search query</a> shows there are about 76,100 of these sites. Merchant Circle would have to have one hell of a conversion rate. So I began researching the &quot;Instant Website Service.&quot; </p>
<p>
It turns out Merchant Circle indeed does have a service in  which it offers to create a website. (pricing below)</p>
<p><img class="alignleft" src="http://www.nicholasreese.com/wp-content/uploads/2009/04/instant-website-pricing.jpg" alt="Instant Website Pricing" /></p>
<p>The  Instant Website product is merely an extension of Merchant Circle business  listing. Which the consumer has control over via the MerchantCircle account  management panel. However if you read the TOS (<a href="http://www.nicholasreese.com/wp-content/uploads/2009/04/instant-webstie-tos.txt">full TOS Here</a>) closely you will see the specific  terms which apply to the &quot;Instant Website Product&quot; are rather intense  in a few areas:</p>
<ul>
<li>&quot;180 day minimum commitment period. Other cancellation  and editing fees may apply.&quot;</li>
<li>&quot;Merchant further understands that this product is  intended as a complementary extension of their MerchantCircle listing  page.&quot;</li>
<li>&quot; Any  requests to transfer a domain name provisioned for the Instant Website product  is subject to a $199 transfer fee.&quot;</li>
<li>&quot; Merchant further understands that MerchantCircle is  the registered owner on record of each domain name and makes possible the  merchant&#8217;s ongoing usage of the domain name for the duration of the merchant&#8217;s  subscription period.&quot;</li>
<li>&quot;Other  cancellation and editing fees may apply.&quot;</li>
</ul>
<p><h3>Understanding the TOS</h3>
<p>  So if I follow these terms correctly, every Merchant who uses the Instant  website agrees:</p>
<ul >
<li>MerchantCircle Owns the domain.</li>
<li>That all links will point back to the MerchantCircle site.</li>
<li>To use the domain outside of MerchantCircle they must pay a hefty fine.</li>
<li>They must keep the service for 6 months and if they want to cancel they may have to pay extra.</li>
</ul>
<p><strong>&lt;sarcasm&gt;Sounds  like a real deal. Where do I sign up?&lt;/sarcasm&gt;</strong></p>
<h3>Here is where it gets Hairy &#8211; Deeper Down the Rabbit Hole</h3>
<p>Convinced that most sane users of MerchantCircle wouldn&#8217;t sign up for a service like I this I continued to probe deeper. As I continued to dig deeper into the search query posted at the top of the page you will find some interesting examples of &quot;<strong>Questionable Practices</strong>.&quot; With  the help of <a href="http://blumenthals.com/blog/">Mike Bluementhal</a> these examples were uncovered:</p>
<h4>Art  and Faux San Jose</h4>
<p><img class="alignleft" src="http://www.nicholasreese.com/wp-content/uploads/2009/04/artfaux.jpg" />Earlier today Mike Blumenthal Pointed out this example in his post &quot;<a href="http://blumenthals.com/blog/2009/04/20/what-is-merchant-circle-up-to-now/">What is  Merchant Circle Up to Now</a>.&quot; MerchantCircle now claims the Google OneBox  for the query of the business name <a href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=pQK&amp;q=Art+and+Faux+San+Jose&amp;btnG=Search">Art  and Faux San Jose</a>. The domain is registered to MerchantCircle however, the  owner never signed up for the &quot;Instant Website Product.&quot;</p>
<h4>Terry  Don&#8217;s Plumbing LLC</h4>
<p><img class="alignleft" src="http://www.nicholasreese.com/wp-content/uploads/2009/04/plumbing.jpg" />As  a business owner myself, I would hate to see my competitors advertised on a  domain with my company name in it. Check out the <a href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=gGf&amp;q=Terry+Don%27s+Plumbing+LLC&amp;btnG=Search">Terry  Don&#8217;s Plumbing LLC</a> search query. You will see that Merchant Circle claims  not only the top 2 spots for this domain, but the top 3. In visiting www.terrydonsplumbingllc.com (nope not linking there) you will see that though Terry Don&#8217;s is listed as the first &quot;Featured  Result&quot; his competitors are featured  there as well. In trying to contact this business I was unsuccessful,  however if they did purchase the Instant Website product I would be very  surprised. When I called to contact them I got a call center. Guess you  can&#8217;t always speak to the plumber, so I left a message.</p>
<h4>Artistry  by Athena</h4>
<p><img class="alignleft" src="http://www.nicholasreese.com/wp-content/uploads/2009/04/athena.jpg" />This  case isn&#8217;t as extreme however the business owner never authorized the purchase  of this domain.  Query: <a href="http://www.google.com/search?q=Artistry+by+Athena&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">Artistry  by Athena</a>. You will see that though MerchantCircle does not hold the top  result it does however hold the 2nd result. Above <a href="http://www.athenau.com/">Artistry  by Athena</a>&#8217;s real site.</p>
<h3>So  what is MerchantCircle up to?</h3>
<p>It  seems MerchantCircle has begun the charge on localized domain names.  I.E.&quot;GenericBusinessLocalArea.com&quot; while catching other business  names in the crossfire (we&#8217;ll assume that).   These locale  related domains will  be ever more valuable as Google continues to integrate local search results  into universal search. The best part is MerchantCircle has user generated  content to populate these domains quickly. As far as ranking MerchantCircle has  interlinked each domain with other businesses in their locale along with each  MerchantCircle.com business listing. This strategy has allowed their websites  to quickly gain authority. In many examples these domains have little to no  external links except from other MerchantCircle sites.</p>
<h3>What  is the Impact?</h3>
<p>Well  the affected businesses aren&#8217;t limited to the three examples listed above. The  search query at the top of this post shows about 76,100 results. Now how many  of those has MerchantCircle also claimed domains for without business owners  permission. The next question is how will MerchantCircle use these domains.  Will they use them for any other purposes besides increasing local traffic and  rankings such as, trying to sell the business owners the domains at a hefty  premium? It will be interesting to see.</p>
<h3>So  What About the Businesses in the Crossfire?</h3>
<p>Well  this is really a question as to whether Merchant Circle is <a href="http://www.en.wikipedia.org/wiki/Cybersquatting">CyberSquatting</a> or  not. It seems in that they may be in some of the cases listed above. However I  am not a legal expert nor do I claim to be, but if I would Terry Don&#8217;s Plumbing  I would be furious and would definitely be contacting my attorney. The sad part is that many businesses have little idea of what Local SEO entails. Furthermore, I&#8217;d bet that many don&#8217;t even know MerchantCircle is closing in on their rankings</p>
<h3>What Can Small and Medium Businesses Do to Protect Themselves?</h3>
<p>If  you are a small to medium business and haven&#8217;t registered with <a href="http://www.google.com/local/add">Google&#8217;s Local Business Center</a> do it  now! It doesn’t take long and it is a vital step to protecting yourself against  false claims on your business name. I don&#8217;t care if you don&#8217;t have a website  yet, just do it. Down the road I may post a quick how-to video.</p>
<h3>Commenter  BTS</h3>
<p>To  Commenter BTS who posted on my last post, it seems that you also commented on <a href="http://gesterling.wordpress.com/2008/08/06/merchantcircle-creates-instant-websites/">MerchantCircle  Creates Instant Websites</a>. Does BTS stand for Ben Smith owner of Merchant  Circle?  Interestingly enough the ip address of the commenter points to California. I wonder&#8230; Either way I invite MerchantCircle to comment.</p>
<h3>Thoughts, Comments, Opinions?</h3>
<p>Have an opinion I&#8217;d love to here your thoughts on this. Let the locale domain name landrush begin &#8211; if it hasn&#8217;t already started.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/instant-websites-and-merchant-circle-questionable-practices/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Merchant Circle Hijacking Local Business Listings</title>
		<link>http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/</link>
		<comments>http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 21:41:04 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Local SEO]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=24</guid>
		<description><![CDATA[
Updated:
I have followed up on this post with  Instant Websites and Merchant Circle Questionable Practices. Check it out.
This post outlines the finer points of the MerchantCircle issue in much better detail.


Revision
When writing this post I made some assumptions that may not be 100% accurate in the example of Rutt of Los Altos. I do [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left margin:5px; padding:10px; border:1px solid #ccc; background-color:#eee;">
<h3 style="margin-top:10px;">Updated:</h3>
<p>I have followed up on this post with  <a href="http://www.nicholasreese.com/instant-websites-and-merchant-circle-questionable-practices/">Instant Websites and Merchant Circle Questionable Practices</a>. Check it out.</p>
<p style="margin-bottom:10px;">This post outlines the finer points of the MerchantCircle issue in much better detail.</p>
</div>
<div style="float:left margin:5px; padding:10px; border:1px solid #ccc; background-color:#eee;">
<h3 style="margin-top:10px;">Revision</h3>
<p>When writing this post I made some assumptions that may not be 100% accurate in the example of Rutt of Los Altos. I do have a personal example where Merchant Circle registered a domain name consisting of the business name submitted to them. I will continue digging on this subject. I have targeted a few other local businesses in my area which also have websites generated by MC. This week I will be contacting them to see if they requested these websites. </p>
<p style="margin-bottom:10px;">Look for another post shortly. I will outline the details of what I have found. Thanks</p>
</div>
<h3>Original Post &#8211; Below</h3>
<p>Anyone who plays in local search optimization for very long is familiar with Merchant Circle. They are an SEO powerhouse whose intentions are typically less than 100% pure. Unfortunately this pattern of shady business decision has taken on a new form. </p>
<p style="clear:both;">In 2007, Sugarrae wrote a post on how <a href="http://www.sugarrae.com/merchant-circle-can-kiss-my-consumer-ass/">Merchant Circle offered little-to-no value to end users and consumers</a>. Within her post she wrote:</p>
<blockquote><p>&#8220;So, basically, Merchant Circle is doing their best to rank in the search engines with the <b> sole goal being to charge businesses to control their listing</b>, but providing no end experience or value to the user?&#8221;</p></blockquote>
<p>It seems she was more right than she may have known at the time.</p>
<h3>Widespread Hijacking of Business Domains</h3>
<p>Today while checking on some of my client&#8217;s listing I noticed something peculiar. Happening in the SERPS, for example visit this search: <a href="http://www.google.com/search?q=Rutt+of+Los+Altos&#038;ie=utf-8&#038;oe=utf-8&#038;aq=t&#038;rls=org.mozilla:en-US:official&#038;client=firefox-a"> Rutt of Los Altos</a>. <img src="http://www.nicholasreese.com/wp-content/uploads/2009/04/hijacked-listing.jpg"></p>
<p>This is not my client, however my client&#8217;s site follows the same pattern. </p>
<p> Rutt of Los Altos is a cabinetry business based in Los Altos, California. Their real web site is <a href="http://www.ruttoflosaltos.com/">www.ruttoflosaltos.com</a>. However this site has not been submitted to the Google Local Business Center. So it seems someone has taken it upon themselves to register <a href="http://www.ruttoflosaltos.net/" rel="nofollow">www.ruttoflosaltos.net</a> and submit it to the Google Local Business Center. This is known as hijacking &#8211; when you register a business that isn&#8217;t yours in the Local Business Center. Once registered you can point the listing to any domain you wish via the LBC or via a redirect. </p>
<h3>Who&#8217;s Behind this? &#8211; Merchant Circle That&#8217;s Who</h3>
<p> <img style="float:left; margin:5px 5px 5px 0" src="http://www.nicholasreese.com/wp-content/uploads/2009/04/registrar-info1.jpg"> A quick <a href="http://whois.domaintools.com/ruttoflosaltos.net">search of the whois records reveals</a> (to the left) Merchant Circle as the culprit. Now lets take a look at the real web site versus the Merchant Circle Hijacked Domain. (below)</p>
<p><img src="http://www.nicholasreese.com/wp-content/uploads/2009/04/real-hijacked.jpg"/></p>
<h3>Where is this information coming from? </h3>
<p>When you visit the Merchant Circle hijacked domain, you will notice it reflects exactly what is on the <a href="http://www.merchantcircle.com/business/Rutt.of.Los.Altos.650-941-1170" rel="nofollow">Merchant Circle Listing of Rutt of Los Altos</a>. Except for the link to the Main Web site (which would have been nice). Further more all of the links on the site link back to the Merchant Circle Web site Check the comparison pictures below. <img src="http://www.nicholasreese.com/wp-content/uploads/2009/04/duplicate-info.jpg" /> </p>
<h3>My Web sites? You Mean other Merchant Circle Web sites?</h3>
<p>Finally you will notice that Merchant Circle has also listed the Hijacked Domain within &#8220;My Web sites&#8221; section of the Merchant Circle Listing adding insult to injury. <img src="http://www.nicholasreese.com/wp-content/uploads/2009/04/my-websites.jpg" /> </p>
<h3>Implications from a Local Search Perspective </h3>
<p><img src="http://www.nicholasreese.com/wp-content/uploads/2009/04/stolen-citations.jpg"></p>
<p>In the picture above you will see that Rutt of Los Altos is a real business and it has numerous citations on other sites ranging from Internet Yellow Pages to other local San Jose related sites. However, all of these situations have been applied to the <a href="http://maps.google.com/maps?oe=utf-8&#038;client=firefox-a&#038;ie=UTF-8&#038;q=rutt+of+los+altos&#038;fb=1&#038;split=1&#038;gl=us&#038;view=text&#038;latlng=9152178450310324634&#038;ei=IyXqScX4HIWINtmhkasB&#038;dtab=3&#038;oi=md_references&#038;sa=X"> Merchant Circle Hijacked Listing</a>. Gives Google enough support to rank the Hijacked Map Listing in the SERPS higher than the real listing because the information has essentially been confirmed as &#8220;legitimate.&#8221; For more information on how Local Business Citations Work visit <a href="http://www.davidmihm.com/blog/general-marketing/local-seo-citation-is-new-link/">David Mihm&#8217;s Blog</a> or <a href="http://blumenthals.com/blog/2008/08/04/ranking-factors-in-google-maps-cracking-the-code-smx-local/">Mike Blumenthal&#8217;s blog</a>. They both are local Search experts and explain how citations work very clearly.</p>
<h3>What Does this Mean for the Business Owner?</h3>
<p>From my understanding it will be very difficult for the actual business owner to reclaim their listing once the Merchant Circle listing has been confirmed. (I would love to hear your thoughts on this in the comments.) However what is apparent is that Merchant Circle is now in control of many business listings within the Google Local Business Center. How will Merchant Circle use this? This still remains to be seen, however one this is for certain, if past actions are any representation of future actions, local business owners who are affected may have one hell of a time getting their listing back. It wouldn&#8217;t shock me if Merchant Circle even tried to charge business owners to access their own listings. I do however wonder how this ties in to the recent &#8220;Confirm Your Listing&#8221; emails I have been receiving. &#8211; More on that Later. </p>
<h3>75,000+ Businesses Affected &#8211; Cybersquatting?</h3>
<p>A quick search of <a href="http://www.google.com/search?hl=en&#038;client=firefox-a&#038;rls=org.mozilla%3Aen-US%3Aofficial&#038;q=%22Powered+by+MerchantCircle+%22+-%22Merchantcircle+Marketing+Advisor%22+-site%3Amerchantcircle.com&#038;btnG=Search">&#8220;Powered by Merchant circle &#8221; -&#8221;Merchant circle Marketing Advisor&#8221; -site:merchantcircle.com</a> reveals there are about 75,700 businesses affected by this. I am not a legal expert nor do I claim to be (in fact I know very little about this subject so feel free to chime in), but from what I understand this is pretty much the definition of <a href="http://en.wikipedia.org/wiki/Cybersquatting">CyberSquatting or NameJacking</a> since Merchant Circle is showing ads on the hijacked domain, thus profiting from the domain name. Furthermore there is a high probability that Merchant Circle may charge business owners for future access to these sites. From my perspective it the actions taken by MerchantCircle seem reckless and shortsighted.  It is apparent that is move has been made to garner control of more organic search traffic and to boost MerchantCircle&#8217;s rankings, allowing them to continue to outrank many business who&#8217;s domains they have yet to hijack. </p>
<h3>What Can Local Businesses Do to Protect Themselves?</h3>
<p>If you own a small-to-medium sized business I highly suggest you register your business with the <a href="https://www.google.com/local/add/">Google Local Business Center</a>. It takes about 15 minutes if you activate by phone and you will have control of your listing. It would not surprise me if more companies begin to try and monopolize listings within the Google local business center in the near future. Get your business registered before it gets hijacked.</p>
<h3>My Experience</h3>
<p>Just to reconfirm, I do not work with Rutt of Los Altos, but I do have several listings exhibiting the same issues. In my case I never requested this service nor do I want this service applied to my listings. My listings have been listed with MerchantCircle for over a year now and we originally listed with them because the site pushed some serious link juice along with some additional exposure. </p>
<h3>Add Your Thoughts Below</h3>
<p>Have you had your listing hijacked? Thoughts on CyberSquatting? Let me know I want to hear what you have to say.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/merchant-circle-hijacking-local-business-listings/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Home Stretch</title>
		<link>http://www.nicholasreese.com/the-home-stretch/</link>
		<comments>http://www.nicholasreese.com/the-home-stretch/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 04:24:50 +0000</pubDate>
		<dc:creator>Nicholas</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Future]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=21</guid>
		<description><![CDATA[We are finally upon it. The finish of college is in my sights. I&#8217;m excited, nervous, but mostly anxious. Now is the time of life where the big questions start flying your way. What do I want to do? Where do I want to do it? All of these decisions will dramatically shape my life.
To-Do
Throughout [...]]]></description>
			<content:encoded><![CDATA[<p>We are finally upon it. The finish of college is in my sights. I&#8217;m excited, nervous, but mostly anxious. Now is the time of life where the big questions start flying your way. What do I want to do? Where do I want to do it? All of these decisions will dramatically shape my life.</p>
<h3>To-Do</h3>
<p>Throughout my life, I have always set goals to meet specific objectives. In my experience it is a lot easier to hit a target you can actually see. So over the past few weeks I have begun brainstorming (on paper), there is just soo much I want to do, so I might as well have a copy of it. Sometimes your brain just gets cluttered, paper really helps me clear my head.</p>
<h3>Flexibility</h3>
<p>Currently I have the flexibility of working online, this is something I treasure. I am able to make my hours and best of all I am working for myself. Currently my company <a href="http://www.gwun.com">Gwun Real Estate Marketing</a> allows me to do this while attending college, it truly has been a dream. I have also launched another internet company last summer which generates Auto Loan leads. Overall the venture has been great. My web design skills have improved drastically since 2007 when I first started blogging over at <a href="http://www.addedtraffic.com">added traffic</a>. Essentially I have realized that I want to keep this flexibility because it allows me to plan my work around my life, instead of the other way around.  I foresee this being a trend for at least a few more years unless an amazing job flies my way.</p>
<h3>Future Goals</h3>
<p>Throughout college, I have grown a lot in nearly every aspect of my life. From business to personal to everything in between, I have begun to realize that I really enjoy working with others instead of just sitting behind a computer. After all there is a balance to everything so who knows, someday I see myself speaking or doing consulting, or ideally both. <img src='http://www.nicholasreese.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<h3>More Posts</h3>
<p>I hope to be here more often. We&#8217;ll see what happens. I will have a lot more time on my hands once I graduate, after all with 17 credit hours my life is pretty hectic with just that. Who knows, three more weeks<br />
until my final spring semester is finished! Just one class this summer!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/the-home-stretch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tampa Wedding Photography</title>
		<link>http://www.nicholasreese.com/tampa-wedding-photography/</link>
		<comments>http://www.nicholasreese.com/tampa-wedding-photography/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 17:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nicholasreese.com/?p=15</guid>
		<description><![CDATA[This past weekend I helped a friend of the family build a site which would make her photography business stand out. Her key concern was showing up in the search engines, which had previously over looked her all flash site.
There was no doubt in my mind, that flash was the problem. Her site was indexed [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I helped a friend of the family build a site which would make her photography business stand out. Her key concern was showing up in the search engines, which had previously over looked her all flash site.</p>
<p>There was no doubt in my mind, that flash was the problem. Her site was indexed but only the landing page. Google and the other search engines had no idea what her site was about, because they cannot view flash. In order to fix this problem I needed to convince her that it was her &#8220;flashy&#8221; flash site that was causing her issues.</p>
<p>After much debate we ran into 3 key issues:</p>
<ul>
<li>Image protection</li>
<li>Clean user interface</li>
<li>Easy to Update</li>
</ul>
<p>
However there was also a draw back,her site used a proprietary templating system which had an associated monthly fee. I suggested that we move to WordPress to manage her website.</p>
<p>I explained that is easy to use and fairly straight forward. This would help her cut out her monthly cost and allow her to easily update the site.</p>
<p>To help resolve the clean user interface issue we purchased a wordpress template known as W-PhotoStudio from a template site. This theme was fairly easy to implement (needed php and css knowledge).</p>
<p>Finally we are left with one key point remaining. She wanted to protect her images from her previous clients. In the past there have been issues with her clients &#8220;stealing&#8221; the photos from her website and printing them. To help combat this we implemented a Jquery Plugin which would <a href="http://davidwalsh.name/image-protector-plugin-for-jquery">protect the images</a> by covering them with clear 1&#215;1 pixel. This will help people prevent people with little knowledge from stealing photos.</p>
<p>To help further protect her images I set up a Photoshop action to water mark her images with her logo. That way if someone stole her image and printed it at least her logo would still be present.</p>
<p>Over all the project was a success!</p>
<p>Feel free to check the site out, and if you need any <a href="http://www.blackeyedsusanphotography.com/">Tampa Wedding Photography</a> done please call Susan. She is great to work with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nicholasreese.com/tampa-wedding-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
