<?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>E-Commerce for All</title>
	<atom:link href="http://pro-webs.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://pro-webs.net/blog</link>
	<description>E-Commerce Tips, Tricks and Tribulations</description>
	<lastBuildDate>Fri, 12 Mar 2010 14:45:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Helpful Security Extras for Zen Cart</title>
		<link>http://pro-webs.net/blog/2010/03/12/helpful-security-extras-for-zen-cart/</link>
		<comments>http://pro-webs.net/blog/2010/03/12/helpful-security-extras-for-zen-cart/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 14:39:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[Store Development]]></category>
		<category><![CDATA[Access Security]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Images Directory]]></category>
		<category><![CDATA[Password Protect]]></category>
		<category><![CDATA[Passwords]]></category>
		<category><![CDATA[Prevent Hacks]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Zen Cart]]></category>
		<category><![CDATA[Zen Cart Security]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=950</guid>
		<description><![CDATA[
			
				
			
		
First and foremost make sure your Zen Cart is fully patched! No exceptions. Your Zen Cart you just downloaded  and installed still needs these.
Now, do these items on Zen Cart&#8217;s recommended security list. On this list please ignore the following. If you choose to do these things, your robots.txt cannot be accessed and the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F12%2Fhelpful-security-extras-for-zen-cart%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F12%2Fhelpful-security-extras-for-zen-cart%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Helpful Security Extras for Zen Cart" alt=" Helpful Security Extras for Zen Cart" /><br />
			</a>
		</div>
<div id="attachment_957" class="wp-caption alignleft" style="width: 96px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/03/zen-cart-securityl.gif"><img class="size-full wp-image-957" title="zen-cart-security" src="http://pro-webs.net/blog/wp-content/uploads/2010/03/zen-cart-securityl.gif" alt="Zen Cart Security" width="86" height="84" /></a><p class="wp-caption-text">Security</p></div>
<p>First and foremost make sure your <a title="Required Zen Cart 1.3.8 Bug &amp; Security Fixes" href="http://www.zencartmarketing.com/zen-cart-1-3-8-bug-fixes/" target="_blank"><strong>Zen Cart is fully patched</strong></a>! No exceptions. Your Zen Cart you just downloaded  and installed still needs these.</p>
<p><strong>Now, do these items on</strong> <a title="Steps in Securing Your Zen Cart Store" href="http://www.zen-cart.com/wiki/index.php/Important_Site_Security_Recommendations" target="_blank">Zen Cart&#8217;s recommended security list</a>. On this list please ignore the following. If you choose to do these things, your robots.txt cannot be accessed and the php command will not work properly for you in most server environments.</p>
<p><code>#.htaccess to prevent unauthorized directory browsing or access to .php<br />
files<br />
IndexIgnore */*<br />
&lt;Files *.php&gt;<br />
Order Deny,Allow<br />
Deny from all<br />
&lt;/Files&gt; </code><br />
<code>#add the following to protect against people discovering what version your<br />
spiders.txt file is<br />
&lt;Files *.txt&gt;<br />
Order Deny,Allow<br />
Deny from all<br />
&lt;/Files&gt;</code></p>
<p><strong>Now, lets add some cool stuff to help you stay safe.</strong></p>
<p><strong>Tip #1:</strong> Use strong passwords for everything! Change them every 30 days.</p>
<p><strong>Tip #2:</strong> When renaming your admin DO NOT use any admin or business related<br />
term. Try banana for example, something like manage, control or anything XXadmin is a dead guess for most hackers to discover your admin directory.</p>
<p><strong>Tip #3:</strong> Make sure all admins have their OWN accounts and install this <a title="Admin Logging" href="http://www.zen-cart.com/index.php?main_page=product_contrib_info products_id=1030" target="_blank"> module</a> to track their access more conveniently.</p>
<p><strong>Tip #4:</strong> Protect your admin directory with an additional auth when possible. Perhaps you can password protect the directory or allow access by IP address for example.</p>
<p><code># password-protect the directory<br />
AuthType basic<br />
AuthName "This directory is protected"<br />
AuthUserFile /home/path/.htpasswd<br />
AuthGroupFile /dev/null<br />
Require valid-user</code></p>
<p><code># deny all except<br />
&lt;Limit GET POST PUT&gt;<br />
order deny,allow<br />
deny from all<br />
allow from 192.168.1.1<br />
allow from .*domain\.com.*<br />
&lt;/Limit&gt;</code></p>
<p><strong>Tip #5:</strong> Protect ALL directories from browsing with an index.html file. This file can be blank, it just prevents the directory from displaying in an index to browse. If a folder has an index.anything&#8230; It&#8217;s protected.</p>
<p><strong>Tip #6:</strong> Protect your images directories (all) with the following .htaccess to prevent browsing, executing php files and more. These directories will also need an index file. When done, login to your hosting control panel and change the permissions on both the index.html and .htaccess files to 444 to prevent modification.</p>
<p><code>#PRO-Webs ver 1.8 1/2010<br />
#Prevent directory viewing and the ability of any scripts to run.<br />
#While a bit overkill this file prevents a wide array of access and executions<br />
#of known exploits in your Zen Cart<br />
#This file and a index.html should have the chmod 444<br />
#This low setting allowance differs from server to server and should be set as<br />
#low as possible and no higher that 644<br />
#Permissions this low will likely need set in filemanager<br />
#Place this in all images directories except BMZ_Cache<br />
Options -ExecCGI -Indexes<br />
IndexIgnore *<br />
RewriteEngine on<br />
RewriteCond %{HTTP_USER_AGENT} libwww [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]<br />
RewriteRule ^(.*)$ - [F,L]<br />
&lt;Files .htaccess&gt;<br />
order allow,deny<br />
deny from all<br />
&lt;/Files&gt;<br />
&lt;Files ~ "\.php$"&gt;<br />
Order allow,deny<br />
Deny from all<br />
&lt;/Files&gt;<br />
chmod .htaccess files 444</code></p>
<p><strong>Tip #7:</strong> If you have an SSL force all of your admin pages to load in only secured urls with the following htaccess code.</p>
<p><code>RewriteEngine On<br />
RewriteCond %{SERVER_PORT} 80<br />
RewriteCond %{REQUEST_URI} /admin_dir/<br />
RewriteRule ^(.*)$ https://domain.com/admin_dir/$1 [R,L]</code></p>
<p><strong>Tip #8:</strong> Make sure your cache folder has the correct index.php and .htaccess. Download a fresh version of Zen Cart and upload them to be sure. Now CHMOD, change the permissions of these to 444.</p>
<p>I may be adding to this, as we are always testing&#8230; so stay tuned.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/helpful-security-extras-for-zen-cart','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/03/12/helpful-security-extras-for-zen-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where are your shoppers coming from?</title>
		<link>http://pro-webs.net/blog/2010/03/11/where-are-your-shoppers-coming-from/</link>
		<comments>http://pro-webs.net/blog/2010/03/11/where-are-your-shoppers-coming-from/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 04:16:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Coupon Sites]]></category>
		<category><![CDATA[Ecommerce Store]]></category>
		<category><![CDATA[Impulse]]></category>
		<category><![CDATA[Metrics]]></category>
		<category><![CDATA[Portals]]></category>
		<category><![CDATA[Product Reviews]]></category>
		<category><![CDATA[Real Time]]></category>
		<category><![CDATA[Savvy Marketer]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Shoppers]]></category>
		<category><![CDATA[Shopping Comparison]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=937</guid>
		<description><![CDATA[This study polled online shoppers about where the look for items to buy, how they shop and what they shop for. I think that although the results may seem as expected... the missing element is how it applies to your business, and what growth in the particular metric you might expect in the future.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F11%2Fwhere-are-your-shoppers-coming-from%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F11%2Fwhere-are-your-shoppers-coming-from%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Where are your shoppers coming from?" alt=" Where are your shoppers coming from?" /><br />
			</a>
		</div>
<p>Compete.com has released a very interesting <a title="Compete.com" href="http://blog.compete.com/2010/02/22/online-shopper-intelligence-study-released/" target="_blank">study</a> that all ecommerce store owners should read. This study polled online shoppers about where the look for items to buy, how they shop and what they shop for. I think that although the results may seem as expected&#8230; the missing element is how it applies to your business, and what growth in the particular metric you might expect in the future.</p>
<p>Let&#8217;s kick this off with polled data &#8230;</p>
<p>&#8220;<strong>How frequently do you use the following tools when shopping online?</strong>&#8221;</p>
<p style="text-align: center;">
<div id="attachment_940" class="wp-caption aligncenter" style="width: 560px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/03/shopper-survey2.gif"><img class="size-full wp-image-940  " title="shopper-survey2" src="http://pro-webs.net/blog/wp-content/uploads/2010/03/shopper-survey2.gif" alt="shopper survey2 Where are your shoppers coming from?" width="550" height="276" /></a><p class="wp-caption-text">Note the green and red areas where I have noted what I believe to be expected growth/decline of these metrics in the coming year.</p></div>
<p>I think, and this is my own opinion (take it or leave it), that the areas noted will grow or decline for many reasons, not withstanding the new push among search engines for real time results and the weight they do and will carry in the future.</p>
<p><strong>Coupon sites</strong> will continue to grow as they continue to gain authority and social media love from their users&#8230; As they rank better, they will be used more frequently. Look for many of these higher ranking sites to start offering &#8220;premium&#8221; paid types services and exposure.</p>
<p><strong>Emails advertising</strong> I believe will decline for a good many reasons, mostly because people are generally irritated by spam mail. Shoppers are even afraid to create accounts on websites for &#8220;fear of spam&#8221;. Secondly, your email shoppers are far more likely to be a one hit wonder. They shop for price and have little or no loyalty&#8230;. IMPULSE</p>
<p><strong>Product reviews</strong> is a tricky one&#8230;. and while they can be very effective, I believe they will soon be so abused that no one will trust them. Face it, how do you know a &#8220;real shopper&#8221; said that instead of a savvy marketer? You don&#8217;t, and just like many other diseases the web has caused, &#8220;fear of fake reviews&#8221; will in my opinion join the &#8220;fear of shipping&#8221; eBay disease in record time.</p>
<p><strong>Shopping comparison sites and portals</strong> will continue to grow. Here shoppers can get what appears to be a fair representation of products to compare, see and get information about them in a comfortable&#8230; No pressure setting. Everyone will have a favorite, and we will see these continue to grow.</p>
<p><strong>Social networking for ecommerce</strong> is still a baby, but expect its effectiveness to grow. Right now for **most ecommerce sites, this is just something you do. However, as we see the decline of reviews and other sharing platforms like gift tagging, this will become the safe way to ask a friend about a product they bought, or compare products for sharing. People on Facebook will seem more &#8220;real&#8221; and believable, thus more effective. Niche sites are already and will continue to kick ass here!</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/where-are-your-shoppers-coming-from','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/03/11/where-are-your-shoppers-coming-from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sportsmanship &#8211; Social Values</title>
		<link>http://pro-webs.net/blog/2010/03/09/sportsmanship-social-values/</link>
		<comments>http://pro-webs.net/blog/2010/03/09/sportsmanship-social-values/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:19:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Human Kindness]]></category>
		<category><![CDATA[Liz Wallace]]></category>
		<category><![CDATA[Mallory Holtman]]></category>
		<category><![CDATA[Selfless Acts]]></category>
		<category><![CDATA[Social Values]]></category>
		<category><![CDATA[Softball Playoffs]]></category>
		<category><![CDATA[Spirit Of The Game]]></category>
		<category><![CDATA[Sportsmanship]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=930</guid>
		<description><![CDATA[While I realize that this is completely off topic, I really wanted to share it. This example is about sportsmanship, a VERY good example of what young people can do... If allowed and inspired to do so.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F09%2Fsportsmanship-social-values%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F09%2Fsportsmanship-social-values%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Sportsmanship   Social Values" alt=" Sportsmanship   Social Values" /><br />
			</a>
		</div>
<p>While I realize that this is completely off topic, I really wanted to share it. This example is about sportsmanship, a VERY good example of what young people can do&#8230; If allowed and inspired to do so.</p>
<p>In the NCAA Division II girls softball playoffs, Western Oregon senior Sara Tucholsky, who had NEVER hit a home run before the second inning of the second double header against Central Washington popped one over the fence. Sara, who was incredibly excited to hit her first home run, in a playoff game no less, accidentally overran first base. She turned back to touch the bag and in doing so twisted her right knee and it gave out&#8230; Landing her on the ground at first base.</p>
<p><strong>Wait for it&#8230;. This is amazing!</strong></p>
<p>Sara was pretty severely injured and would be unable to continue her celebratory first time trip around the bases for a home run ever. Team coaches and trainers could not touch Sara or she would be out at first. If they brought in a pinch runner Sara&#8217;s home run would become as a two run single instead.</p>
<p>Opposing team Central Washington senior Mallory Holtman, realized the situation for senior Sara, and inquired to the umpires and coaches if they could carry her around the bases, having Sara touch each base. The umpires and coaches, while astounded, agreed that this would in fact be &#8220;legal&#8221;.</p>
<p>So Mallory and teammate Liz Wallace quickly picked Sara up, carefully touching her foot down on each bag, and carried her around the bases to get her home run counted as such.</p>
<div id="attachment_931" class="wp-caption aligncenter" style="width: 600px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/03/sportsmanship.gif"><img class="size-full wp-image-931" title="softball sportsmanship" src="http://pro-webs.net/blog/wp-content/uploads/2010/03/sportsmanship.gif" alt="sportsmanship Sportsmanship   Social Values" width="590" height="171" /></a><p class="wp-caption-text">Image from Values.com</p></div>
<p>While Central Washington lost the game, they had completed one of the most selfless acts of human kindness and sportsmanship I have ever hear of. So while off topic, from one veteran softball player to another&#8230; Hats off ladies, you are incredible people and you hold in your hearts the true spirit of the game&#8230;. Congratulations.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/sportsmanship-social-values','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/03/09/sportsmanship-social-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecommerce Spring Forecasting</title>
		<link>http://pro-webs.net/blog/2010/03/05/ecommerce-spring-forecasting/</link>
		<comments>http://pro-webs.net/blog/2010/03/05/ecommerce-spring-forecasting/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:19:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[conversions]]></category>
		<category><![CDATA[Ecommerce Stores]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Marketing Plan]]></category>
		<category><![CDATA[Plan Marketing]]></category>
		<category><![CDATA[Previous Years]]></category>
		<category><![CDATA[Stat Program]]></category>
		<category><![CDATA[Target]]></category>
		<category><![CDATA[Traffic Data]]></category>
		<category><![CDATA[Winter Sales]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=906</guid>
		<description><![CDATA[Most ecommerce stores have some season trending. This is very unique to both the store and the product line. So a store selling green widgets can be expected to trend sales in a similar manner to another shop selling green widgets... But not exactly, as they are many additional metrics that influence one's sales.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F05%2Fecommerce-spring-forecasting%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F03%2F05%2Fecommerce-spring-forecasting%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Ecommerce Spring Forecasting" alt=" Ecommerce Spring Forecasting" /><br />
			</a>
		</div>
<p>Are you feeling that &#8220;spring is coming&#8221; bug? Well, rightfully so, because right now is the time to plan for your spring marketing and tidy up a bit from the winter sales.</p>
<p>Most ecommerce stores have some season trending. This is very unique to both the store and the product line. So a store selling green widgets can be expected to trend sales in a similar manner to another shop selling green widgets&#8230; But not exactly, as they are many additional metrics that influence one&#8217;s sales.</p>
<p>So you should be planning for your spring and early summer products, marketing and trends now&#8230; So that you are prepared for this period in your business. <span style="text-decoration: line-through;">Even</span> especially if traditionally spring is a low volume period for sales.</p>
<p>Here is a checklist of sorts to help you get started for planning any marketing period, including this spring.</p>
<p><strong>Trending</strong>: Unless you site is brand new, you should have some sales and traffic data that you can use to trend or predict the data for the upcoming period. I tend to concentrate on sales and traffic. I use both as they can be very unrelated for some websites. There are clearly some periods where even if the traffic is there, conversions are down&#8230; So to properly trend our potential for this upcoming period we should use both. You may even have other metrics such as, bounce, average order or similar that are specifically a target for your store.</p>
<p>Gathering the data is the easiest part, as you should be using a proper analytical stat program to record your data. We will use Google Anayltics for our example, as it is very popular.</p>
<p>When gathering your data, we are looking for specific trends within the matching period from previous years to predict, affect and produce a proper marketing plan for the upcoming period. So login to Google Analytics and lets get to work.</p>
<p>So we will pull data for all of March, April, May and June to cover our bases and provide some overlap. You will want to pull at least on year, more if you have them. I would not be concerned with using more than 3 years as things in your business and on the web change very quickly and it&#8217;s not likely to be very relevant any longer.</p>
<p>The example store I am using had a 2009 average daily visits of 279 uniques a day. There conversion rate for the year was 3.87%. You can see by the graph that holiday traffic is a crucial part of this store&#8217;s success and that spring is rather soft by comparison. You can also see that our spring period it right at or just a bit above average for them.</p>
<div id="attachment_910" class="wp-caption aligncenter" style="width: 575px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/03/2009-traffic1.gif" target="_blank"><img class="size-full wp-image-910  " title="2009-traffic" src="http://pro-webs.net/blog/wp-content/uploads/2010/03/2009-traffic1.gif" alt="2009 Traffic" width="565" height="91" /></a><p class="wp-caption-text">2009 Unique Visits</p></div>
<p>We can clearly see from this data, that traffic could be improved for this period&#8230;. Especially because they have a genuine promotable product line for spring sales. Now let&#8217;s have a look at conversions in relationship with this traffic&#8230; Do they convert well in this period?</p>
<div id="attachment_915" class="wp-caption aligncenter" style="width: 575px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/03/conversions.gif" target="_blank"><img class="size-full wp-image-915 " title="conversions" src="http://pro-webs.net/blog/wp-content/uploads/2010/03/conversions.gif" alt="conversions Ecommerce Spring Forecasting" width="565" height="91" /></a><p class="wp-caption-text">2009 Conversions</p></div>
<p>We can see that last year, while traffic was average, they converted pretty well the end part of spring. looks very much like March should be our focus area.</p>
<p>Next you will determine your trend. You can use data from previous tears to do this&#8230; But if you lack that data no worries, this old restaurant manager has the equation to get you close.</p>
<p>Obviously, any data you do have is clearly relevant&#8230; But let&#8217;s say you have little or none. To determine your current rate of growth in both of these metrics we will poll the last 4 months. This is a weighted process with the greatest weight on the most recent data.</p>
<p>This applies to any metric. Gather the data for these metrics for Nov 2009, Dec 2009, Jan 2010 and Feb 2010.</p>
<p>We will start with March&#8217;s data from last year 8,043 unique visits and a conversion rate of 3.13%.</p>
<ul>
<li>Nov 2009 8,789 &amp; 4.85%</li>
<li>Dec 2009 14634 &amp; 4.5%</li>
<li>Jan 2010 7,604 &amp; 3.67%</li>
<li>Feb 2010 6,395 &amp; 3.52%</li>
</ul>
<p>For this purpose, with holiday data so much higher we will exclude Nov &amp; Dec, unless we have 2008 numbers&#8230; Which we do. Nov 2008 7,419 &amp; 3.18%, Dec 2008 8,861 &amp; 4.00%, Jan 2009 6,146 &amp; 2.99% and Feb 2009 5,742 &amp; 3.22%.</p>
<p>Here is the math:</p>
<table id="table1" style="border-collapse: collapse; width: 565px;" border="0" cellpadding="0" width="316">
<colgroup>
<col style="width: 78pt;" width="104"></col>
<col style="width: 63pt;" width="84"></col>
<col style="width: 48pt;" width="64"></col>
<col style="width: 48pt;" width="64"></col>
</colgroup>
<tbody>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; width: 78pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" width="104" height="17" align="center" bgcolor="#00ff00"><strong>Period</strong></td>
<td style="width: 63pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" width="84" align="center" bgcolor="#00ff00"><strong>Unique Visits</strong></td>
<td style="width: 48pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" width="64" align="center" bgcolor="#00ff00"><strong>Conv %</strong></td>
<td style="width: 48pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" width="64" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Nov. 2008</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">7419</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.18%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Dec. 2008</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">8861</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">4.00%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Jan. 2009</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">6146</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">2.99%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Feb. 2009</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">5742</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.22%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Mar. 2009</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">8043</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.13%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Nov. 2009</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">8789</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">4.85%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Dec. 2009</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">14634</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">4.50%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Jan. 2010</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">7604</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.67%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Feb. 2010</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">6395</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.52%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center" bgcolor="#00ff00"><strong>YOY Growth</strong></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Nov.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">1370</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">1.67%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Dec.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">5773</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.50%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Jan.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">1458</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.68%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Feb.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">653</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.30%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center" bgcolor="#00ff00"><strong>Trend</strong></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center" bordercolor="#00FF00"><strong>Weight</strong></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Nov.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">18.49%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">1.67%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">12.50%</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Dec.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">65.15%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.50%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">12.50%</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Jan.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">23.72%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.68%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">25.00%</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Feb.</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">11.37%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.30%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">50.00%</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center" bgcolor="#00ff00"><strong>Current Trend</strong></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">22.07%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">0.53%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">Up</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center" bgcolor="#00ff00"><strong>Forecast</strong></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Last Year March</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">8043</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.13%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">This Year March</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">9818</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">3.66%</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" height="17" align="center">Daily Visits</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center">318</td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
<td style="color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; text-align: general; vertical-align: bottom; white-space: nowrap; border: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px;" align="center"></td>
</tr>
</tbody>
</table>
<p><strong>The math is easier than it looks&#8230;.</strong></p>
<p><strong>Step 1:</strong> YOY growth, which is simply current year minus previous year.</p>
<p><strong>Step 2:</strong> Trend. Like I said we will weight this for the most current monthly data. So 100% being the whole, we will use 12.5% from Nov &amp; Dec, 25% from Jan and the remaining 50% from most current Feb. Something like this:</p>
<ul>
<li><strong>1 part :</strong> Nov. 18.49% plus Dec. 65.15% = 83.64 divided by 2 = 41.82%</li>
<li><strong>1 part: </strong>Jan. = 23.72%</li>
<li><strong>1 part:</strong> Feb. =11.37%</li>
<li><strong>1 part:</strong> Feb. =11.37%</li>
</ul>
<p>= The whole (88.28) divided by 4 = (22.07%) Current Trend</p>
<p>Last year March (8043) apply trend 22.07% = (1775 growth) This year March forecast (9818) unique visits&#8230; Into 318 average daily visits.</p>
<p><strong>Check our math:</strong></p>
<p>Last year average daily visits March = 260</p>
<p>This year forecast = 318</p>
<p>% of predicted growth = 22.3%</p>
<p>**Note that rounding changes these just a hair, but not to worry this should be pretty reliable data.</p>
<p>So this &#8220;math&#8221; can be applied to the entire period as a whole, or each month individually computed. The point here is to have an idea of what to expect, AND and basis to measure the effectiveness of your marketing this spring. For example if you did nothing last spring, and you know (above) what to expect if you do nothing this spring&#8230; Then you have a pretty good benchmark to measure the effectiveness of a marketing campaign this spring.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/ecommerce-spring-forecasting','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/03/05/ecommerce-spring-forecasting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How NOT to Lose Your Merchant or Gateway Account</title>
		<link>http://pro-webs.net/blog/2010/02/16/lose-your-merchant-gateway-account/</link>
		<comments>http://pro-webs.net/blog/2010/02/16/lose-your-merchant-gateway-account/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 17:25:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[So you want to be a Shop Owner Series]]></category>
		<category><![CDATA[Brand Damaging]]></category>
		<category><![CDATA[Credit Card Processing]]></category>
		<category><![CDATA[Credit Cards]]></category>
		<category><![CDATA[Deferred Billing]]></category>
		<category><![CDATA[E Online]]></category>
		<category><![CDATA[Free Offers]]></category>
		<category><![CDATA[FTC]]></category>
		<category><![CDATA[Gateway Account]]></category>
		<category><![CDATA[Merchant Account]]></category>
		<category><![CDATA[Merchant Accounts]]></category>
		<category><![CDATA[Merchant Gateway]]></category>
		<category><![CDATA[Merchant Services Providers]]></category>
		<category><![CDATA[Online Marketing Campaigns]]></category>
		<category><![CDATA[Trial Offers]]></category>
		<category><![CDATA[Trickery]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=900</guid>
		<description><![CDATA[If you haven't read about the new "Brand Damaging" issues and you accept credit cards on your website... You need to. The potential impact on your business is too large to ignore.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F16%2Flose-your-merchant-gateway-account%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F16%2Flose-your-merchant-gateway-account%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="How NOT to Lose Your Merchant or Gateway Account" alt=" How NOT to Lose Your Merchant or Gateway Account" /><br />
			</a>
		</div>
<div id="attachment_902" class="wp-caption alignleft" style="width: 266px"><img class="size-full wp-image-902" title="brand damaging violations" src="http://pro-webs.net/blog/wp-content/uploads/2010/02/brand-damaing-violations.jpg" alt="Merchant Processing Survival Tips 2010" width="256" height="116" /><p class="wp-caption-text">Merchant Processing Survival Tips 2010</p></div>
<p>If you haven&#8217;t read about the new &#8220;<a title="Brand Damaging" href="http://pro-webs.net/blog/2010/01/14/brand-damaging-what-it-means-to-ecommerce/">Brand Damaging</a>&#8221; issues and you accept credit cards on your website&#8230; You need to. The potential impact on your business is too large to ignore.</p>
<p>Now that you have hopefully informed yourself, let&#8217;s concentrate on keeping you out of trouble and getting canceled.</p>
<p>The new rules may seem a bit daunting, but they are really pretty simple&#8230;. If it&#8217;s trickery, you cannot do it anymore. You may be sitting there thinking, &#8220;I have been running this &#8220;Free Money&#8221; website for 10 years&#8230;. This doesn&#8217;t apply to me. You are most certainly wrong. These are new rules, new implementations and new punishments for violations.</p>
<p>The cost for violating one of these rules and getting caught (and you will) is at it&#8217;s best cancellation of your merchant account or gateway account&#8230;. At it&#8217;s worst, very large fines and cancellation. Heed this warning, even if you haven&#8217;t received any communication from your Merchant services providers.</p>
<h2>Merchant Processing Survival Tips 2010</h2>
<p>Online marketing campaigns that employ any “Free-Trial”, “Deferred Billing” and/or “Shipping Only” are considered trial offers and are subject to the new rules. Consumers <strong>must</strong> receive a tangible good or contracted service in exchange for the credit card charge(s). Incentive type discount offers are acceptable <strong>ONLY</strong> when the cardholder is receiving goods or services in exchange for payment. Having said this, note for example that e-Online will no longer support</p>
<blockquote><p>accounts engaging in hidden or delayed charges and ‘free’ offers that are not truly free.</p></blockquote>
<ol>
<li>Avoid using  &#8220;free&#8221; or &#8220;risk free&#8221; language on your website and in marketing campaigns (including PPC) .. Unless it is 100% really free.</li>
<li>If you use the &#8220;Pay Shipping &amp; Handling Only&#8221; technique, then these charges must be fair, reasonable and fully disclosed. So if you have been slipping by on the $5 shipping and $20 handling fee, you must stop. Also note that inflating your actual shipping has additional implications as well&#8230; Did you know that most states expect you to pay sales tax on overcharged shipping fees?</li>
<li>Trial offers need to be no less than 10 days and the trial period should not begin until product is shipped to the consumer or the service has begun. You are not permitted to offer trails with exemptions, filtering or special rules for age, weight, height, geographic location, race etc.</li>
<li>Avoid creating a false sense of urgency because if the matter is not genuinely urgent you are in violation. For example if you have the &#8220;10 day only&#8221; message running on your website for 3 years now&#8230; You are in violation. These periods of offers must be genuine and accurate. e-Online has strictly forbid the <em>use of  applications such as countdown clocks, tickers, or language such as “Offer Expires Today!”</em>, for example already.</li>
<li>By <a title="FTC (Federal Trade Commission) revised their rules for the use of both testimonials and endorsements" href="http://pro-webs.net/blog/2009/10/07/endorsement-blogging-the-ftc/">mandate of the FTC</a>, product claims, promises, guarantees and research claims MUST be accurate and proper. This is pretty unlimited and includes testimonials, endorsements and even product reviews. Don&#8217;t think for one second that user supplied product reviews are exempt&#8230; It is your website right? Not only do you risk loss of merchant services with these issues, but the FTC can fine 11K on top of whatever the credit card companies may choose to fine you for your &#8220;Brand Damaging&#8221; behavior.</li>
<li>How about the FTC&#8217;s new rules for pricing? Prices must be within reasonable “fair market value”. Any negative options must be clearly disclosed, and you cannot bill for any product or service that the shopper/consumer did not knowingly purchase&#8230; Including things like upgrades and software updates, for example.</li>
<li>If you have a special offer which includes some shady marketing like exclusions or negative options you are <strong>required</strong> to have that customer agree to the terms twice before charging them.</li>
</ol>
<blockquote><p>The first validation can take place with the initial offer presentation prior to submission of credit card information, and the second during the checkout process. The confirmation order page must also require consumers to acknowledge that they agree to the Terms &amp; Conditions and authorize the merchant to charge the credit card for the disclosed dollar amount. Terms must be displayed adjacent to the “submit”, “confirm” or any other “call to action” button confirming the order. The price must be within 100 pixels of the “submit”, “confirm” or any other “call to action” button.</p>
<ul>
<li>Shipping and  Handling should not be  billed separate from charges for the product or service.</li>
<li> Terms must  be in a minimum 12-point “easy to read” font.</li>
<li> Avoid  visually distracting graphics from the display of terms.</li>
<li> Pre-checked boxes must never be used.</li>
<li>Consumers should  be required to  actively and individually select each offer or bonus during  the  checkout process when there are multiple offers or up sells presented.  No  offers or up sells should be pre–selected or pre-checked.</li>
<li> Consumers  should not be able to move forward in the offer or checkout until the  box acknowledging the terms is checked.</li>
<li> Verbiage  must clearly disclose the enrollment into an ongoing membership with no  distraction.  An example of an acceptable disclosure is: <em>“By  clicking “Submit” you acknowledge that you understand you are being  enrolled in a 10 day trial for $4.95, and after expiration of the 10 day  trial period you will be charged $59 per month until you cancel your  service” </em></li>
<li>All products or  services purchased when  the call-to-action button is clicked should be billed as a  single  charge unless the order is fulfilled at different times requiring   multiple charges.</li>
</ul>
</blockquote>
<h3><strong><span style="text-decoration: underline;">REFUND POLICIES </span></strong></h3>
<blockquote><p>Merchants  must not make it difficult for consumers to exercise the disclosed  cancellation procedures and all cancellation requests must be honored in  accordance with the stated terms of the transaction.</p>
<ol>
<li>Refund policies must be disclosed prior to  the sale completion.  Establish a clear, concise statement of your  refund and credit policy.  Your policy should be consistent with the  objectives of your business and the products or services sold.</li>
<li>Merchants must not require return of any  trial offer product samples in order for the consumer to receive a  refund, or cancel their ongoing subscription.</li>
<li>“Full Money Back” or “Full Satisfaction”  guarantees are considered false and prohibited unless the offer provides  a full refund on all products, including but not limited to Shipping  &amp; Handling charges.</li>
<li>Refunds  should be for the full amount  charged including shipping and handling</li>
<li>All  future billing to a customer should be  canceled when a refund is issued.</li>
</ol>
<p>All future billing to a customer should be   canceled when a chargeback is received.</p></blockquote>
<h3><strong><span style="text-decoration: underline;">RESOURCES: </span></strong></h3>
<p>The FTC  has published the regulations along with many resources online for  businesses and consumers like yourself to learn and understand the new regulations.   A few helpful links provided by e-online are included below:</p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/r" target="_blank">Commercial Practices  Part 425, Use of Prenotification Negative Option Plans </a></p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/y" target="_blank">Prenotification Negative  Option Plans</a></p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/j" target="_blank">Advertising and  Marketing on the Internet</a></p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/t" target="_blank">Dot Com Disclosures</a></p>
<p>Direct  Response industry publications have provided articles with some  clarification regarding these guidelines:</p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/i" target="_blank">http://www.responsemagazine.com/resources/legal-resources/legal-review-getting-strict-with-negative-option-marketing-1351</a></p>
<p><a href="http://salesmanagersagents-announcements.cmail5.com/t/y/l/oltuyj/uyhlyddyu/d" target="_blank">http://www.dmnews.com/get-comfortable-with-new-ftc-regs/article/136023/ </a></p>
<p><strong>So, are you scared?</strong></p>
<p>If you have been utilizing these techniques, then you probably should be. Realize that the allowable fines and penalties for violations of these rules can mean the death of many if not most small businesses. On the lighter side, even receiving the cancellation email from a merchant provider, allowing you a very short 2 weeks to make other arrangements for processing or gateway services is enough to put you in the poor house.</p>
<p>Take heed, learn and understand these practices, and when in doubt contact your merchant providers&#8230; speak with someone in underwriting and have them look at your website and marketing materials and provide you the correct way to market your products&#8230;. Before the axe falls.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/lose-your-merchant-gateway-account','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/02/16/lose-your-merchant-gateway-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy SEO?</title>
		<link>http://pro-webs.net/blog/2010/02/10/easy-seo/</link>
		<comments>http://pro-webs.net/blog/2010/02/10/easy-seo/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:50:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Myths & Misconceptions]]></category>
		<category><![CDATA[Common Sense]]></category>
		<category><![CDATA[Decisions]]></category>
		<category><![CDATA[Easy SEO]]></category>
		<category><![CDATA[Ecommerce Business]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Optimization Seo]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Search Optimization]]></category>
		<category><![CDATA[Sem]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=885</guid>
		<description><![CDATA[Easy SEO, this is a term as similar as black and white. You can benefit from the content of this post if you are determined to succeed in your ecommerce business, and you have some common sense. If so, please read on...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F10%2Feasy-seo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F10%2Feasy-seo%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Easy SEO?" alt=" Easy SEO?" /><br />
			</a>
		</div>
<p><strong>Easy SEO, this is a term as similar as black and white.</strong></p>
<p> <div id="attachment_890" class="wp-caption alignleft" style="width: 238px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/02/easy-seo.jpg"><img class="size-full wp-image-890" title="easy-seo" src="http://pro-webs.net/blog/wp-content/uploads/2010/02/easy-seo.jpg" alt="Easy SEO?" width="228" height="172" /></a><p class="wp-caption-text">Easy SEO?</p></div>
<p>More to the point, you saw this title and thought I was going to give you some easy trick to make your shop rank so you can be rich. Not so, this is rather a rant, some things that just need said. You can benefit from the content of this post if you are determined to succeed in your ecommerce business, and you have some common sense. If so, please read on&#8230;</p>
<p> </p>
<p> </p>
<p> </p>
<p><strong>First lets tackle something no one seems to know. What is SEO?</strong></p>
<p>SEO is a very mechanical, analytical and hands on discipline. SEO is a part of marketing (SEM), but is not marketing, rather SEO is just as the acronym suggests&#8230; Search engine optimization.</p>
<p>SEO itself is a method/practice of making your website better accessible to the search engines, mechanically sound, optimizing page structure, content and elements, website architecture, flow and navigation and server side scripting as well.</p>
<p>Rank itself is the goal, but making both your content and website easily understood and navigated by the search engines is the process. The things we do are generally based on 3 things. Things we know. Things we see proper research to prove. And things we believe to be true and are testing.</p>
<p>None of these things we do is anything automated or really easy. This is definitely hard work. The hard work involved comes in a few forms. For example building great content regularly is hard work, building quality inbound links is hard work&#8230; But most of all, reading enough so that you have a clue and can participate in the decisions for your SEO campaign is also hard work.</p>
<p><strong>So that leaves basically 2 sets of website owners&#8230; Those who do, and those who don&#8217;t.</strong></p>
<p><strong>Those who do</strong> seek to optimize their own websites are very vulnerable, for many reasons. They often set out and read on the internet about the SEO they need, implement it blindly as fact without support or merit and then fail to measure the results. These individuals then proceed to propagate this disease by sharing their ill founded and unsupported techniques with others just as vulnerable. For these folks I have some advise.</p>
<ol>
<li><strong>Know your sources</strong>. I could put up a website tomorrow offering a 5 minute solution to all of your SEO needs for $200 and sell these lies to the masses with ease. Just because I say something, does not make it true. I could get away with this because most have their heads wrapped around easy and fail to search out any supporting documentation or support for anything that looks to make SEO easy.</li>
<li><strong>SEO cannot be automated</strong>. Even if every search algorithm factor was laid out for you in a to do list, you could not automate your SEO. Every website is different, the only way to properly succeed in your SEO campaign is to read, understand, test and measure the results. Anything less is just a reckless waste of time.</li>
<li><strong>Common sense</strong>. If I tell you your website will rank if you make it all yellow, do you believe me? At the end of the day, your success will be determined on your ability to make good decisions. Now if you haven&#8217;t taken the time to seek out the reading and education you need for these decisions, then at least use common sense.</li>
</ol>
<p><strong>Those who do not</strong>, are equally at risk, just in a different manner. There are many reasons website owners seek out a professional to provide their SEO, unfortunately most of these reasons are what make them destined to fail. If you think that paying someone for SEO will answer all of your goals without you lifting a finger, you are mistaken. If you think you will require no knowledge of the techniques because you are paying someone, you are also mistaken.</p>
<p>Website owners blindly paying for SEO they do not understand are running around with a big bulls eye on their foreheads. You are not only vulnerable, but the cost can be both failure and cash! So I have some advise for those that do not as well&#8230;</p>
<ol>
<li><strong>Do not pay someone for SEO if you haven&#8217;t checked them out.</strong> Do they use a gmail email address? Do you think that is professional? Is their own site well constructed, easy to navigate and ranking? Can you call them on the phone and have a discussion?</li>
<li><strong>Ask questions</strong>. If your paid SEO cannot/will not answer your questions regarding technique, services etc&#8230; Then they are likely jerking you around. Ask questions, do some reading and then ask better questions.</li>
<li><strong>Why are you paying me</strong>? You may think this is in contrast to #2, but I assure you it is not. If your SEO tells you you need more content, you do some research and are still confused, then perhaps you should just do what they say. You are paying them for their professional services, correct?</li>
<li><strong>Cost</strong>. If you are paying a low amount of money for an SEO who has said they will do everything and you need to do nothing, you are getting screwed. This type of service in my opinion is not only impossible, but would be very expensive (in the thousands of dollars a month). The reason this is veritably impossible is that this SEO person needs your input and niche specific expertise to create and execute a successful SEO campaign for you. No person, SEO or pretending professional can know every product, niche and service well enough to proceed without your involvement.</li>
<li><strong>If they guarantee you rank, they are lying</strong>. SEOs do not work for Google, Bing or any other search engine. There is no way for any legitimate SEO to make you a guarantee of rank. It&#8217;s just frankly a snake oiled lie to get in your pockets. </li>
</ol>
<p><strong>Easy SEO Summary</strong></p>
<ul>
<li>There is NO easy SEO.</li>
<li>SEO cannot be automated.</li>
<li>SEO is hard work.</li>
<li>SEO requires common sense and research.</li>
<li>There is no plugin, module or magic dust that will make you rank.</li>
<li>If you make changes without analysis, you have failed.</li>
<li>No one can provide comprehensive SEO services without your involvement.</li>
<li>Rank guarantees are outright lies.</li>
<li>Use your head, check people out.</li>
</ul>
<p>So this means, those of you seeking out the quick get rich SEO trick are pissing up a rope&#8230; The very rope that will be used to hang your website out to dry.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/easy-seo','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/02/10/easy-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Ranking Factors 2009</title>
		<link>http://pro-webs.net/blog/2010/02/08/search-engine-ranking-factors-2009/</link>
		<comments>http://pro-webs.net/blog/2010/02/08/search-engine-ranking-factors-2009/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 18:55:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Anchor Text]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Industry Contributors]]></category>
		<category><![CDATA[Jill Whalen]]></category>
		<category><![CDATA[Michael Gray]]></category>
		<category><![CDATA[Natural Search]]></category>
		<category><![CDATA[Rand Fishkin]]></category>
		<category><![CDATA[Search Algorithms]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Search Rank]]></category>
		<category><![CDATA[Seo Campaigns]]></category>
		<category><![CDATA[Seo Services]]></category>
		<category><![CDATA[Seomoz]]></category>
		<category><![CDATA[Top Search Engines]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=871</guid>
		<description><![CDATA[2009 was a pretty tumultuous year for organic search, all three of the top search engines made huge changes to their algorithms and we also saw the launch of Bing. These events made significant changes in the way we think and optimize websites. Fact is, 2010 is already looking to be an even bigger year of changes and SEO's will need to keep their ears to the ground to keep up and be successful.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F08%2Fsearch-engine-ranking-factors-2009%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F08%2Fsearch-engine-ranking-factors-2009%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Search Engine Ranking Factors 2009" alt=" Search Engine Ranking Factors 2009" /><br />
			</a>
		</div>
<p><div id="attachment_877" class="wp-caption alignleft" style="width: 213px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/02/2009-ranking-factors1.jpg"><img class="size-full wp-image-877" title="2009-ranking-factors" src="http://pro-webs.net/blog/wp-content/uploads/2010/02/2009-ranking-factors1.jpg" alt="Search Engine Ranking Factors" width="203" height="269" /></a><p class="wp-caption-text">Ranking Factors</p></div>
<p><a title="Search Engine Ranking Factors | SEOmoz" href="http://www.seomoz.org/article/search-ranking-factors" target="_blank">SEOMoz&#8217;s 2009 Search Ranking Factors survey</a> uses a collective polling of some <a title="Search Ranking Factors Contributors" href="http://www.seomoz.org/article/search-ranking-factors#contributors" target="_blank">top names in SEO</a>, including Aaron Wall, Michael Gray, Jill Whalen, Rand Fishkin, Vanessa Fox  and 67 additional top industry contributors who are invited to give their opinion regarding the weight of algorithmic factors for natural search in 2009.</p>
<p>The value of this report for the average website owner is huge, for me it is both highly valuable and thought provoking information, and some redemption as well.</p>
<p>Google and the other search engines use a highly complicated, algorithmic math program to analyze and rank websites in organic search. These algorithms are not made publicly available, thus SEO&#8217;s, like myself spend most of our time testing theories and analyzing statistics in order to develop effective SEO campaigns.</p>
<p>2009 was a pretty tumultuous year for organic search, all three of the top search engines made huge changes to their algorithms and we also saw the launch of Bing. These events made significant changes in the way we think and optimize websites. Fact is, 2010 is already looking to be an even bigger year of changes and SEO&#8217;s will need to keep their ears to the ground to keep up and be successful.</p>
<p><strong>If I had to pick a phrase to best describe SEO, it would be:</strong></p>
<blockquote><p><strong>Analyze, adapt and overcome</strong></p>
</blockquote>
<h2>Top 5 2009 Ranking Factors</h2>
<ol>
<li><strong>Keyword Focused Anchor Text from External Links (73% very high importance)</strong>: This is simply other websites linking out to you with good anchor text. Anchor text is the visually click-able part of the link. We want to see links such as &#8220;SEO Services&#8221; opposed to &#8220;Click Here&#8221; to add the proper weight to the link. I personally strongly agree with this opinion from the panel, but would add that the surrounding text of the link, or lack of text is probably just as important. So essentially a link list is not nearly as effective as a link in the middle of a related paragraph for example.</li>
<li><strong>External Link Popularity <em>quantity/quality of external links</em> (71% very high importance)</strong>: This ranking factors hasn&#8217;t changed too much, basically, more links are better&#8230; More of the better links are substantially better. What makes a link better? Links from trusted, authoritative or seed sites carry more weight, links from topically related pages and domains carry more weight and more is still better. I very much agree with this and would add only that, getter better links is far more important than the number of links.</li>
<li><strong>Diversity of Link Sources <em>links from many unique root domains</em> (67% very high importance)</strong>: This means that for example, 10K links from different pages in the same domain is not as effective as 10K links from 10,000 different domains. You will hear many say that Google only &#8220;counts&#8221; one link from each domain, and while I disagree, I will say that they are severely discounted. So I agree with this finding as well and you should be seeking out as many backlinks from different domain sources as you can to get the most from your link building efforts.</li>
<li><strong>Keyword Use Anywhere in the Title Tag (66% very high importance)</strong>: Your title tag is not a Meta tag, but rather an element tag in the &lt;head&gt; of your pages. This is the information between the &lt;title&gt; tags and what generally displays in your browser tab heading as well. Your title tag and its relevance to the page&#8217;s content is hands down the number 1 on page ranking factor. Proper use of keywords in this element carries a great deal of weight. The more relevant the tag to the page&#8217;s content, the more weight. Additionally note that the first words (left to right) are also given a bit more weight that the words further right. I strongly agree and this is probably your best time spent with your on page optimization.</li>
<li><strong>Trustworthiness of the Domain Based on Link Distance from Trusted (66% very high importance)</strong>: This is a little more difficult to understand, but essentially, just like PageRank, your distance from the trusted domain also factors as a degrade in weight/score. So if I have a page about &#8220;Green Bananas&#8221; and I have a link from GreenBananas.com that is best, but if GreenBananas.com links to FreshBananas.com who links to me, the weight is less. I very strongly agree with this, but conclude that most people are not able to determine what a trusted domain is. So for the sake of application, shop owners should concentrate on topically related links.</li>
</ol>
<p>There are quite a few <a title="All Ranking Factors" href="http://www.seomoz.org/article/search-ranking-factors#ranking-factors" target="_blank">more ranking factors</a> that were polled and we have found some additional tools for shop owners in these as well.</p>
<ul>
<li><strong>Keyword Use in the Root Domain Name (e.g. keyword.com)</strong>: Without being spammy, hard to spell or easily confused, using a keyword in your domain name is a very effective tool. Avoid dashes, non-phonetic words, number/letter substitution and urbanized spellings&#8230; But yes, clean short domain names that carry a keyword will give you a leg up.</li>
<li><strong>Keyword Use Anywhere in the H1 Headline Tag</strong>: The very first heading tag on your page should be an &lt;h1&gt;. Proper, not spammy use of keywords in this tag carry some weight and should be executed by shop owners. Note that a heading tag logically describes the content right below it, and thus another on page factor of importance&#8230;. Most important as close to the top of the page as you can achieve, is given more weight than the content after/below it. (Keyword Use in the First 50-100 Words in HTML on the Page)</li>
<li><strong>Existence of Substantive, Unique Content on the Page</strong>: Uniqueness! Is your page&#8217;s content duplicated elsewhere on the web, including your own site? Is there enough page unique content to allow the page to be considered unique within your template&#8217;s repetitive textual content? Using the manufacturers description is probably the biggest mistake we see here, it&#8217;s duplicate. Additionally, products and categories without a decent amount of unique text are duplicate with your own pages.</li>
<li><strong>Recency (freshness) of Page Creation</strong>: This is one I have been preaching for over a year. Google especially, wants to know that the lights are on <strong>AND</strong> someone is home. Set your mind and schedule to create at least a new page a week.</li>
<li><strong>Use of Links on the Page that Point to Other URLs on this Domain</strong>: Are you linking to yourself with good anchor text? How about your category menu, those are links too. Most effective internal linking will come from links to specific pages within a body of textual content.</li>
<li><strong>Historical Content Changes (how often the page content has been updated)</strong>: Your Zen Cart helps you a great deal already with this, by displaying changing content features in your pages&#8230;. But updating your pages frequently helps you rank.</li>
<li><strong>Blogging and Engagement with the Blogosphere</strong>: Blogs are a very highly effective means of both delivering and maintaining fresh content&#8230; add the link bait factor and this becomes a must have tool for every shop owner in 2009 and more so in 2010!</li>
</ul>
<p><strong>Here are some comments on these factors from panelists you may find very interesting:</strong></p>
<blockquote><p><strong>Russell Jones</strong> – If Google only ranked the “tried and true”, their results would be old and outdated. Recency is a valuable asset when links are hard to come by.</p>
</blockquote>
<blockquote><p><strong>Andy Beal</strong> – Keyword use in external link anchor text is one of the top SEO factors overall. I’ve seen sites rank for competitive keywords—without even mentioning the keyword on-page—simply because of external link text.</p>
</blockquote>
<blockquote><p><strong>Andy Beard</strong> – Keyword Use in the Meta Keywords Tag – ignore them unless using a blogging platform which can use the same keywords as tags. Google ignores them.</p>
</blockquote>
<blockquote><p><strong>Christine Churchill</strong> – Taking the time to create a good title tag has the biggest payoff of any on-page criteria. Just do it!</p>
</blockquote>
<blockquote><p><strong>Peter Wailes</strong> – Domain name keyword usage gains most of its strength through what anchor text people are then likely to link to you with, not so much from inherent value, which is lower in my opinion.</p>
</blockquote>
<blockquote><p><strong>Peter Meyers</strong> – Anecdotally, it feels like freshness is more important than ever. I’m amazed how often a blog post ranks within the first day, holding a top-10 position before finally settling a few spots (or even pages) lower.</p>
</blockquote>
<blockquote><p><strong>Ann Smarty</strong> – Domain strength is a highly important factor (still). We keep seeing pages with 0 strength of their own hosted on reputable domains ranked very high for very competitive words.</p>
</blockquote>
<blockquote><p><strong>Ian Lurie</strong> – Use of Adsense/Google Apps/Google Search or other search engine-owned tools, though, won’t impact results at all. If your site is so hurting, SEO-wise, that you have to point an Adwords ad at it to get crawled, you’ve got bigger problems.</p>
</blockquote>
<blockquote><p><strong>Adam Audette</strong> – CTR on a search result is a large cumulative factor, and brings in page load time as well, which is something we&#8217;re very focused on at present.</p>
</blockquote>
<p>You know, it&#8217;s funny&#8230; At least our customers find it humorous, but most of the SEO you need is really common sense. Imagine if Google was your business, what kind of websites would <strong>you</strong> want to deliver your searchers (customers)? Hard work, lite reading and an overall drive to be successful are exactly what every shop owner needs to succeed. If someone told you this was going to be easy&#8230;.. They lied!</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/search-engine-ranking-factors-2009','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/02/08/search-engine-ranking-factors-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Blogging for Ecommerce Stores</title>
		<link>http://pro-webs.net/blog/2010/02/01/business-blogging-ecommerce-stores/</link>
		<comments>http://pro-webs.net/blog/2010/02/01/business-blogging-ecommerce-stores/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 18:33:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blogging Software]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Ecommerce Blogging]]></category>
		<category><![CDATA[Ecommerce Stores]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software Applications]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=859</guid>
		<description><![CDATA[The need for "fresh" content has sent many shop owners looking for a blog. So today I want to give you some tips for looking at your planned or existing ecommerce blog.... shop owners who realize the need to deliver content in a more effective manner.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F01%2Fbusiness-blogging-ecommerce-stores%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F02%2F01%2Fbusiness-blogging-ecommerce-stores%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Business Blogging for Ecommerce Stores" alt=" Business Blogging for Ecommerce Stores" /><br />
			</a>
		</div>
<p><div id="attachment_862" class="wp-caption alignleft" style="width: 112px"><img class="size-full wp-image-862" title="business-blogging" src="http://pro-webs.net/blog/wp-content/uploads/2010/02/business-blogging.gif" alt="Ecommerce Blogging" width="102" height="108" /><p class="wp-caption-text">Ecommerce Blogging</p></div>
<p>The need for &#8220;fresh&#8221; content has sent many shop owners looking for a blog. We have built many WordPress Blogs for shop owners in the last few months&#8230;. shop owners who realize the need to deliver content in a more effective manner. So today I want to give you some tips for looking at your planned or existing ecommerce blog.</p>
<p>First off, no offense meant to other blogging software&#8230; But I highly recommend WordPress. The features, speed and ease of use is the perfect match for most shop owner&#8217;s needs. Add the awesome widgets and other tools to take full advantage of your content for social media, and you have the perfect application for your online store&#8217;s blog.</p>
<p><strong>Caution number 1</strong>&#8230;. I do NOT recommend that you host your blog anywhere else except your OWN DOMAIN. Something <strong>store.com/blog</strong> is perfect! Subdomains are redundant and unnecessary as well&#8230; They are in fact viewed as folders by Google and not a separate site anyhow. Host your own blog as the content is far more valuable to your business than any link from it hosted elsewhere.</p>
<p><strong>Caution number 2</strong>&#8230;. I do NOT recommend using a module to integrate your WordPress within Zen Cart. Fact is you lose a bunch of WordPress ability and worse the issues caused by the integrations.</p>
<p>I agree that you want your blog consistently branded to look like your shop&#8217;s pages, but the level of skill needed to create a good looking, branded WordPress theme is pretty low as far a templating software applications goes.</p>
<p>Here is an example we did recently for a Zen Cart owner to port his offsite blog content in to his own site <a title="http://www.horseprerace.com/blog/" rel="nofollow" href="http://www.horseprerace.com/blog/" target="_blank">http://www.horseprerace.com/blog/</a>. Notice that while it&#8217;s a blog the navigation on both the store and blog are linked to each other and it&#8217;s consistently branded (styled).</p>
<p><strong>Caution number 3</strong>&#8230;. Do not build a blog unless you have something useful to post. Things like articles about your products alone will not fit the bill. You have to create content that is useful and searchable. A great example is another customer we built a branded blog for, Silver and Pewter Gifts. This <a title="http://www.silverandpewtergifts.com/blog/the-legend-behind-valentine%E2%80%99s-day/" rel="nofollow" href="http://www.silverandpewtergifts.com/blog/the-legend-behind-valentine%E2%80%99s-day/" target="_blank">Valentine&#8217;s Day post</a> is excellent, and EXACTLY the type of content you will need to attract readers, searches and backlinks!</p>
<p>Creating valuable and unique content for your website is a big commitment&#8230;. with big rewards. The most effective thing you can do it create 1-5 brand new pages with great content on your site weekly. Google especially respects the frequency of the content and rewards you in rank and crawl rate increase. <strong> </strong></p>
<p><strong>But how will you write all of that content?</strong> Well, to be honest&#8230; you don&#8217;t have to write it all.</p>
<p><strong>You can hire a writer</strong> to create content on the topics you supply. Make sure to check their copy <a title="Copyscape" href="http://www.copyscape.com/" target="_blank">here</a> so you know it is unique and not copied. Content that has been duplicated&#8230; just doesn&#8217;t rank well.</p>
<p><strong>You can solicit guest bloggers&#8230;</strong> Employees, distributors, high school kids&#8230; you name it. Find people who are passionate about your website&#8217;s theme and let them express themselves. You will find that many more are interested than you think&#8230;. AND guest bloggers are a great way to help to promote your blog as well.</p>
<p><strong>You can buy private label articles</strong> related to your content needs&#8230;. BUT these articles, unless unique will need to be rewritten to remove the duplicate content. However, they are excellent inspiration for the new writer and provide a nice framework for the post.</p>
<p>You can write great blog posts yourself. Just jump in. There are ton&#8217;s of great resources availiable to help you get started. Check some of these out:</p>
<ul>
<li>Writing great content <a title="http://www.problogger.net/how-to-write-great-blog-content/" href="http://www.problogger.net/how-to-write-great-blog-content/" target="_blank">http://www.problogger.net/how-to-write-great-blog-content/</a></li>
<li>What makes great blog writing <a title="http://writetodone.com/2008/01/10/what-makes-great-blogwriting/" href="http://writetodone.com/2008/01/10/what-makes-great-blogwriting/" target="_blank">http://writetodone.com/2008/01/10/what-makes-great-blogwriting/</a></li>
<li>One of my all time favorites&#8230; Writing great blog headlines/titles <a title="http://www.copyblogger.com/10-sure-fire-headline-formulas-that-work/" href="http://www.copyblogger.com/10-sure-fire-headline-formulas-that-work/" target="_blank">http://www.copyblogger.com/10-sure-fire-headline-formulas-that-work/</a></li>
</ul>
<p><strong>Some things I would like to add&#8230;. </strong></p>
<p><strong>Blog with your own voice</strong>, words from you with your passion and emotion will be the most effective content and serve to build your readership as well.</p>
<p><strong>Write your posts in 2 steps&#8230;</strong> If you are like me the ideas are just swimming around in my head and I can&#8217;t even type fast enough to get them all down. So when I finish fishing my head for ideas&#8230; I have to reorder, restructure and polish the gibberish I have pounded out on my keyboard. I am am really so bad that I will generally have 3 to 4 sloppy copies before I am done&#8230; My brain is much faster than my fingers. Read every post in preview view all the way through at least twice before you embarrass yourself by publishing poorly written or unprofessional content.</p>
<p><strong>Lastly&#8230; NEVER leave a user comment unanswered. NEVER</strong></p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/business-blogging-ecommerce-stores','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/02/01/business-blogging-ecommerce-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Goes Social!</title>
		<link>http://pro-webs.net/blog/2010/01/29/google-search-goes-social/</link>
		<comments>http://pro-webs.net/blog/2010/01/29/google-search-goes-social/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Profile]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[Google Social Search]]></category>
		<category><![CDATA[Media Platform]]></category>
		<category><![CDATA[Media Profile]]></category>
		<category><![CDATA[Networking Opportunities]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Social Search]]></category>
		<category><![CDATA[Vanity Url]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=850</guid>
		<description><![CDATA[Impressed? Well you should be! Google has just supplied you the glue to bind and promote your entire social media campaign! In October 2009 Google released the new Google Social search for the purpose of experimentation. The experiment, deemed successful as many jumped in and tried it out, is now released in the Beta public format.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F29%2Fgoogle-search-goes-social%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F29%2Fgoogle-search-goes-social%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Google Search Goes Social!" alt=" Google Search Goes Social!" /><br />
			</a>
		</div>
<div id="attachment_851" class="wp-caption alignleft" style="width: 190px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/google-social.gif"><img class="size-full wp-image-851" title="google-social" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/google-social.gif" alt="Google Social Search" width="180" height="72" /></a><p class="wp-caption-text">Google Social Search</p></div>
<p>Impressed? Well you should be! Google has just supplied you the glue to bind and promote your entire social media campaign! In <a title="Google Social Search" href="http://googleblog.blogspot.com/2009/10/introducing-google-social-search-i.html" target="_blank">October 2009 Google</a> released the <a title="Search is getting more social" href="http://googleblog.blogspot.com/2010/01/search-is-getting-more-social.html" target="_blank">new Google Social search</a> for the purpose of experimentation. The experiment, deemed successful as many jumped in and tried it out, is now released in the Beta public format.</p>
<p> </p>
<p><strong>Cool, how do I get started?</strong></p>
<p>If you have a Google profile already, just <a title="Edit Google Profile" href="http://www.google.com/profiles/me/editprofile?hl=en&amp;edit=a" target="_blank">update it</a>. If not get one!</p>
<p>Most of the information is general social media profile stuff&#8230;. But low and behold some great networking opportunities exist too.</p>
<ol>
<li>The ability to supply a short Bio in html, including those precious links!</li>
<li>Custom links to your blogs and other promotable websites &#8230; and Your Google reader and YouTube profile as well.</li>
<li>Contact Info</li>
<li>Last but certainly not least&#8230;. a Cool Vanity URL with your username to link to. Here is mine <a title="My Google Profile" href="http://www.google.com/profiles/MPrough" target="_blank">http://www.google.com/profiles/MPrough</a></li>
</ol>
<p><strong>Missing?</strong></p>
<p>Well there are a few things we like to see in a social media platform that are missing&#8230; Well maybe not implemented yet.</p>
<ol>
<li>RSS feed opportunities &#8230; Well we can add a link, but&#8230;</li>
<li>Better image loading opportunities</li>
<li>More robust business related tools such as testimonials and recommendations</li>
</ol>
<p>All in all, great way to give your social media campaign a nice boost&#8230;. In true Google fashion, for FREE!</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/google-search-goes-social','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/29/google-search-goes-social/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Your Biggest Losers</title>
		<link>http://pro-webs.net/blog/2010/01/21/converting-your-biggest-losers/</link>
		<comments>http://pro-webs.net/blog/2010/01/21/converting-your-biggest-losers/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 06:52:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Biggest Losers]]></category>
		<category><![CDATA[Conversion Data]]></category>
		<category><![CDATA[conversions]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Traffic Sources]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=836</guid>
		<description><![CDATA[With the current climate of Google's new algorithm, I have had cause to reflect on a basic idea.... Seemingly long forgotten. Are you getting the sales you need from your existing visits? Or are you a "build it and they will come" person?]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F21%2Fconverting-your-biggest-losers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F21%2Fconverting-your-biggest-losers%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Converting Your Biggest Losers" alt=" Converting Your Biggest Losers" /><br />
			</a>
		</div>
<p><div id="attachment_842" class="wp-caption alignleft" style="width: 181px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/losing-pages.jpg"><img class="size-full wp-image-842" title="losing-pages" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/losing-pages.jpg" alt="Losers?" width="171" height="203" /></a><p class="wp-caption-text">Losers?</p></div>
<p>With the current climate of Google&#8217;s new algorithm, I have had cause to reflect on a basic idea&#8230;. Seemingly long forgotten. <strong>Are you getting the sales you need from your existing visits?</strong> Or are you a &#8220;build it and they will come&#8221; person?</p>
<p>If you plan to increase your traffic to meet your sales needs and never worry about what you could be missing&#8230; Stop reading, this will bore you =-) However, if you want to build your qualified traffic and get the sales from them you need, then read on.</p>
<p> </p>
<p> </p>
<p><strong>Conversions! Yes folks SALES! This is the point right?</strong></p>
<p>So in light of all the indexing and rank changes, we sent our SEO clients a &#8220;<strong>Biggest Losers List</strong>&#8220;. The concept here is that these visits are lost sales, for some reason. Price? Usability? Information? Something is missing and the page cannot make the sale.</p>
<p>First off, lets find your top 5 biggest losers for the last 30 days. Login in to your Google Analytics account, hopefully it is set up properly to <a title="Conversions Tracking Google Analytics Tutorial" href="http://pro-webs.net/tutorials/setting-up-google-analytics-w-conversion-tracking-basic/" target="_blank">track conversion data</a>. Unless you have moved things around from your lower dashboard click &#8220;View report&#8221; on the &#8220;Traffic Sources Overview&#8221; box. Then under the sources area, choose Google Organic for example.</p>
<p>In the gray bar, there is a dropdown set initially for keyword, drop this down to landing page. Now click the header link in the &#8220;Visits&#8221; column to sort them by visits, more visits at the top. Now click on your ecommerce tab.</p>
<p>We are looking for the pages with many visits and no conversions. I have one of my own sites open right now to provide some examples.</p>
<p>Loser Page #1 had 52 visits and no conversions.</p>
<p>Loser Page #2 had 29 visits and no conversions.</p>
<p>Loser Page #3 had 20 visits and no conversions.</p>
<p>Now, we can clearly see without going a step further there is something wrong here. In this shop, for example, the &#8220;per visit value&#8221; in the upper bar is $4.86&#8230;.. <strong>So we know that for some reason these losing pages lost at least $490.86 in potential sales&#8230;.. OUCH!</strong></p>
<p>Now lets gather some more information. In the dropdown next to &#8220;Landing Page&#8221; select &#8220;Keyword&#8221; to add the column. This complicates things a bit, but sometimes, Google needs more information from you to send your pages qualified leads. If you find that one of your losers is getting a bunch of seeming unrelated search traffic, then it is a good bet that the text on the page is not clear enough to Google.</p>
<p>A good example of this is our pet store example, the 29 searches are for &#8220;bows in bulk&#8221;&#8230; which we sell, except they are dog grooming bows. So I will be updating this page so Google can deliver it for more proper search queries. This part is easy&#8230;.</p>
<p><strong>What if these losing pages have good, relevant searches?</strong></p>
<p>In this case, we have to have a good old fashioned, come to Jesus look at the page. Is the price too high? Information unclear? Terrible images? Missing selections? Or just plain poorly organized even. Trust me when I say, you must train your eyes to shop like a consumer. In reality it doesn&#8217;t matter what you think or what your competitors do&#8230;. Matters that there is a problem with this page you need to solve.</p>
<p><strong>These things can really be very small</strong>&#8230; Layout, color, button positions etc. So your best course of action is to have some friends look at it. The trick here is two fold. First, whatever you think about what they say doesn&#8217;t matter&#8230; You are not an average consumer. Listen to them, analyze what they have said and act on it. Secondly, don&#8217;t go changing a hundred things on the page&#8230;. <span style="color: #333399;"><strong>Nothing you cannot measure can ever be successful</strong></span>. Take your list, make a few logical changes and watch it for 3 weeks&#8230;. Then measure your results and continue to implement the needed changes in small doses as well. Pretty soon this page will not be a loser anymore!</p>
<p>Need a hand? If you post your page link in a comment, with your own thoughts and the visits &amp; conversions&#8230; I will be glad to have a look and make suggestions as I can =-)</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/converting-your-biggest-losers','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/21/converting-your-biggest-losers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did You Hack Your Own Website?</title>
		<link>http://pro-webs.net/blog/2010/01/17/did-you-hack-your-own-website/</link>
		<comments>http://pro-webs.net/blog/2010/01/17/did-you-hack-your-own-website/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 12:49:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Small Business]]></category>
		<category><![CDATA[Anti Virus]]></category>
		<category><![CDATA[Brute Force]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[Hacked]]></category>
		<category><![CDATA[Malicious Files]]></category>
		<category><![CDATA[Scanner Software]]></category>
		<category><![CDATA[Software Scanners]]></category>
		<category><![CDATA[Trojan Downloader]]></category>
		<category><![CDATA[Virus Software]]></category>
		<category><![CDATA[Vulnerability Scanner]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=831</guid>
		<description><![CDATA[We have had several cases recently where a Zen Cart owner or other personnel with access infected their own site with a Trojan zcv.gif. ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F17%2Fdid-you-hack-your-own-website%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F17%2Fdid-you-hack-your-own-website%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Did You Hack Your Own Website?" alt=" Did You Hack Your Own Website?" /><br />
			</a>
		</div>
<p>Ok, so that&#8217;s a funny headline&#8230;. But it&#8217;s true. We have had several cases recently where a Zen Cart owner or other personnel with access infected their own site with a Trojan.</p>
<p><div id="attachment_833" class="wp-caption alignleft" style="width: 170px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/JS-Downloader-X.jpg"><img class="size-full wp-image-833" title="JS-Downloader-X" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/JS-Downloader-X.jpg" alt="JS Downloader X Did You Hack Your Own Website?" width="160" height="213" /></a><p class="wp-caption-text">JS-Downloader-X</p></div>In both recent cases, a file called zcv.gif was inserted into the cart&#8217;s directories. A <a title="zcv.gif" href="http://groups.google.com/groups/search?hl=en&amp;ie=UTF-8&amp;q=zcv.gif&amp;btnG=Search&amp;sitesearch=" target="_blank">quick search on Google Groups</a> reveals that not only Zen Carts were affected, but WordPress, Joomla and more. Although the Zen Carts seemed to hold up and no injection of scripting took place in the 2 I was involved with, apparently <a title="Joomla Hacked" href="http://forum.joomla.org/viewtopic.php?f=267&amp;p=1985999" target="_blank">Joomla users were not so lucky</a> as they had every single index file to clean up as well!</p>
<p>The issue kept reoccurring after users cleaned their websites up. When cleaning a hacked website we look for back doors which can provide future access to cause damage. In this case, the &#8220;back door&#8221; providing the access for reinfection resided on the website owners computers.</p>
<p>The infection, caused by a <a title="JS-Downloader-X Information and Removal" href="http://www.sunbeltsecurity.com/ThreatDisplay.aspx?name=JS-Downloader-X%20&amp;tid=4230985&amp;cs=9C3BBDC52ACF252E1DE4B1373F4F37C3" target="_blank">Trojan downloader threat JS-Downloader-X</a>, infected from several different websites. The threat is listed as high, and unfortunately at the time it escaped many common virus software scanners. The virus essentially uses the hosting and/or FTP login info on the user&#8217;s computer to make its access. This is highly hard to track down and prevent, as normal hosting firewalls, security rules and even brute force detection are not triggered&#8230; You see the access is authorized.</p>
<p><strong>Below is a list of things you can do to keep your own computer and other who access your website clean.</strong></p>
<p>1. Use the following online vulnerability scanner and ensure your software is up-to-date: http://secunia.com/vulnerability_scanning/online/?task=load<br />2. Download anti-virus and fully scan your PC for malicious files. Here are some free online scanners for Windows, which is typically the most vulnerable to infection. If you have a different OS, there are similar programs that can be located and run on your system to protect it in the same way:<br />MalwareBytes ( http://www.malwarebytes.org/ ) and<br />ComboFix ( http://www.bleepingcomputer.com/combofix/how-to-use-combofix ) have been reported to be able to clean a recent strain of malware that resists detection by almost all other anti-virus agents. It is highly suggested that you one or both of them and one of the following:<br />-http://housecall.trendmicro.com/<br />-http://www.bitdefender.com/scan8/ie.html<br />-http://www.kaspersky.com/virusscanner<br />-http://support.f-secure.com/enu/home/ols.shtml<br />-http://www.eset.com<br />3. Update all passwords for any account that you access/own that may not be up to standards. Any passwords that have been compromised will need to be changed as well. Standards for secure passwords are available: http://en.wikipedia.org/wiki/Password_strength#Guidelines_for_strong_passwords<br />4. Keep your computer secure from malware infecting it. If your computer is compromised, your account can be compromised through your password being used to access it.<br />- Ensure you use the latest browser version; Ensure that said browser subscribes to Google&#8217;s blacklist API (Mozilla Firefox, Google Chrome, Safari)<br />- Disable javascript<br />- Use the firefox addon noscript<br />- Make sure your antivirus has a subscription to new database and version releases. This may cost some amount of money, but is well worth the expense.<br />- Use http://www.avg.com.au/index.cfm?section=avg&amp;action=onlinescan to test suspicious links you are given in emails or find online.<br />6. Ensure that all database configurations for your account are using a custom generated user and password combination, and that this information is not stored in plain text if this is feasible. Using your cPanel username and password to access your databases for your site may be convenient, but it introduces an incredible security risk.<br />7. Audit your account for unnecessary scripts, such as file uploaders. Ensure that if they are necessary that they are password protected, or if that is not feasible that they check the file type before allowing upload, to prevent upload of certain types of files.</p>
<p>Most important, if you see the file zcv.gif in your file structure, know that removing it will not remove the threat and all with access will need to properly scan and clean up their computers.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/did-you-hack-your-own-website','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/17/did-you-hack-your-own-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand Damaging &amp; What it Means to Ecommerce</title>
		<link>http://pro-webs.net/blog/2010/01/14/brand-damaging-what-it-means-to-ecommerce/</link>
		<comments>http://pro-webs.net/blog/2010/01/14/brand-damaging-what-it-means-to-ecommerce/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 14:26:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce Marketing]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[So you want to be a Shop Owner Series]]></category>
		<category><![CDATA[Brand Damaging]]></category>
		<category><![CDATA[Direct Response Products]]></category>
		<category><![CDATA[Dss]]></category>
		<category><![CDATA[E Online]]></category>
		<category><![CDATA[Marketing Models]]></category>
		<category><![CDATA[Mastercard]]></category>
		<category><![CDATA[Merchant Applications]]></category>
		<category><![CDATA[Merchant Bank]]></category>
		<category><![CDATA[Negative Option]]></category>
		<category><![CDATA[PCI]]></category>
		<category><![CDATA[Visa]]></category>
		<category><![CDATA[Visa Mastercard]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=825</guid>
		<description><![CDATA[It's not really Greek, in a nutshell, if you, your practices, your security or your products and services are a bad risk, Visa Mastercard feels that this damages their brand.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F14%2Fbrand-damaging-what-it-means-to-ecommerce%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F14%2Fbrand-damaging-what-it-means-to-ecommerce%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Brand Damaging & What it Means to Ecommerce" alt=" Brand Damaging & What it Means to Ecommerce" /><br />
			</a>
		</div>
<p><div id="attachment_827" class="wp-caption alignleft" style="width: 117px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/brand-damaging.jpg"><img class="size-full wp-image-827" title="brand-damaging" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/brand-damaging.jpg" alt="Brand Damaging" width="107" height="86" /></a><p class="wp-caption-text">Brand Damaging</p></div>
<p>First let&#8217;s attempt to define what &#8220;<strong>brand damaging</strong>&#8221; actually means. It&#8217;s really a rather ambiguous, mostly legal term referring to statements, actions, images, content, theft and other actions causing damage or harm to one&#8217;s brand. Be that brand an authors name, a business or a service.</p>
<p>Many times this type of issue involves another nasty term, &#8220;identity theft&#8221;. The connection comes from associating a known brand, such as the <a title="ShoeMoney Brand Damaging Scam" href="http://www.shoemoney.com/2008/12/26/google-money-tree-scam-hydra-affiliate-network/" target="_blank">case with Jeremy Schoemaker in 2008</a>. This matter was one of the first notable cases I have seen reported. In this case,  the Hydra Network or one of its affiliates made unauthorized use of a picture of ShoeMoney holding a check and the accompanying ad claiming he had made the money using a scam called &#8220;Google Money Tree&#8221;.</p>
<p><strong>How does this affect shop owners?</strong></p>
<p>Many of you will have already received a letter of intent, or decided changes from your merchant bank if you process credit cards. The changes or proposed changes are quite frankly in answer to Visa Mastercard&#8217;s intent to take action in response to increases in consumer disputes related to card not present and direct response products and services.</p>
<p>It&#8217;s not really Greek, in a nutshell, if you, your practices, your security or your products and services are a bad risk, Visa Mastercard feels that this damages their brand.</p>
<p>These forthcoming and anticipated payment brand mandates and requirements will change a great many things for some merchants. For example e-online has already adapted the following policy changes:</p>
<blockquote><p>e-onlinedata cannot accept merchant applications for products and/or services employing “Negative Option” enrollment, in addition to the following practices:</p>
<ul>
<li> Marketing models that employ “Free-Trial”, “Deferred Billing” and/or “Shipping Only”. Customers must be receiving a tangible good or contracted service in exchange for charging of payment cards. Incentivized discount offers are acceptable when the cardholder is receiving something in exchange for payment, however we will be unable to support accounts engaging in hidden or delayed charges and ‘free’ offers that are not truly free.</li>
<li>“Cross-Selling” and “Up-selling” business practices. All sales should be directly between the business entities (merchant) processing the transaction and the cardholder, with cardholder authorization for all purchases.</li>
<li>Per Payment Brand guidelines, the use of multiple merchant accounts, billing descriptors and merchant processors may be viewed as an attempt to avoid chargeback monitoring programs and is prohibited. Perceived non-compliance has led to termination of processing relationships. e-onlinedata will review the business consideration for opening multiple merchant accounts to ensure compliance with Payment Brand guidelines.</li>
<li>Transactions generated from internet traffic and all other lead sources must be managed and monitored for potential fraud using an approved system. Third Party service engagement may be a requirement for account approval.</li>
</ul>
</blockquote>
<p>Of these, the most likely ecommerce merchant concern is the last. The last statement refers to properly managing, monitoring and PCI compliance of your shopping cart, hosting and merchant gateway. These are not recommendations, but rather already required for merchants. When you signed your merchant agreement, you also agreed to maintain the proper PCI/DSS standards and mandates.</p>
<p>Originally, PCI was Greek, however, merchants are learning and much support is available to meet the needs of small businesses whose budget for these matters can be quite small. Your merchant provider, merchant gateway provider or PCI approved scanner can help you to understand and manage the protocols necessary to keep not only yourself, but your shoppers safe. I have a post here to get you started on <a title="PCI Compliance" href="http://pro-webs.net/blog/2009/06/06/simple-pci-guide-for-merchants/">the road to PCI compliance</a>.</p>
<p>It is clearly worth noting that the FTC (Federal Trade Commission) has already moved on the <a title="FTC Staff Report Offers Guidance on Online Negative Option Marketing" href="http://www.ftc.gov/opa/2009/02/jab.shtm" target="_blank">&#8220;Negative Option&#8221; marketing technique</a>. Additionally, the <a title="Endorsement Blogging &amp; the FTC" href="http://pro-webs.net/blog/2009/10/07/endorsement-blogging-the-ftc/">FTC recently made changes to the requirements for paid testimonials, blog posts and endorsements</a>. These are also clearly targeted at the web, and I think we can expect to see more of the same with big fines from the FTC in the future.</p>
<p>Not only are these things right and proper in my opinion, but changes to protect consumers on the web are long overdue. I think if you run and honest business in good faith you will not have any issues, frankly, those sapped by the movement to protect Internet consumers are in general those who would strive to deceive and take advantage of consumers&#8230;. Giving us all a bad name and damaging our brand as well!</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/brand-damaging-what-it-means-to-ecommerce','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/14/brand-damaging-what-it-means-to-ecommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecommerce for Your Business Marketing Endeavor</title>
		<link>http://pro-webs.net/blog/2010/01/13/ecommerce-for-your-business-marketing-endeavor/</link>
		<comments>http://pro-webs.net/blog/2010/01/13/ecommerce-for-your-business-marketing-endeavor/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 00:03:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[So you want to be a Shop Owner Series]]></category>
		<category><![CDATA[Store Development]]></category>
		<category><![CDATA[Brick And Mortar Store]]></category>
		<category><![CDATA[Business Marketing]]></category>
		<category><![CDATA[Ecommerce Businesses]]></category>
		<category><![CDATA[Gain Product Knowledge]]></category>
		<category><![CDATA[Geographical Locations]]></category>
		<category><![CDATA[Internet Use]]></category>
		<category><![CDATA[Mobile Users]]></category>
		<category><![CDATA[Online Catalog]]></category>
		<category><![CDATA[Small Businesses]]></category>
		<category><![CDATA[Traditional Business]]></category>
		<category><![CDATA[Worldwide Market]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=819</guid>
		<description><![CDATA[Another advantage of the Internet is its worldwide reach. Small business retailers no longer have to have brick &#038; mortar stores in many different geographical locations to become a national brand - by selling on the web, they can get their product seen by a much larger audience.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F13%2Fecommerce-for-your-business-marketing-endeavor%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F13%2Fecommerce-for-your-business-marketing-endeavor%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Ecommerce for Your Business Marketing Endeavor" alt=" Ecommerce for Your Business Marketing Endeavor" /><br />
			</a>
		</div>
<p><div id="attachment_821" class="wp-caption alignleft" style="width: 107px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/shopping-cart.jpg"><img class="size-full wp-image-821" title="shopping-cart" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/shopping-cart.jpg" alt="Ecommerce Marketing" width="97" height="98" /></a><p class="wp-caption-text">Ecommerce Marketing</p></div>
<p>Internet use is still growing year after year, and as more and more people have Internet access, more and more small businesses are recognizing the importance of integrating some form of ecommerce / online catalog as part of their business marketing portfolio. The Internet never goes offline, and websites are accessible every hour of the day &#8211; there are no opening and closing times on the Internet serving a worldwide market.</p>
<p>For the average person, the ability to be able to shop from the comfort home is a very welcome idea, and is becoming a very popular method of purchasing goods&#8230; Even for mobile users! Those customers who still prefer the tangibility of a brick and mortar store, the Internet still provides a way of researching the products they are interested in, to compare different prices, gain product knowledge and prepare to make an educated decisions without salesman pressure.</p>
<p>Another advantage of the Internet is its worldwide reach. Small business retailers no longer have to have brick &amp; mortar stores in many different geographical locations to become a national brand &#8211; by selling on the web, they can get their product seen by a much larger audience.</p>
<p>However, it is not as simple as setting up online and customers automatically come flocking to your shop; a lot of hard work needs to go into developing, promoting and securing your online store, thus tackling many of the same related start up and maintenance issues with a brick and mortar store. The biggest difference is cost, while you may end up paying a couple of thousand dollars to properly develop your shopping cart&#8230; you will still be saving on start up fees, rent and other traditional business overhead costs These savings can then be passed on to the shoppers, making your business more competitive in its niche.</p>
<p>Undoubtedly then, a small business with a Internet promotable product would be foolish to overlook the power of the ecommerce. Businesses should plan and look to incorporate some form of ecommerce into their current business marketing portfolio. Be aware, however, as major differences exist between selling online and selling in real life, and you will need to build up a high level of trust with Internet customers&#8230; In perhaps ways you are not yet accustomed to.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/ecommerce-for-your-business-marketing-endeavor','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/13/ecommerce-for-your-business-marketing-endeavor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website Toolkit</title>
		<link>http://pro-webs.net/blog/2010/01/06/new-website-toolkit/</link>
		<comments>http://pro-webs.net/blog/2010/01/06/new-website-toolkit/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 15:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[So you want to be a Shop Owner Series]]></category>
		<category><![CDATA[Store Development]]></category>
		<category><![CDATA[Own Business]]></category>
		<category><![CDATA[Prospective Developers]]></category>
		<category><![CDATA[Software Functionality]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[Web Developers]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Website Owner]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=808</guid>
		<description><![CDATA[I have decided that all we can do is provide quality, honesty and transparency in our own business. So to that end, I am providing prospective new website owners the following list of tips and precautions before choosing a designer/developer and beginning a website project.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F06%2Fnew-website-toolkit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2010%2F01%2F06%2Fnew-website-toolkit%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="New Website Toolkit" alt=" New Website Toolkit" /><br />
			</a>
		</div>
<p><div id="attachment_810" class="wp-caption alignleft" style="width: 92px"><a href="http://pro-webs.net/blog/wp-content/uploads/2010/01/frustration.jpg"><img class="size-full wp-image-810" title="frustration" src="http://pro-webs.net/blog/wp-content/uploads/2010/01/frustration.jpg" alt="Ugh!" width="82" height="122" /></a><p class="wp-caption-text">Ugh!</p></div>
<p>I guess one of the most disappointing things we deal with in our business is the &#8220;ugly&#8221; or &#8220;darkside&#8221; of how others deliver web services. There is not a single day that goes by where some website owner doesn&#8217;t contact us with issues related to the development, design or even ownership of their site. Everything from broken promises and deceit to outright performance issues send these customers hunting for a &#8220;new webmaster&#8221;.</p>
<p>We have dealt with some very disheartening issues for our clients. They call and need to move their site to proper hosting and can&#8217;t because they don&#8217;t have access, they find they do not own their domain registration, they have been locked out of and charged for GPL/free built in software functionality or their webmaster flew the coop.</p>
<p>While these issues do pain me, I have decided that all we can do is provide quality, honesty and transparency in our own business. So to that end, I am providing prospective new website owners the following list of tips and precautions before choosing a designer/developer and beginning a website project.</p>
<ol>
<li><strong>NEVER, EVER let a designer register your domain in his/her name.</strong> If this is how they insist on doing business, then find a professional.</li>
<li><strong>Make sure you have full access to your hosting services, including support.</strong> If they want to host you in their account, then insist that you obtain your own hosting. If they refuse to play ball&#8230; find another.</li>
<li><strong>Know what you want and need. Develop a list of the functions, look and services you need.</strong> Provide this list to several prospective developers and make them explain how these options are best accomplished. Those that cannot &#8230;. get dumped.</li>
<li><strong>Know your software.</strong> If you choose a software driven site, such as Zen Cart, read and learn about the software. Buy a manual and really know what you are getting, then find a developer with a great deal of experience with your chosen software. This really matters, you see a general web designer cannot handle developing a Zen Cart project for example. They will only hack, crack and break the software functionality with their inexperience&#8230;. Costing you upgrade, development and repair money in the future.</li>
<li><strong>Be ready to work&#8230;. This is your website right?</strong> There really isn&#8217;t any money for nothing going on here&#8230; That is a bullshit lie propagated by people who would seek to take advantage of you long term. If it sounds to good to be true, it is.</li>
<li><strong>Do not rely on a sole person or company for the maintenance of your website</strong>&#8230;. People go missing all the time. Make sure you have a backup person and you are able to provide them the needed access (hosting logins, FTP and admin information) to help you in a pinch.</li>
<li><strong>Remember when you hire a professional, they are the professional. </strong>If this person tells you something is a really bad idea, you should likely listen&#8230;. are you a web developer?</li>
<li><strong>Insist on a development time frame and frequent updates.</strong> Development schedules get busted up all the time, but you need a plan and to be kept abreast of the setbacks and new expected schedule forecasts.</li>
<li><strong>Check your developer out.</strong> Contact owners of some of the websites in their portfolio&#8230; Better yet, send links to each of the prospective developers of each others sites and ask for their opinion =-). Google the developer or company name looking for the good, bad and ugly comments you may find. Really check them out, this is alot of money to simply throw away.</li>
<li><strong>Ask alot of questions!</strong> Every single thing you want, need to know, or do not understand needs to be asked&#8230;. This is your website and you need to know.</li>
</ol>
<p>It&#8217;s also a good thing to user a designer/webmaster that has more than email access for support and questions, what if you are not at your computer and your site is down?</p>
<p>Being successful on the web takes a great deal of dedication and learning, all you do is in a constant state of change in this business. You never stop learning, adding new content and building links&#8230;. <strong>This is the cost of Internet success, make sure you are ready to pay it up.</strong></p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/new-website-toolkit','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2010/01/06/new-website-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecommerce for All &#8211; Best of 2009</title>
		<link>http://pro-webs.net/blog/2009/12/31/ecommerce-for-all-best-of-2009/</link>
		<comments>http://pro-webs.net/blog/2009/12/31/ecommerce-for-all-best-of-2009/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 15:47:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[So you want to be a Shop Owner Series]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Top 10 Posts]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=801</guid>
		<description><![CDATA[So to that end I would like to share with you the top 10 posts that users have found the most helpful to them. May you find them helpful and continue to prosper in 2010!]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F31%2Fecommerce-for-all-best-of-2009%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F31%2Fecommerce-for-all-best-of-2009%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Ecommerce for All   Best of 2009" alt=" Ecommerce for All   Best of 2009" /><br />
			</a>
		</div>
<p><a href="http://pro-webs.net/blog/wp-content/uploads/2009/12/pro-webs-top10.jpg"><img class="alignleft size-full wp-image-803" title="pro-webs-top10" src="http://pro-webs.net/blog/wp-content/uploads/2009/12/pro-webs-top10.jpg" alt="Top 10- Posts" width="106" height="98" /></a>I really enjoy writing here to help and empower shop owners. Nothing about this business is more disappointing than the helplessness that many feel with their new Zen Cart software. From the beginning my main goal has been to provide information and services designed to allow these small business owners the skills, tools and support to be successful and not so dependent.</p>
<p>So to that end I would like to share with you the top 10 posts that users have found the most helpful to them. May you find them helpful and continue to prosper in 2010!</p>
<ol>
<li><a title="Free Shopping Feed Marketing for Online Stores" href="http://pro-webs.net/blog/2009/01/10/free-shopping-feed-marketing-for-online-stores/">Free Shopping Feed Marketing for Online Stores</a> &#8211; This post is about marketing your products using shopping feeds and contains a frequently updated list of portals and venues which are free to submit your feed to.</li>
<li><a title="Color Psychology for Ecommerce Design" href="http://pro-webs.net/blog/2008/06/28/color-psychology-ecommerce-design/">Color Psychology for Ecommerce Design</a> &#8211; Here is one of my favorite marketing subjects! The use and psychology behind web design. What emotions and actions do colors invoke and how can we use this to our advantage.</li>
<li><a title="Zen Cart SEO – 12 Steps to Success" href="http://pro-webs.net/blog/2009/09/10/zen-cart-seo-12-steps/">Zen Cart SEO – 12 Steps to Success</a> &#8211; This post was written specifically with all of the Zen Cart forum posts I answer in mind. It is rather a discipline than a tutorial, a list of the things you need to do to successfully run your online store.</li>
<li><a title="Ecommerce Checkout Suicide" href="http://pro-webs.net/blog/2009/08/26/ecommerce-checkout-suicide/">Ecommerce Checkout Suicide</a> &#8211; This page contains both secure and nonsecure items. Do you want to display the nonsecure items? How to identify and fix the most common and dreadful cause of checkout abandonment!</li>
<li><a title="5 Easy Things to Make Zen Cart Cook" href="http://pro-webs.net/blog/2009/03/17/5-easy-things-to-make-zen-cart-cook/">5 Easy Things to Make Zen Cart Cook</a> &#8211; 5 easy modifications that will make your Zen Cart faster and perform better!</li>
<li><a title="Yahoo Search Supports Google Base Formatting" href="http://pro-webs.net/blog/2009/07/01/yahoo-search-google-base/">Yahoo Search Supports Google Base Formatting</a> &#8211; How to use your Google Shopping/Base feed to submit your products to Yahoo Search Monkey enhanced shopping results&#8230; for free!</li>
<li><a title="Beating Your Links Down?" href="http://pro-webs.net/blog/2008/06/07/link-building-shop-owners/">Beating Your Links Down?</a> &#8211; Working hard on link building? Here is a comprehensive tutorial detailing the counter productive things you should avoid to make your links count the best!</li>
<li><a title="In order to show you the most relevant results, we have omitted some entries" href="http://pro-webs.net/blog/2008/06/19/duplicate-content-google/">In order to show you the most relevant results, we have omitted some entries</a> &#8211; How to identify, repair and prevent duplication content in your shop. There are in fact many different ways to end up with duplicate content… Here are some common ones we see in ecommerce.</li>
<li><a title="Where is My Site? Google Sandbox Filter" href="http://pro-webs.net/blog/2009/05/06/googles-sandbox/">Where is My Site? Google Sandbox Filter</a> &#8211; The phenomenon that people have claimed to observe is that Google temporarily reduces the page rank of new domains, placing them into what is referred to as its “sandbox”, in an effort to counter the ways that search engine optimizers attempt to manipulate Google’s page ranking to bring sites to the top, by creating lots of inbound links to a new web site from other web sites that they own before creating that web site.</li>
<li><a title="Shared Hosting &amp; Bad Neighbors" href="http://pro-webs.net/blog/2009/06/26/shared-hosting-bad-neighbors/">Shared Hosting &amp; Bad Neighbors</a> &#8211; Hosting is a very challenging subject for most shop owners. Sadly many attain less that acceptable hosting to run their businesses. This post covers the notable pitfalls of shared hosting from less than professional web hosts and the implications for your business.</li>
</ol>
<p>There is one more post, this one actually finished 11th, but is a VERY common question and great information as well.</p>
<ul>
<li><a title="Keywords in your URLs? Matt Says Yes" href="http://pro-webs.net/blog/2009/04/14/keywords-urls-matt-yes/">Keywords in your URLs? Matt Says Yes</a> &#8211; SEO urls, which is a misnomer for spam now is a pretty complicated subject that many shop owners do not understand and can be taken advantage of with. I also suggest you read this post, on our <a title="Keyword Weight in URLs" href="http://www.zencartmarketing.com/keyword-weight-in-urls/" target="_blank">marketing blog</a> regarding the weight given to keywords in different parts of your urls. Also, this post <a title="Have We Screwed Ourselves?" href="http://pro-webs.net/blog/2009/11/25/have-we-screwed-ourselves/">reveals what you may be missing by rewriting your urls</a> =-(</li>
</ul>
<p>For those that are interested here are some stats for PRO-Webs in 2009:</p>
<ul>
<li>36 New Zen Cart stores were built</li>
<li>89 Zen Cart site reports were completed</li>
<li>37 SEO My Zen Cart packages completed</li>
<li>106 Zen Carts hosted</li>
<li>154,319 unique visits including 18,598 to this blog</li>
<li>I have answered 1,802 posts on the Zen Cart forum and averaging 2.3 per day!</li>
</ul>
<p>We enjoy what we do for shop owners and look forward to serving you in 2010!</p>
<p><strong>Here&#8217;s wishing all of you a successful and prosperous new year!</strong></p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/ecommerce-for-all-best-of-2009','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/31/ecommerce-for-all-best-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Patent &#8211; Duplicate Document Detection</title>
		<link>http://pro-webs.net/blog/2009/12/16/google-patent-duplicate-document-detection/</link>
		<comments>http://pro-webs.net/blog/2009/12/16/google-patent-duplicate-document-detection/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 20:32:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Addresses]]></category>
		<category><![CDATA[Destination Url]]></category>
		<category><![CDATA[Document Detection]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[Embodiments]]></category>
		<category><![CDATA[Good Reason]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[New Patent]]></category>
		<category><![CDATA[Page Content]]></category>
		<category><![CDATA[Patent Details]]></category>
		<category><![CDATA[Redirect Url]]></category>
		<category><![CDATA[Searchers]]></category>
		<category><![CDATA[Source Urls]]></category>
		<category><![CDATA[Target Destination]]></category>
		<category><![CDATA[Us Patent Office]]></category>
		<category><![CDATA[Web Crawler]]></category>
		<category><![CDATA[Web Page Document]]></category>
		<category><![CDATA[Web Pages]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=793</guid>
		<description><![CDATA[12/1/2009 Google was granted a patent by the US Patent Office detailing how duplicate documents are detected in a web crawler system. This new patent details how Google detects and then filters or determines which documents are the "more important" version for the purpose of providing unique search results.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Fgoogle-patent-duplicate-document-detection%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Fgoogle-patent-duplicate-document-detection%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Google Patent   Duplicate Document Detection" alt=" Google Patent   Duplicate Document Detection" /><br />
			</a>
		</div>
<h2>Duplicate document detection in a web crawler system</h2>
<div id="attachment_796" class="wp-caption alignleft" style="width: 246px"><img class="size-full wp-image-796" title="duplicate-content" src="http://pro-webs.net/blog/wp-content/uploads/2009/12/duplicate-content.gif" alt="Is your content unique?" width="236" height="124" /><p class="wp-caption-text">Is your content unique?</p></div>
<p>12/1/2009 Google was granted a patent by the US Patent Office detailing how duplicate documents are detected in a web crawler system. This new <a title="Duplicate document detection in a web crawler system " href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;u=/netahtml/PTO/search-adv.htm&amp;r=1&amp;p=1&amp;f=G&amp;l=50&amp;d=PTXT&amp;S1=7,627,613.PN.&amp;OS=pn/7,627,613&amp;RS=PN/7,627,613" target="_blank">patent</a> details how Google detects and then filters or determines which documents are the &#8220;more important&#8221; version for the purpose of providing unique search results.</p>
<p>Most of the information we have had good reason to accept as true for some time, but detailing it in this manner can genuinely help webmasters to understand not only what duplicate content is, but how to create unique pages/content for searchers to find.</p>
<blockquote><p>Duplicate documents are documents that have substantially identical content, and in some embodiments wholly identical content, but different document addresses.</p></blockquote>
<p>The patent details 3 possible situations where duplicate content is detected and thus processed as such.</p>
<ol>
<li>Two documents, including any combination of web pages (documents) and temporary (302) redirect pages, are duplicate if they share the same page content, but have different URLs.</li>
<li>Two temporarily redirected pages are duplicate if they share the same target or destination URL, but have different source URLs.</li>
<li>A regular web page/document and a temporary redirect page are duplicate if the URL of the web page is the target/destination URL of the temporary redirect page or the content of the regular web page is the same as that of the temporarily redirected page.</li>
</ol>
<p>In some of these situations redirects are involved which are temporarily redirected pages such as a Meta refresh over 0 seconds, JavaScript redirects and 302 redirects. Permanently redirected pages are not associated in this manner for duplicate document detection because the web crawlers do not download the content of the redirecting page, only the target or destination page.</p>
<p><strong>How does Google detect duplicate content?</strong></p>
<p>Google simply compares the pages/documents to each other to determine duplicity. They can use a whole page or thumbprint so to speak, phrases and essentially any content the crawler can read. What was not clearly disclosed is the amount or percentage of duplicity which would then in fact cause a filtering action from Google with regard to the index.</p>
<p>Upon determining duplicity between to documents, Google then attempts to determine which document is most important. This decision is about importance, not PageRank, nor ownership. Once this decision has been made Google then proceeds to filter the duplicate page(s) from search results in order to provide searchers with unique and qualified search results.</p>
<p>There are many ways that shop owners create duplicate content. Many are easily managed and some are not. Doing everything in your power to prevent it is the best course of action, as there will inevitability be duplicity you cannot prevent.</p>
<p><strong>Some of the most common ways that shop owners duplicate their content:</strong></p>
<ul>
<li>Copying product descriptions from distributors or other indexed web pages</li>
<li>Lack of unique page specific content enough to make a page unique within a common site template</li>
<li>Posting articles or text from other websites</li>
<li>Not properly redirecting the canonical url to the non canonical (www or non-www)</li>
<li>Failing to add pages like the shopping cart page to the robots skip to prevent indexing</li>
<li>Not using <a title="Google Attacks Duplicate Content" href="http://pro-webs.net/blog/2009/10/16/google-tool-duplicate-content/">Google&#8217;s parameter handling</a> to exclude or ignore sorted page urls</li>
<li>Rewritten (SEO urls) which are not properly rewritten with a permanent or 301 redirect</li>
</ul>
<p>If you think about it, Google is not trying to penalize anyone, but rather attempting to help searchers find fresh, unique and qualified results. Last time I checked this is the goal of a search engine =-)</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/google-patent-duplicate-document-detection','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/16/google-patent-duplicate-document-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarter Searchers Use Longer Queries</title>
		<link>http://pro-webs.net/blog/2009/12/16/smarter-searchers-use-longer-queries/</link>
		<comments>http://pro-webs.net/blog/2009/12/16/smarter-searchers-use-longer-queries/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 06:26:33 +0000</pubDate>
		<dc:creator>Melanie</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Ecommerce Stores]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Information Seekers]]></category>
		<category><![CDATA[Proper Search]]></category>
		<category><![CDATA[Search Ability]]></category>
		<category><![CDATA[Search Rank]]></category>
		<category><![CDATA[Shoppers]]></category>
		<category><![CDATA[Target]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=787</guid>
		<description><![CDATA[The need for helpful, descriptive and natural text on your store's page cannot be understated. Your shoppers need this text to help them find you, identify your page as a good result and better navigate your site.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Fsmarter-searchers-use-longer-queries%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Fsmarter-searchers-use-longer-queries%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Smarter Searchers Use Longer Queries" alt=" Smarter Searchers Use Longer Queries" /><br />
			</a>
		</div>
<p>Everyday I preach the benefits of using natural text within your site&#8217;s pages. Aside from the fact that most shop owners will inevitably spam if they dwell to deeply on keywords, it really works. I can give you tons of examples why, but we will cover just a few metrics today.</p>
<p>First and foremost, using natural text helps to grab customers more and high school report researchers less. For example, I was speaking with a customer today who sells engraved silver and pewter gifts. We were making a plan of attack for next year. The primary concern for this plan is to better target his Jefferson cups. While he is on page one for Jefferson cups, he is number 10.</p>
<p>So if you search Google for Jefferson cups, you will see that these very historical cups have many informational pages indexed and presented for this query. My point is, that the search rank for Jefferson cups matters little as these are not shoppers&#8230;. So if I was looking to buy one of these I would and most other searchers would use longer and more targeted queries.</p>
<ul>
<li>Buy Jefferson Cup</li>
<li>Engraved Jefferson Cup</li>
<li>Jefferson cups for gifts</li>
<li>Pewter Jefferson cup</li>
</ul>
<p>These are just a few examples of how one may search when the target is a purchase and not just information searching.</p>
<p>These longtail searches are more easily converted and easily targeted by using the naturally related words associated with the products and services in the product&#8217;s page copy. Not spam, just high usability and proper search-ability.</p>
<p>Traffic is traffic you may say&#8230;. But it doesn&#8217;t make it true. Fact is that ecommerce stores are designed to sell, therefore attracting customers is clearly the first order of business. Most information seekers will not be converted in to a sale&#8230; They just found the wrong site for the information they were seeking&#8230; Additionally, the likelihood that they will return someday to purchase because they remembered the site is store address is slim to none.</p>
<p><strong>Why do you suppose users are searching with longer queries than say 5 years ago?</strong></p>
<p>It&#8217;s really not that complicated. The many millions of unsuccessful searches have trained searchers to use longer queries to better target their search results. This isn&#8217;t the only thing searchers have been trained to do either. Another huge change is that searchers will <span style="text-decoration: line-through;">read</span> scan the text at the top of the page&#8217;s main content container for about 15 seconds upon arriving on a site. Not images&#8230; Not videos&#8230;. TEXT.</p>
<p>Searchers do this for a very clear and understandable reason&#8230; They are trying to very quickly determine if this page is relative to their search. Makes perfect sense&#8230; who wants to spend 10 minutes on a page that isn&#8217;t what we were searching for?</p>
<p><strong>If I told you that less than 48% of all Google US searches were 2 words or less, would you believe me?</strong></p>
<p>It&#8217;s true, fact is that the majority of Google searchers use 3 words or more in their query. In fact I would bet anyone that repeat searches are double and about 80% or better.</p>
<div id="attachment_788" class="wp-caption aligncenter" style="width: 466px"><img class="size-full wp-image-788" title="long-search-queries" src="http://pro-webs.net/blog/wp-content/uploads/2009/12/long-search-queries.gif" alt="Longer Search Query User Data" width="456" height="331" /><p class="wp-caption-text">Longer Search Query User Data</p></div>
<p><strong>Source:   <a title="Hitwise" href="http://www.hitwise.com/us/press-center/press-releases/google-searches-nov-09/" target="_blank">Experian Hitwise</a></strong></p>
<p>The need for helpful, descriptive and natural text on your store&#8217;s page cannot be understated. Your shoppers need this text to help them find you, identify your page as a good result and better navigate your site.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/smarter-searchers-use-longer-queries','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/16/smarter-searchers-use-longer-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Zen Cart Report Purely Poultry</title>
		<link>http://pro-webs.net/blog/2009/12/16/free-zen-cart-report-purely-poultry/</link>
		<comments>http://pro-webs.net/blog/2009/12/16/free-zen-cart-report-purely-poultry/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 05:44:08 +0000</pubDate>
		<dc:creator>Melanie</dc:creator>
				<category><![CDATA[Public Site Reports]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=783</guid>
		<description><![CDATA[Our November 2009 free site report winner is Purely Poultry. We welcome you to read their report below and visit their site as well. Please show some respect and do not create a bunch of test accounts and havoc on their website while poking around. We do welcome you to provide constructive criticism and suggestions for them to improve their store and business online.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Ffree-zen-cart-report-purely-poultry%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F16%2Ffree-zen-cart-report-purely-poultry%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Free Zen Cart Report Purely Poultry" alt=" Free Zen Cart Report Purely Poultry" /><br />
			</a>
		</div>
<p>Our November 2009 free site report winner is <a title="Purely Poultry" href="http://www.purelypoultry.com/" target="_blank">Purely Poultry</a>. We welcome you to read their report below and visit their site as well. Please show some respect and do not create a bunch of test accounts and havoc on their website while poking around. We do welcome you to provide constructive criticism and suggestions for them to improve their store and business online.</p>
<p>Purely Poultry presents quite a unique online product, as a matter of fact this is one product line we have never worked with before. This fairly unique product line affords them an edge for rank, as the pool of fishes are few to compete with. Fixing some of the issues we found with the cart could clearly have very positive and fast results.</p>
<p>Below is a mildly edited copy of the Zen Cart site report we already provided to Purely Poultry. They have graciously agreed to allow us to publish this and share their issues. We thanks them for providing this medium to help other shop owners who may have similar issues and problems.</p>
<p><strong>Load Speed Main Page:</strong> 237.53 seconds at 28.8kbs. We would like to see this well under 50, but the ideal standard is 30 seconds @ 28.8kbs.</p>
<p>On the main page only 5 HTML errors were noted, this is not bad at all&#8230; But repairing these will increase the ability for their site to be effectively crawled by the search engines and additionally increase the usability of the website.</p>
<p><span style="font-size: xx-large;"><span style="font-size: x-large;"><span style="font-size: medium;"><span style="color: #0b5394;"><strong><span style="font-size: x-small;"><br />
</span></strong></span></span></span></span></p>
<table border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td width="10%"><strong>Line</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>37</td>
<td>Warning: &lt;img&gt; lacks &#8220;alt&#8221; attribute</td>
</tr>
<tr>
<td>134</td>
<td>Warning: &lt;table&gt; lacks &#8220;summary&#8221; attribute</td>
</tr>
<tr>
<td>150</td>
<td>Warning: &lt;script&gt; escaping malformed URI reference</td>
</tr>
<tr>
<td>206</td>
<td>Warning: &lt;img&gt; escaping malformed URI reference</td>
</tr>
<tr>
<td>266</td>
<td>Warning: &lt;img&gt; escaping malformed URI reference</td>
</tr>
</tbody>
</table>
<p><strong>Title: </strong>Main page title is 14 characters long and the suggested search engine friendly limit is 65. Your title is 100% relevant to your main page content, but lacks good information relevant to the page. This tag should contain a short (65 characters or less including spaces) description of what this site is about.</p>
<p><strong>Current Title:</strong> Purely Poultry</p>
<p><strong>Description: </strong>Main page description contains 113 characters and is 100% relevant to the main page content.</p>
<p>This description should contain text under 250 characters in natural language to prompt searchers to click through to your website. The Meta description is NOT used for the purpose of ranking your site&#8217;s pages, but rather as a means to elicit a click through from searchers. Note that your description is somewhat spammy as it is essentially a keyword list. Additionally, this tag should be a minimum of 100 characters for Google not to give a short description error in webmasters tools.</p>
<p><strong>Current Description:</strong> Purely Poultry : &#8211; Pheasants Chickens Bantams Guinea Keets Books Turkey Poults Ducklings Goslings Quail Peafowl</p>
<p><strong>Canonical Domain url Check:</strong><br />
Your site is returning a proper canonical 301 redirect from www to non-www or vice verse. Google currently has cached versions of both.</p>
<p>This means that sitewide canonical duplication exists as both the non-www and the www versions of the urls work. Duplication of this nature can cause many rank issues and even split PageRank between the 2 different canonical versions.</p>
<p><strong>Google indicates that pages have been omitted from regular search results for being to similar or duplicate in nature.</strong></p>
<p>Total indexed in Google.com: 624</p>
<p>Pages omitted from Google&#8217;s Main Index: 129</p>
<p>Pages within the Google&#8217;s regular search index: 495</p>
<p>*Your site has 718 pages indexed in Yahoo search.</p>
<p>*Your site has 15 indexed pages in MSN/Bing.</p>
<p>*You have 1 page indexed in Ask.com&#8217;s search index</p>
<p>Sitemap and Robots.txt:</p>
<p>A valid search engine sitemap.xml for your site was not found. This document, which is a specific sitemap for search engines, is designed to help search engine spiders locate and crawl your content better and therefore should NOT be styled for human visitors.</p>
<p>A valid, but miss-configured robots.txt for your site was found. A robots.txt is a search engine universal markup to prevent well behaved bots from crawling pages which have content of no value to the searchable index, are duplicate or blocked from indexing.</p>
<p>This has been partially corrected.</p>
<p><strong>Backlinks:</strong> Your entire domain currently has 647 total back link(s) from domains other than your own.</p>
<p>This isn&#8217;t bad at all, keep up the good work!</p>
<p><strong>PageRank: </strong>Your main page has a toolbar Page Rank 4 and there is no issue with your PageRank dispersion with regard to canonical duplication.</p>
<p><strong>Sites on IP:</strong> Your site&#8217;s IP is 000.000.000 and there are a total of 8 domains hosted on that IP, none of which appear to be flagged as &#8220;bad neighbors&#8221; or hosting questionable content.</p>
<p><strong>Spam and Hidden Text:</strong> Upon scanning your site hidden text was found, that appears to be related to your CSS menu across the top of your page.</p>
<p><em>Invisible text found. Method(s): CSS &#8216;display&#8217; property set to &#8216;none&#8217;.<br />
Invisibility purpose: Impossible to say.<br />
Text: New Products</em></p>
<p><strong>Miscellaneous:</strong></p>
<ul>
<li>Your site appears to have what we call the &#8220;nofollow bug&#8221;. While this is a Zen Cart<br />
bug, a fix has been available for quite some time. Essentially every page on your<br />
site currently has a &lt;meta name=&#8221;robots&#8221; content=&#8221;noindex, nofollow&#8221; /&gt; tag<br />
with in the head element that tells the search engines not to follow or index links<br />
found within that page.</li>
<li>You should nofollow ancillary page links, or advertising links within your site<br />
(once the bug fix has been applied) to stop the flow of PageRank and prevent the<br />
crawlers from crawling these pages unnecessarily wasting precious crawl time.</li>
<li>We would advise you to place a phone number in a prominent location through out<br />
your site. eg: in the header. To give troubled customers a sense of security, and a<br />
means of contacting some one should an issue arise. Without it shoppers tend to<br />
abandon the cart sales when they encounter any issues what so ever. They will not<br />
go looking for a contact number! Remember, not every search visitors lands on your<br />
main page, most land on interior pages.</li>
<li>The use of mailto links or valid email addresses even in a textual format, like on<br />
your &#8220;Privacy Notice&#8221; page will promote spam, as these are crawled and read by<br />
spiders for the purpose of creating email list for sale to spammers.</li>
<li>Your &#8220;Conditions of Use&#8221; is completely blank.</li>
<li>On your privacy page under &#8220;How do we protect your information?&#8221; the last line<br />
of the second paragraph reads &#8220;and are required toï¿½keep the information<br />
confidential.&#8221;</li>
<li>You have unsecured elements on your secured SSL pages causing a broken lock.<br />
This is the number 1 cause of checkout abandonment.</li>
<li>Your main page and category pages have very little textual content in order to rank<br />
with. You will find it very difficult to rank well in the major search engines with out<br />
it. Additionally pages like http://www.purelypoultry.com/bantams-c-155.html with<br />
very little text and an overwhelming amount of links lacking textual support may be<br />
viewed negatively by Google.</li>
<li>It is a very large liability to have &#8220;Subscribe to Our Newsletter&#8221; checked by default<br />
on account creation, as shoppers will inadvertently get your newsletter and report<br />
you as spam. This is a FTC spam violation and has financial and business related<br />
liability in the US and many other countries.</li>
<li>Your shopping cart pages still shows part of the default Zen Cart default text<br />
(defined in includes/languages/english/shopping_cart.php).</li>
<li>Your &#8220;Checkout Success&#8221; page contains the following text &#8220;This file is located in<br />
/languages/english/html_includes/classic/<br />
NOTE: Always backup the files in /languages/english/html_includes/<br />
your_template&#8221;</li>
<li>You would greatly benefit by reducing the steps involved in the checkout process.</li>
<li>Removal of the side bars during the checkout process will reduce customer<br />
distraction as well as checkout abandonment. Once the customer has committed to<br />
the checkout process you should avoid giving them opportunities to click away.</li>
<li>Your checkout pages are no secured. This is a PCI compliance violation and your<br />
company can be fined by the credit card companies.</li>
</ul>
<p>I want to personally thank Purely Poultry for allowing us to audit and blog their site report results. I invite you all to comment any additional factors and suggestions to help them improve their Zen cart and business.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/free-zen-cart-report-purely-poultry','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/16/free-zen-cart-report-purely-poultry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zen Cart robots.txt Tutorial</title>
		<link>http://pro-webs.net/blog/2009/12/14/zen-cart-robots-txt-tutorial/</link>
		<comments>http://pro-webs.net/blog/2009/12/14/zen-cart-robots-txt-tutorial/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:12:02 +0000</pubDate>
		<dc:creator>Melanie</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Crawler]]></category>
		<category><![CDATA[Exclusion Protocol]]></category>
		<category><![CDATA[Robots Exclusion Protocol]]></category>
		<category><![CDATA[Robots Txt]]></category>
		<category><![CDATA[Search Engines Results]]></category>
		<category><![CDATA[Syntax]]></category>
		<category><![CDATA[Uses Of Robots]]></category>
		<category><![CDATA[Web Robots]]></category>
		<category><![CDATA[Web Spider]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=764</guid>
		<description><![CDATA[I am going to post what some may consider a generic/default robots.txt for standard Zen Carts installed in to the root of your domain. I strongly suggest you read and learn to properly use the robots protocol and directives instead. I will take no responsibility for this, as it is a suggestion and you have been warned that every Zen Cart is different. Additionally, this WILL NOT work at all if you have rewritten your page's urls.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F14%2Fzen-cart-robots-txt-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F14%2Fzen-cart-robots-txt-tutorial%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Zen Cart robots.txt Tutorial" alt=" Zen Cart robots.txt Tutorial" /><br />
			</a>
		</div>
<p><strong> </strong></p>
<div id="attachment_771" class="wp-caption alignleft" style="width: 145px"><strong> </strong><strong><img class="size-full wp-image-771 " title="robots-txt" src="http://pro-webs.net/blog/wp-content/uploads/2009/12/robots-txt.gif" alt="robots.txt for Zen Cart" width="135" height="143" /></strong><p class="wp-caption-text">Zen Cart robots.txt</p></div>
<p><strong>Is there a robots.txt with Zen Cart?</strong></p>
<p><strong>Do you have a default robots.txt?</strong></p>
<p>The answer is no&#8230; But here is why.  Every cart is different, the very nature of Zen Cart&#8217;s flexibility prevents the ability to create a robots.txt that can be applied to even most carts. Things like easy pages and additional pages and installation paths make the process basically a custom procedure for each and every shop. The robots protocol isn&#8217;t really difficult, as a matter fact it&#8217;s quite logical once you get to know it a bit.</p>
<h2><strong>First, lets cover the basic function and ability of a robots.txt. </strong></h2>
<p>A robots.txt is a text document called robots.txt (exactly), which resides in the root of the domain. You can actually hide your robots.txt from basic Internet users by using a server side application such as Apache to deliver only qualified user agents access to the location and name of the robots directive on your site. This however, is really more work than necessary as password protect directories, such as login admin areas cannot be indexed unless there is a crawl able link to them somewhere.</p>
<p>robots.txt is an exclusion protocol for well behaved web spider or robots to access in order to receive directives regarding where they may and may not crawl your site&#8217;s pages. Blocking a page(s) from crawl in robots.txt WILL NOT prevent them from being indexed or referenced in the search engines results&#8230;. It only blocks them from being crawled.</p>
<p>I will cover the most common uses of robots.txt and their directives below for your Zen Cart.</p>
<p>First to cover is that there is NO Allow directive in robots.txt, this is in fact the default behavior&#8230; So only Disallow is valid. So if I have a page foo.html which I wish not to be crawled by any behaved crawlers, then the syntax will be as follows:</p>
<p><em>User-agent: *<br />
Disallow: /foo.html</em></p>
<p>If I wish that a specific crawler, such as GoogleBot not crawl this page, then the syntax is as follows:</p>
<p><em>User-agent: Googlebot<br />
Disallow: /foo.html</em></p>
<p>You can view a  list of crawlers in the robots database <a title="Robots Databse of Crawlers" href="http://www.robotstxt.org/db.html" target="_blank">here</a>. But for reference her are your most common ones.</p>
<ul>
<li><a title="GoogleBot crawler info" href="http://www.google.com/support/webmasters/bin/answer.py?answer=80553" target="_blank">Google Search is <strong>Googlebot</strong></a></li>
<li><a title="Teoma Crawler" href="http://about.ask.com/en/docs/about/webmasters.shtml" target="_blank">Ask.com is <strong>Teoma</strong></a></li>
<li><a title="Bing Crawler Info" href="http://help.live.com/help.aspx?mkt=en-us&amp;project=wl_webmasters" target="_blank">Bing is <strong>MSNBot</strong></a></li>
<li><a title="Slurp Crawler information" href="http://help.yahoo.com/l/us/yahoo/search/webcrawler/" target="_blank">Yahoo is <strong>Slurp</strong></a></li>
</ul>
<p><strong>So we know how to block a single page from crawl, how about a page in a directory&#8230;  But not the whole directory.</strong></p>
<p><em>User-agent: *</em><br />
<em>Disallow: /folder/foo.html</em></p>
<p><strong>The index page within a directory only.</strong></p>
<p><em>User-agent: *</em><br />
<em>Disallow: /folder/</em></p>
<p><strong>All pages in the directory blocked from crawl.</strong></p>
<p><em>User-agent: *</em><br />
<em>Disallow: /folder</em></p>
<p>All pages within a directory can also be accomplished with a wildcard. However, not all crawlers support wildcards. Google does, Yahoo does&#8230; Ask.com does not and although Bing claims to have partial support for wildcards&#8230;. They don&#8217;t. So we must first name a support crawler to apply the directive with a wildcard.</p>
<p><em>User-agent: Googlebot<br />
Disallow: /folder/*</em></p>
<p>The wildcard give us some greater control and ability with regard to robots.txt directives&#8230; Especially on our dynamically generated Zen Cart pages. The example below blocks a duplicate page from crawling in your Zen Cart shop.</p>
<p><em>User-agent: Googlebot<br />
Disallow: /*&amp;alpha_filter_id=*</em></p>
<p>This is to block a URI created by the alpha sorter in your product index pages. Essentially, every URL containing the parameter<em> &amp;alpha_filter_id=</em> is blocked from crawl for Googlebot.</p>
<p>Lastly, the <a title="Universal Sitemap Protocol" href="http://www.seocog.com/universal-sitemap-protocol/" target="_blank">Universal Sitemap Protocol</a> is supported by all major search engines and should be included. This is simply the correct way to let the search engines know where your search engine sitemap resides.</p>
<p><em>Sitemap: http://pro-webs.net/sitemap.xml</em></p>
<p>Against my better judgment I am going to post what some may consider a generic/default robots.txt for standard Zen Carts installed in to the root of your domain. I strongly suggest you read and learn to properly use the robots protocol and directives instead. I will take no responsibility for this, as it is a suggestion and you have been warned that every Zen Cart is different. Additionally, this WILL NOT work at all if you have rewritten your page&#8217;s urls.</p>
<blockquote><p># Robots.txt file for http://www.domain.com/</p>
<p>Sitemap: http://www.domain.com/sitemap.xml</p>
<p>User-agent: Googlebot<br />
Disallow: /*&amp;action=notify$<br />
Disallow: /*&amp;number_of_uploads=0&amp;action=notify<br />
Disallow: /index.php?main_page=discount_coupon<br />
Disallow: /index.php?main_page=checkout_shipping<br />
Disallow: /index.php?main_page=shippinginfo<br />
Disallow: /index.php?main_page=privacy<br />
Disallow: /index.php?main_page=conditions<br />
Disallow: /index.php?main_page=contact_us<br />
Disallow: /index.php?main_page=advanced_search<br />
Disallow: /index.php?main_page=login<br />
Disallow: /index.php?main_page=unsubscribe<br />
Disallow: /index.php?main_page=shopping_cart<br />
Disallow: /index.php?main_page=product_reviews_write&amp;cPath=*<br />
Disallow: /index.php?main_page=tell_a_friend&amp;products_id=*<br />
Disallow: /index.php?main_page=product_reviews_write&amp;products_id=*<br />
Disallow: /index.php?main_page=popup_shipping_estimator<br />
Disallow: /index.php?main_page=account<br />
Disallow: /index.php?main_page=password_forgotten<br />
Disallow: /index.php?main_page=checkout_shipping_address<br />
Disallow: /index.php?main_page=logoff<br />
Disallow: /index.php?main_page=gv_faq<br />
Disallow: /gv_faq.html?faq_item=*<br />
Disallow: /*&amp;sort=*<br />
Disallow: /*alpha_filter_id=*<br />
Disallow: /*&amp;disp_order=*</p>
<p>User-agent: Slurp<br />
Disallow: /*&amp;action=notify$<br />
Disallow: /*&amp;number_of_uploads=0&amp;action=notify<br />
Disallow: /index.php?main_page=discount_coupon<br />
Disallow: /index.php?main_page=checkout_shipping<br />
Disallow: /index.php?main_page=shippinginfo<br />
Disallow: /index.php?main_page=privacy<br />
Disallow: /index.php?main_page=conditions<br />
Disallow: /index.php?main_page=contact_us<br />
Disallow: /index.php?main_page=advanced_search<br />
Disallow: /index.php?main_page=login<br />
Disallow: /index.php?main_page=unsubscribe<br />
Disallow: /index.php?main_page=shopping_cart<br />
Disallow: /index.php?main_page=product_reviews_write&amp;cPath=*<br />
Disallow: /index.php?main_page=tell_a_friend&amp;products_id=*<br />
Disallow: /index.php?main_page=product_reviews_write&amp;products_id=*<br />
Disallow: /index.php?main_page=popup_shipping_estimator<br />
Disallow: /index.php?main_page=account<br />
Disallow: /index.php?main_page=password_forgotten<br />
Disallow: /index.php?main_page=checkout_shipping_address<br />
Disallow: /index.php?main_page=logoff<br />
Disallow: /index.php?main_page=gv_faq<br />
Disallow: /gv_faq.html?faq_item=*<br />
Disallow: /*&amp;sort=*<br />
Disallow: /*alpha_filter_id=*<br />
Disallow: /*&amp;disp_order=*</p>
<p>User-agent: *<br />
Disallow: /index.php?main_page=faqs_new<br />
Disallow: /index.php?main_page=discount_coupon<br />
Disallow: /index.php?main_page=checkout_shipping<br />
Disallow: /index.php?main_page=shippinginfo<br />
Disallow: /index.php?main_page=privacy<br />
Disallow: /index.php?main_page=conditions<br />
Disallow: /index.php?main_page=contact_us<br />
Disallow: /index.php?main_page=advanced_search<br />
Disallow: /index.php?main_page=login<br />
Disallow: /index.php?main_page=unsubscribe<br />
Disallow: /index.php?main_page=shopping_cart<br />
Disallow: /index.php?main_page=popup_shipping_estimator<br />
Disallow: /index.php?main_page=account<br />
Disallow: /index.php?main_page=password_forgotten<br />
Disallow: /index.php?main_page=checkout_shipping_address<br />
Disallow: /index.php?main_page=logoff<br />
Disallow: /index.php?main_page=gv_faq<br />
Disallow: /gv_faq.html?faq_item=1<br />
Disallow: /gv_faq.html?faq_item=2<br />
Disallow: /gv_faq.html?faq_item=3<br />
Disallow: /gv_faq.html?faq_item=4<br />
Disallow: /gv_faq.html?faq_item=5</p></blockquote>
<p>Once again, every Zen Cart has other pages that should be blocked from crawl, and many have pages within these blocked pages that should be allowed. This is best used as a guide, once you have learned to use the <a title="Robots Exclusion Protocol" href="http://www.robotstxt.org/robotstxt.html" target="_blank">Robots Exclusion Protocol</a> correctly.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/zen-cart-robots-txt-tutorial','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/14/zen-cart-robots-txt-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Caffeine &#8211; What to Expect</title>
		<link>http://pro-webs.net/blog/2009/12/08/google-caffeine-what-to-expect/</link>
		<comments>http://pro-webs.net/blog/2009/12/08/google-caffeine-what-to-expect/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 23:27:17 +0000</pubDate>
		<dc:creator>Melanie</dc:creator>
				<category><![CDATA[E-Commerce SEO]]></category>
		<category><![CDATA[Caffeine]]></category>
		<category><![CDATA[Freshness]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Caffeine]]></category>
		<category><![CDATA[Launch]]></category>
		<category><![CDATA[Quality Metrics]]></category>
		<category><![CDATA[Quality Search Engine]]></category>
		<category><![CDATA[Search Google]]></category>
		<category><![CDATA[Search Platform]]></category>
		<category><![CDATA[Web Search Engine]]></category>

		<guid isPermaLink="false">http://pro-webs.net/blog/?p=758</guid>
		<description><![CDATA[Google Caffeine is essentially Google's new, upgraded search engine. While Google has said the official launch of the new search will not be made until after the holidays, it's actually live in a few data centers already.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F08%2Fgoogle-caffeine-what-to-expect%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpro-webs.net%2Fblog%2F2009%2F12%2F08%2Fgoogle-caffeine-what-to-expect%2F&amp;source=prowebs&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Google Caffeine   What to Expect" alt=" Google Caffeine   What to Expect" /><br />
			</a>
		</div>
<div id="attachment_759" class="wp-caption alignleft" style="width: 191px"><img class="size-full wp-image-759" title="Google-Caffeine" src="http://pro-webs.net/blog/wp-content/uploads/2009/12/Google-Caffeine.gif" alt="Google Caffeine" width="181" height="87" /><p class="wp-caption-text">Google Caffeine</p></div>
<p>Google Caffeine is essentially Google&#8217;s new, upgraded search engine. While Google has said the official launch of the new search will not be made until after the holidays, it&#8217;s actually live in a few data centers already.</p>
<p><a title="Google Caffeine" href="http://pro-webs.net/blog/2009/08/11/google-search-future-results-preview/" target="_self">Google announced the new search platform development</a> back in August of this year (2009) and has provided us a cool sandbox to test results in. While the sandbox is no longer available, we can tell you that for *most the ranking changes will be mild. I would like to, however, discuss the expected ranking metrics that will likely be changed or tweaked when the the Caffeine update goes live.</p>
<p><strong>Back in August Google had the following to say regarding the needs of a quality search engine.</strong></p>
<blockquote><p>To build a great web search engine, you need to:</p>
<ol>
<li>Crawl a large chunk of the web.</li>
<li>Index the resulting pages and compute how reputable those pages are.</li>
</ol>
<li>Rank and return the most relevant pages for users&#8217; queries as quickly as possible.</li>
</blockquote>
<p><strong>So what can you expect?</strong></p>
<p>We think you can expect Google to really go after website quality metrics such as, speed, broken links, navigation and content. This will likely have a far greater impact on rank that in the past.</p>
<p>We also believe Google will add even more rank consideration to the signs of regularly maintained websites. We tell customers that Google likes to know the lights are on AND someone is home. The freshness and quality of content has been hugely important this year and we believe this will not only continue&#8230; But become even more important with Caffeine.</p>
<p>You can expect Google to continue to show strong distaste for paid and reciprocal links and can add linking out to bad neighborhood and spammy websites to boot. Certainly you have little or no control over who links to you, but you *should have complete control over who you link to. This is just another responsibility factor&#8230;. Many of the noted items that we feel are being weighted better center around professionalism, maintenance and effort. These are all things you should already be doing, this is your business&#8230; remember?</p>
<p>Spam. Google has consistently demonstrated that spam will not be tolerated. Things like hidden text, unnatural text, pumped up keyword density and comma separated lists are not going to be tolerated. We have already seen Google moving quickly and efficiently on these <a title="Google Quality" href="http://pro-webs.net/blog/2009/11/16/google-quality-removal-hidden-text/">spam and quality issues</a> over the last 4 months&#8230; Do not make this mistake, the cost can be more than your business can afford.</p>
<p>I think you can expect to see some very long time huge ranking factors fall away from the added weight they currently carry. Metrics like the age of the website will still be important, but not enough to maintain rank as they have been in the past. Those old, unmaintained authority type websites will begin to topple, making way for fresh and maintained content from any age website.</p>
<p>Shoot me now&#8230; But I think you will see Google taking a much deeper look at the type and quality of backlinks, as opposed to a number of backlinks or inventory type attitude. So links from Social media sources, which are considered highly fresh and indicate activity will carry more weight that they currently do. I think additionally, links from seed sites, which are ranking well and relevant will carry even more weight than ever before.</p>
<p>The way i see this, is that Google is doing its job and delivering the best search experience to their users they can. As a company they have consistently made advances and changes to better their products and services&#8230; I think you should understand, they expect the same from you. Remember, being ranked and indexed by Google is NOT your right&#8230; You have no rights, it is rather a privilege by contrast.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://pro-webs.net/blog/google-caffeine-what-to-expect','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://pro-webs.net/blog/2009/12/08/google-caffeine-what-to-expect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.053 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-14 22:30:09 -->
