<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Unofficial AdSense Blog</title>
	<atom:link href="http://www.memwg.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.memwg.com</link>
	<description>Eric Giguere&#039;s AdSense Tips</description>
	<lastBuildDate>Fri, 16 Mar 2012 06:55:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Google&#8217;s Free SEO Guide</title>
		<link>http://www.memwg.com/free-google-seo-guide/</link>
		<comments>http://www.memwg.com/free-google-seo-guide/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 17:02:19 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3620</guid>
		<description><![CDATA[&#1061;&#1091;&#1076;&#1086;&#1078;&#1085;&#1080;&#1082;&#1041;&#1086;&#1075;&#1086;&#1088;&#1086;&#1076;&#1080;&#1094;&#1072;If you&#8217;re new to running a website, you might find the Google Search Engine Optimization Starter Guide very interesting and useful. It&#8217;s a 32-page document chock full of good information and it&#8217;s completely free. Just click the link above to download it. It&#8217;s also available in a wide variety of non-English languages.]]></description>
			<content:encoded><![CDATA[<p><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://ikoni.eu/">&#1061;&#1091;&#1076;&#1086;&#1078;&#1085;&#1080;&#1082;</a></font><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://xn--h1aafme.net/%E8%EA%EE%ED%EE%EF%E8%F1">&#1041;&#1086;&#1075;&#1086;&#1088;&#1086;&#1076;&#1080;&#1094;&#1072;</a></font>If you&#8217;re new to running a website, you might find the <a target="_blank" href="http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf">Google Search Engine Optimization Starter Guide</a> very interesting and useful. It&#8217;s a 32-page document chock full of good information and it&#8217;s completely free. Just click the link above to download it. It&#8217;s also available in <a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html">a wide variety of non-English languages</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/free-google-seo-guide/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Find a Hacked WordPress Plugin</title>
		<link>http://www.memwg.com/how-to-find-a-hacked-wordpress-plugin/</link>
		<comments>http://www.memwg.com/how-to-find-a-hacked-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 14:55:38 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3605</guid>
		<description><![CDATA[When your WordPress blog suddenly starts displaying ads for various pharmaceuticals, chances are good that the site&#8217;s been hacked. A quick check using the &#8220;View Source&#8221; option on your favorite browser will probably reveal that a large list of links to dubious sites has been inserted somewhere into the HTML generated by WordPress, probably wrapped [...]]]></description>
			<content:encoded><![CDATA[<p>When your WordPress blog suddenly starts displaying ads for various pharmaceuticals, chances are good that the site&#8217;s been hacked. A quick check using the &#8220;View Source&#8221; option on your favorite browser will probably reveal that a large list of links to dubious sites has been inserted somewhere into the HTML generated by WordPress, probably wrapped in a &lt;div&gt; tag that shifts it off the displayable area of the screen. This lets Google and other search engines see the links but ensures that the viewers of the site don&#8217;t &mdash; this kind of hacking is done specifically to get some link juice flowing to those dubious sites.</p>
<p>If you have a pre-hacked backup of your system, the easiest fix is to revert to that backup. But that&#8217;s not always an option. At this point you&#8217;ll need to start looking at the PHP files that run your WordPress blog, looking for hacked files. (If you&#8217;re not techie, this is the time to engage the help of one of your techie friends.)</p>
<h2>Check the Theme</h2>
<p>Start by looking at the files included with your current WordPress theme. Hacking the <tt>footer.php</tt> file is a favorite option, for example, or the <tt>sidebar.php</tt>. You can quickly look through these files directly from the WordPress dashboard using the Editor option under Appearance.</p>
<h2>Not There? Check the Plugins</h2>
<p>If you can&#8217;t find anything in the theme, it&#8217;s probably a problem with a plugin. WordPress has a nice extension mechanism that lets plugins add content directly to the generated HTML. Chances are good that one of your plugins has been hacked and is injecting its links via one of these &#8220;hooks&#8221;.</p>
<p>Grab a copy of the <tt>wp-includes/plugin.php</tt> file from your site and stash it somewhere safe as a backup. Then make a second copy. Now open that copy with your favorite text editor and look for a PHP function called add_action that looks like this:</p>
<pre style="font-size: 80%;">
function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
	return add_filter($tag, $function_to_add, $priority, $accepted_args);
}
</pre>
<p>Insert three lines so it looks like this:</p>
<pre style="font-size: 80%;">
function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
      echo "\n<!-- add_action\nAdding " . $function_to_add . "\n";
      debug_print_backtrace();
      echo "-->\n";
      return add_filter($tag, $function_to_add, $priority, $accepted_args);
}
</pre>
<p>Save the changes and upload the modified file to your blog, overwriting the existing plugin.php. Now reload one of the pages in your browser and view the source to the page. You&#8217;ll see a bunch of HTML comments inserted into the generated HTML, like so:</p>
<pre style="font-size: 60%;">
&lt;!-- add_action
Adding akismet_cron_recheck
#0  add_action(akismet_schedule_cron_recheck, akismet_cron_recheck) called at [/home/memwg/public_html/wp-content/plugins/akismet/akismet.php:495]
#1  include_once(/home/memwg/public_html/wp-content/plugins/akismet/akismet.php) called at [/home/memwg/public_html/wp-settings.php:190]
#2  require_once(/home/memwg/public_html/wp-settings.php) called at [/home/memwg/public_html/wp-config.php:77]
#3  require_once(/home/memwg/public_html/wp-config.php) called at [/home/memwg/public_html/wp-load.php:30]
#4  require_once(/home/memwg/public_html/wp-load.php) called at [/home/memwg/public_html/wp-blog-header.php:12]
#5  require(/home/memwg/public_html/wp-blog-header.php) called at [/home/memwg/public_html/index.php:17]
--&gt;
</pre>
<p>This shows you exactly who is adding a specific hook into the system. The example above shows the Akismet plugin adding a hook. It&#8217;s probably OK. There are a lot of hooks that get added, so it may take a while to find the offending plugin. You&#8217;re looking for something suspicious like this:</p>
<pre style="font-size: 60%;">
&lt;!-- add_action
Adding echo_links
#0  add_action(wp_footer, echo_links) called at [/home/memwg/public_html/wp-content/plugins/duplicate-content-cure/duplicate-content-cure.php(79) : runtime-created function:402]
#1  __lambda_func() called at [/home/memwg/public_html/wp-content/plugins/duplicate-content-cure/duplicate-content-cure.php:80]
#2  include_once(/home/memwg/public_html/wp-content/plugins/duplicate-content-cure/duplicate-content-cure.php) called at [/home/memwg/public_html/wp-settings.php:190]
#3  require_once(/home/memwg/public_html/wp-settings.php) called at [/home/memwg/public_html/wp-config.php:77]
#4  require_once(/home/memwg/public_html/wp-config.php) called at [/home/memwg/public_html/wp-load.php:30]
#5  require_once(/home/memwg/public_html/wp-load.php) called at [/home/memwg/public_html/wp-blog-header.php:12]
#6  require(/home/memwg/public_html/wp-blog-header.php) called at [/home/memwg/public_html/index.php:17]
--&gt;
</pre>
<p>What&#8217;s suspicious about this? First of all, the name of the hook is &#8220;echo_links&#8221;. Second, it&#8217;s coming from the Duplicate Content Cure plugin. Third, it&#8217;s a &#8220;runtime-created function&#8221;, which is definitely unusual. So it&#8217;s worth a look. </p>
<p>Luckily, the backtrace dump above &mdash; the list of all files and functions that were called by PHP in order to add the hook &mdash; points me to the file <tt>duplicate-content-cure.php</tt> on line 80.</p>
<p>To quickly see if this is the culprit, restore the <tt>plugin.php</tt> to its original state (upload the original you had stashed away somewhere safe) and then disable the plugin in question from the WordPress dashboard and see if the offending content disappears from your site.</p>
<h2>Secure Your Site</h2>
<p>Once you&#8217;ve found the bad plugin, delete it from your site. You may want to install a replacement version of the plugin or find an alternative plugin with similar functionality. Only install plugins (and themes) from sites you trust.</p>
<p>After cleaning your site, be sure to <a href="http://codex.wordpress.org/Hardening_WordPress">harden your WordPress installation</a> in order to prevent this kind of hacking from occurring in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/how-to-find-a-hacked-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Changes Coming&#8230;</title>
		<link>http://www.memwg.com/changes-coming/</link>
		<comments>http://www.memwg.com/changes-coming/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 02:37:02 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3580</guid>
		<description><![CDATA[Over the next few days this site will be in flux&#8230; new title, new theme, new focus. Things may be broken on occasion while I fix things up. Stay tuned!]]></description>
			<content:encoded><![CDATA[<p>Over the next few days this site will be in flux&#8230; new title, new theme, new focus. Things may be broken on occasion while I fix things up. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/changes-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware: Affiliate Marketing Can Jeopardize Your AdWords Account</title>
		<link>http://www.memwg.com/affiliate-marketing-can-jeopardize-your-adwords-account/</link>
		<comments>http://www.memwg.com/affiliate-marketing-can-jeopardize-your-adwords-account/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 16:08:12 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[AdWords]]></category>
		<category><![CDATA[affiliate marketing]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3564</guid>
		<description><![CDATA[As I mentioned in the last post, my AdWords account has been &#8220;permanently suspended&#8221; for landing page and policy violations. Given that I haven&#8217;t actually advertised anything for over 6 months, I was surprised by this. Why would an inactive account be banned? I sent in the question to Google (via the AdWords contact form) [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in the last post, my AdWords account has been &#8220;permanently suspended&#8221; for landing page and policy violations. Given that I haven&#8217;t actually advertised anything for over 6 months, I was surprised by this. Why would an inactive account be banned? I sent in the question to Google (via the AdWords contact form) and eventually got this reply back:</p>
<blockquote><p>Thank you for your email. Your site &#8216;burnthefat.com&#8217; has been flagged for Unacceptable Business Practices and was consequently disabled. Because this is considered as a serious  violation, your Google AdWords account has been suspended. As a result, your ads will no longer run through the Google AdWords system and that any newly created accounts may be subject to the same suspension.</p></blockquote>
<p>What struck me about this is that they&#8217;re complaining about a site that I promoted (unsuccessfully) as an affiliate in the past. I don&#8217;t own burnthefat.com. It&#8217;s the site for <a href="http://egiguere.burnthefat.hop.clickbank.net">Burn the Fat, Feed the Muscle</a>, one of the most (and maybe only) legitimate weight-loss programs available on ClickBank. There are a lot of sketchy things for sale on ClickBank, but I don&#8217;t think this is one of them. That said, I wasn&#8217;t successful promoting it &mdash; weight loss is a very competitive market to break into.</p>
<p>I&#8217;m not sure what BurnTheFat.com has done to get itself flagged for &#8220;Unacceptable Business Practices&#8221;, but apparently I&#8217;m collateral damage now. Looking through my AdWords account, I can&#8217;t see anything wrong with the ads I placed, which were all similar to these:</p>
<ul>
<li><b>Burn The Fat</b><br />
Most Powerful Fat Loss System<br />
- Official Site<br />
BurnTheFat.com</li>
<li><b>Burn The Fat</b><br />
Feed The Muscle!<br />
- Official Site<br />
BurnTheFat.com</li>
</ul>
<p>These ads are nothing special (no Cleos for me!) but I don&#8217;t think they&#8217;re deceitful. I was doing simple direct linking.</p>
<p>Later in the email they said this:</p>
<blockquote><p>In a review of your account history, we found at least one submitted site that violated our Advertising Policies. Although you may have removed these sites since our latest review, advertisers that have a history of promoting these types of sites are still subject to account-level suspension.</p></blockquote>
<p>Again, I&#8217;m surprised that burnthefat.com was the trigger and not some of the other ClickBank sites I&#8217;ve promoted. Very odd, I wonder what they did? A quick look through the Warrior Forum shows that <a href="http://www.warriorforum.com/adsense-ppc-seo-discussion-forum/309582-burnthefat-adwords-permanently-suspended.html">I&#8217;m not the only one</a> who&#8217;s had their AdWords account suspended.</p>
<p>After exchanging further emails with Google, it appears that there is no appealing this decision, and they also make it clear that opening a new account will just result in that account being banned as well. So it looks like I&#8217;m out of AdWords entirely at this point, which is a bummer. I always liked reporting on the AdWords side of things when talking about AdSense because they&#8217;re two sides of the same coin.</p>
<p>It seems draconian to me to be punished for being a <i>past</i> affiliate of a site. Google&#8217;s always had a love-hate relationship with affiliate marketing, and now it looks like they&#8217;re doing their best to discourage its use with AdWords, especially direct linking.</p>
<p>My recommendations:</p>
<ul>
<li><b>Get a new account:</b> If you&#8217;ve promoted affiliate programs in the past, you might want to close your current AdWords account and get a new one in its place. That seems to be the only way to get rid of the historical aspects. Use a different credit card to be safe.</li>
<li><b>Avoid affiliate marketing:</b> Probably the safest thing you can do is only promote things you own and create. And make sure your sites are compliant with AdWords policies.</li>
<li><b>Don&#8217;t direct link:</b> If you must use affiliate marketing, don&#8217;t link directly to the vendor&#8217;s site. Create your own landing pages and make sure they are compliant.</li>
<li><b>Avoid sketchy or controversial topics:</b> Again, if you must use affiliate marketing, stay away from topics like &#8220;weight loss&#8221;, &#8220;gas from water&#8221;, etc.</li>
</ul>
<p>Again, I&#8217;d be curious to hear from other advertisers who&#8217;ve run into the same issues. It&#8217;s too bad they don&#8217;t give you a warning first!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/affiliate-marketing-can-jeopardize-your-adwords-account/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>AdWords Crackdown: Google Permanently Suspending Advertisers</title>
		<link>http://www.memwg.com/adwords-crackdown-google-permanently-suspending-advertisers/</link>
		<comments>http://www.memwg.com/adwords-crackdown-google-permanently-suspending-advertisers/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 14:25:40 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[AdWords]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3560</guid>
		<description><![CDATA[So just before Christmas I logged into my AdWords account to be presented with this message in bright red: Your Google AdWords account has been permanently suspended for repeated violation of AdWords or Landing Page and Site policies in this or a related account. I was pretty surprised to see it, given that I&#8217;ve had [...]]]></description>
			<content:encoded><![CDATA[<p>So just before Christmas I logged into my AdWords account to be presented with this message in bright red:</p>
<blockquote><p>Your Google AdWords account has been permanently suspended for repeated violation of AdWords or Landing Page and Site policies in this or a related account.</p></blockquote>
<p>I was pretty surprised to see it, given that I&#8217;ve had no active campaigns on AdWords since June. 0 impressions, 0 clicks, all campaigns deleted or paused. Then this message.</p>
<p>I can only assume it has to do with deleted campaigns. One thing I&#8217;ve always disliked about AdWords is that nothing actually gets deleted. If you create an ad and then delete it, it still stays in your account, it&#8217;s just marked as &#8220;deleted&#8221;. Same thing for ad groups, campaigns, etc. I&#8217;m pretty sure I have old ads in there that go to domains that I no longer own. Maybe that&#8217;s the problem. If there was a way to &#8220;flush&#8221; the old stuff out of the account then I&#8217;m sure I&#8217;d be OK.</p>
<p>The only way to contact AdWords is through a form. Let&#8217;s see if they get back to me on this. Very weird, I&#8217;d be curious to hear from others who&#8217;ve been in this boat before.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/adwords-crackdown-google-permanently-suspending-advertisers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Average Folks Can Now Park Domains With AdSense for Domains</title>
		<link>http://www.memwg.com/parking-domains/</link>
		<comments>http://www.memwg.com/parking-domains/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 15:18:37 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[adsense for domains]]></category>
		<category><![CDATA[domain parking]]></category>
		<category><![CDATA[surplus domains]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3555</guid>
		<description><![CDATA[One of Google&#8217;s great strengths is that it is an engineering-led company. It&#8217;s also one of its great weaknesses, however, because software engineers are not always the best at designing things that can be used by non-geeks. That&#8217;s exactly what I thought of AdSense for Domains up until now. Last Friday, though, they finally fixed [...]]]></description>
			<content:encoded><![CDATA[<p>One of Google&#8217;s great strengths is that it is an engineering-led company. It&#8217;s also one of its great weaknesses, however, because software engineers are not always the best at designing things that can be used by non-geeks. That&#8217;s exactly what I thought of AdSense for Domains up until now. Last Friday, though, they finally fixed it.</p>
<p>Normally, you see, when you park domains with a company in order to make money from type-in traffic or residual search engine traffic (due mostly to incoming links to a domain that was previously owned by someone else), the parking company makes it really easy to do the parking. There are essentially two steps: (1) you register your domain with the company and (2) you use the parking company&#8217;s nameservers for the domain. Easy-peasy.</p>
<p>Not if you&#8217;re Google, though. You couldn&#8217;t just set the nameservers, you actually had to go and modify your DNS (domain name service) records by hand, hopefully without screwing it up. It was complicated, complicated enough that Google even gave you detailed directions for several of the big hosting services &mdash; because, of course, everyone has a different web interface for managing DNS entries.</p>
<p>Someone finally clued into the fact that no one really wants to go to all that trouble. Sure, there are some advantages to managing the DNS yourself, but they&#8217;re pretty minor and most customers wouldn&#8217;t be interested in them. Now, though, you can simply <a href="http://adsense.blogspot.com/2010/12/adsense-for-domains-makes-it-easier-to.html">modify your nameserver settings</a> and be done with it. The old way&#8217;s still available if you need to be a geek, but the new way is so much simpler. Thanks, Google, for doing this.</p>
<p>Be sure to read <a href="http://www.memwg.com/10-waysto-benefit-from-your-surplus-domains/">10 Ways To Benefit From Your Surplus Domains</a> for more ideas about what to do with those domains you have sitting around collecting dust.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/parking-domains/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The Thanksgiving AdSense Earnings Dip</title>
		<link>http://www.memwg.com/thanksgiving-adsense-earnings-dip/</link>
		<comments>http://www.memwg.com/thanksgiving-adsense-earnings-dip/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 20:39:16 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[thanksgiving]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3551</guid>
		<description><![CDATA[It&#8217;s Thanksgiving in the United States, arguably the most important holiday for Americans. Almost everyone takes both Thursday and Friday off: Thursday to have a big dinner with friends and family and Friday to go shopping (the so-called &#8220;Black Friday&#8221;). Those of us outside the US find it hard to relate to the excitement, I [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s Thanksgiving in the United States, arguably the most important holiday for Americans. Almost everyone takes both Thursday and Friday off: Thursday to have a big dinner with friends and family and Friday to go shopping (the so-called &#8220;Black Friday&#8221;). Those of us outside the US find it hard to relate to the excitement, I think &mdash; in Canada, our Thanksgiving holiday is in early October, on a Monday, and it&#8217;s not nearly the big deal the US Thanksgiving is.</p>
<p>If you&#8217;re an AdSense publisher with significant earnings from America visitors, though, chances are that the Thanksgiving holiday has an effect on your earnings. Every year I see a drop in earnings, which I attribute to people spending less time at the computer and more time interacting with others and/or going to the malls to the shop. With the new AdSense interface it was very easy to plot the earnings for the months of October to December going back to 2004 and for me there&#8217;s definitely a dip on and shortly after Thanksgiving. What&#8217;s your experience been?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/thanksgiving-adsense-earnings-dip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AdSense is Easy</title>
		<link>http://www.memwg.com/adsense-is-easy/</link>
		<comments>http://www.memwg.com/adsense-is-easy/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 00:06:53 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[ad programs]]></category>
		<category><![CDATA[google adsense]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3529</guid>
		<description><![CDATA[After more than five years of writing about AdSense, it should be obvious that I like it. A lot of people like to dislike AdSense, but I don&#8217;t. AdSense is easy. In my world, easy is worth a lot. Too Many Remotes How many remote controls do you use to watch TV? For the longest [...]]]></description>
			<content:encoded><![CDATA[<p>After more than five years of writing about AdSense, it should be obvious that I like it. A lot of people like to dislike AdSense, but I don&#8217;t. <b>AdSense is easy.</b> In my world, easy is worth a lot.</p>
<h2>Too Many Remotes</h2>
<p>How many remote controls do you use to watch TV? For the longest time, I was using 3 remotes: one for the TV, one for the DVR, and one for the Blu-Ray player. (Why didn&#8217;t they call it &#8220;BluRay&#8221;?) My wife always complained because she said if I died she&#8217;d never be able to watch anything. (Not true: our daughter knows how to work the remotes, so it would take a double tragedy to stop the viewing. It&#8217;s nice to have a purpose in life, though.)</p>
<p>For some reason, I decided to make myself more expendable by configuring a single remote to control everything. I sat down and looked up the code to hook up the DVR remote so that it could control the TV, after first looking up the keypad sequence to program the remote. I then spent 20 frustrating minutes trying to find the equivalent code for the Blu-Ray player, to no avail. </p>
<p>So now I have 2 remotes. Better than having 3, not as good as using only one. Although sometimes I still have to use that third remote for the more obscure items, so it&#8217;s really more like 2.5 remotes&#8230; </p>
<p>The point of this story is not that I should buy a <a href="http://www.amazon.com/gp/product/B00119T6NQ?ie=UTF8&#038;tag=ericgiguerecom&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B00119T6NQ" rel="nofollow">Harmony remote</a>, though that may be a good idea. The point is that for the longest time it was <b>easier</b> for me to use those 3 preconfigured remotes than for me to spend the the time figuring out how to reprogram everything. Why? They just worked.</p>
<h2>AdSense is like a Preconfigured Remote</h2>
<p>That&#8217;s what I like about AdSense: it works right out of the box. You choose an ad format, generate some JavaScript (or do like I do and steal it from one of your other sites), paste it onto your page/template, and you&#8217;re done. Your page content is analyzed and relevant ads are shown pretty much right away. You get access to a wide variety of ads across all kinds of niches and in various languages and geographies. You can choose to display text ads only, images/video ads only, or a mix.</p>
<p>Is AdSense the most lucrative advertising program for your site? Possibly not. In some niches it&#8217;s possible to do better by promoting affiliate products or CPA (cost-per-action) signups. But you need to do the research to find an appropriate ad program, apply for it (in some cases &mdash; and you may get rejected if your site is too small or doesn&#8217;t get a lot of traffic), and learn how to use it. Not hard, but it can take some time.</p>
<p>It&#8217;s really all about where you want to put in the effort. When I develop a new site, AdSense is usually my first choice because it takes no thought to implement, which lets me focus on content and traffic development. Especially the latter &mdash; a site with no traffic is worthless, no matter what ad program you&#8217;re using. Later, when a site has been running for a while I may look at alternatives. Or not&#8230; depends how busy I am. The alternatives are rarely much better.</p>
<p>Like I said, AdSense is easy, and in most cases it&#8217;s good enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/adsense-is-easy/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>How To Create A Microniche AdSense Site</title>
		<link>http://www.memwg.com/how-to-create-a-microniche-adsense-site/</link>
		<comments>http://www.memwg.com/how-to-create-a-microniche-adsense-site/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 02:01:11 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[keyword research]]></category>
		<category><![CDATA[micro niche]]></category>
		<category><![CDATA[Micro Niche AdSense Course]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3391</guid>
		<description><![CDATA[&#1082;&#1091;&#1093;&#1085;&#1077;&#1085;&#1089;&#1082;&#1086; &#1086;&#1073;&#1079;&#1072;&#1074;&#1077;&#1078;&#1076;&#1072;&#1085;&#1077;Warning: This is is a VERY long post written over the course of several days. You may want to print it out for reference. Today I thought I&#8217;d discuss creating &#8220;microniche&#8221; AdSense sites. Longtime readers of this blog will be somewhat familiar with the concept because of my recommendation to purchase the XFactor Micro [...]]]></description>
			<content:encoded><![CDATA[<p><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://www.videnov.com/">&#1082;&#1091;&#1093;&#1085;&#1077;&#1085;&#1089;&#1082;&#1086; &#1086;&#1073;&#1079;&#1072;&#1074;&#1077;&#1078;&#1076;&#1072;&#1085;&#1077;</a></font><i>Warning: This is is a VERY long post written over the course of several days. You may want to print it out for reference.</i></p>
<p>Today I thought I&#8217;d discuss creating &#8220;microniche&#8221; AdSense sites. Longtime readers of this blog will be somewhat familiar with the concept because of my recommendation to purchase the <a href="http://www.memwg.com/micro-niche-adsense-course-review/">XFactor Micro Niche AdSense Course</a>. What I&#8217;m going to do here is discuss essentially the same concepts and ideas presented in the course but with my own twists. I hope you find it useful and informative.</p>
<p><b>None of the information presented here is new,</b> you can find it sprinkled throughout the Web. And if you <b>don&#8217;t take action</b>, nothing will happen, no matter what you read here.</p>
<h2>Part 1: Background</h2>
<p>Let&#8217;s start with some background information as to what we&#8217;re going to do and why we&#8217;re doing it.</p>
<h3>1.1 What is a Microniche?</h3>
<p>A <i>microniche</i> is a small and very specific niche market. Think &#8220;battery-powered lawn mowers&#8221; instead of more general topics like &#8220;lawn mower&#8221; or (even more generally) &#8220;garden tools&#8221; or (even broader) &#8220;lawn and garden&#8221;.</p>
<p>Microniches interest us because they are often underserved by existing websites. For example, there are lots of sites that about <a href="http://en.wikipedia.org/wiki/Web_hosting_service">web hosting services</a> in general, but fewer about <a href="http://webhostingpalooza.com/virtual-private-server-hosting/">virtual private server hosting</a> specifically. Similarly, someone looking for <b>red tennis shoes</b> isn&#8217;t interested in general <b>tennis shoes</b> &mdash; they&#8217;re already past that. They want more specific information: what styles of red tennis shoes are available (pictures would be good!), and who has them in stock?</p>
<h3>1.2 Why Do Microniches Exist?</h3>
<p>There are probably good reasons why a microniche is underserved. The most likely reason is that&#8217;s it&#8217;s too small a market to interest the existing players. For example, say only 2 people a day look for red tennis shoes in the entire United States. That&#8217;s a very small market. </p>
<p>(Aside: That was a total guess&#8230; Out of curiosity, I checked the AdWords keyword tool&#8230; apparently 260 searches are done per month in the United States for the exact search term <b>red tennis shoes</b>, which equates to almost 9 searches a day. It&#8217;s likely a bit higher than that, in fact, so it&#8217;s more than I thought it would be.)</p>
<p>The other reason is that a microniche is not a paying market. Maybe people who search for <b>red tennis shoes</b> change their mind and never actually buy red shoes, opting for black or white ones instead because the red ones are just too dramatic a statement to make.</p>
<h3>1.3 Why Do We Care About Microniches?</h3>
<p>Some microniches are underserved because they&#8217;ve been overlooked by others, or not considered interesting or important enough to pursue. This means that no one has gone through the effort of created content tailored for the niche and applying specific search engine optimization (SEO) principles and techniques to a site in order to get natural (&#8220;organic&#8221;) search traffic to that content, even though the microniche is potentially profitable.</p>
<p>Which is where our opportunity arises. If we can create the right kind of content to tap into the small stream of searchers interested in a profitable microniche, we can make some money, either by placing advertisements (from AdSense or other programs) on the site, directing visitors to affiliate sites, etc.</p>
<h3>1.4 The Top 10 Results Are All That Matter</h3>
<p>The technique I&#8217;m describing here is all about getting pages from your site or sites to rank in the top 10 results for specific keywords. Getting listed on that first page, ideally at or near the first result, is key, because it&#8217;s the top 10 results that garner the lion&#8217;s share of free search engine traffic.</p>
<p>In competitive niches those top 10 results are dominated by expertly-tuned Big Sites with a large number of backlinks. It&#8217;s essentially impossible to compete with those sites unless you happen to have a Big Site of your own.</p>
<p>In a microniche, though, chances are good that many of the top 10 results are not Big Sites. The more specific the niche, the greater the probability that you can create a site that will rank in the top 10. Whether there&#8217;s actually any traffic in that niche that can be monetized is a separate question &mdash; not all microniches are profitable.</p>
<h3>1.5 Where Do You Start?</h3>
<p>So where do you find microniches? Well, to start with you need a broad topic/niche. Use your imagination. Did you purchase something recently? What are the top sellers on eBay selling? What are manufacturers advertising?</p>
<p>The XFactor course recommends specifically going after products, like the &#8220;red tennis shoes&#8221; I mentioned above. Stuff that people are searching for, that they want to buy.</p>
<p>Of course, the more interested you are in a topic, the easier it will be to write content for that topic. Best not to stray too far out of your comfort zone when creating your first site or two.</p>
<h3>1.6 Caveats</h3>
<p>Microniche marketing is not a quick path to riches. A single microniche site won&#8217;t make you a lot of money. It&#8217;s only by building a network of microniche sites that you&#8217;ll start to see real income develop. A lot of trial and error will be involved. You&#8217;ll create sites that won&#8217;t make you squat, while a few will perform exceptionally well.</p>
<p>Creating these sites will take time and effort on your part, at least if you&#8217;re planning on using whitehat methods. You&#8217;ll find no blackhat techniques here, look elsewhere if that&#8217;s what interests you.</p>
<p>Some money will be required to get started. Not a lot:</p>
<ul>
<li>You&#8217;ll need to find and register domains &mdash; an important part of the microniche strategy is to create your own pieces of &#8220;virtual real estate&#8221; that you can own and develop for the long term. You can register .com/.net/.org domains for less than $10 each from a reputable <a href="http://webhostingpalooza.com/domain-registrar/">domain registrar</a> (hint: search for coupon codes). Note that domain registrations are public, so if you don&#8217;t want your personal information available to everyone, register your domains with privacy enabled &mdash; usually at extra cost, although some registrars offer it for free. Shop around!</li>
<li>You will need a hosting account capable of hosting multiple domains, so don&#8217;t get the cheapest plan that limits you to a single domain. Most hosting services offer &#8220;unlimited&#8221; domains at some level. (Try to go for a reseller account, it can make it simpler later if you want to sell the site to give each site its own cPanel. I&#8217;ve used <a rel="nofollow" href="http://www.memwg.com/go/resellerzoom.html">HostingZoom</a> with good success. <a refl="nofollow" href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=ericgiguere">HostGator</a> is another good choice that I&#8217;ve used.) You should be able to find good hosting service for $15/month or less.</li>
</ul>
<p>Later you may also want to purchase a keyword tool like <a rel="nofollow" href="http://be927atdklnpls9bw5ow2gzyae.hop.clickbank.net/?tid=MICRONICHE">Micro Niche Finder</a> to speed up the keyword research process. But when you&#8217;re starting out you can do all your research using Google&#8217;s free keyword tool. So your initial outlay is just the hosting and the domains. And your time! <b>Be prepared to dedicate at least one hour per day</b> to this endeavor.</p>
<h2>Part 2: Keyword Research</h2>
<p>&#8220;Before anything else, preparation is the key to success.&#8221; That&#8217;s what Alexander Graham Bell said, and he was right. You can&#8217;t be successful at microniche development without preparation, and most of that involves keyword research.</p>
<h3>2.1 What is Keyword Research?</h3>
<p>When a person uses a search engine like Google to find things on the web, they enter in a series of words that describes what they are looking for. The search engine uses those words to find the sites that it thinks are most relevant to the user&#8217;s query, listing them in order of relevance. These &#8220;key words&#8221; are therefore very important.</p>
<p>(Note: the term <i>keyword</i> is often used as shorthand for <i>keyword phrase</i>, i.e. a keyword may be two or more words strung together to form a complete query.)</p>
<p>Keyword research is all about determining which keywords are used for searching. Everyone is different, and so everyone uses different keywords when searching. The <a href="http://www.suggestexplorer.com/recent-queries.html">variety of keywords used</a> is astounding. This makes keyword research particularly challenging, because what <i>you</i> would type into Google to find something isn&#8217;t necessarily what <i>others</i> would type.</p>
<h3>2.2 Why Do Keyword Research?</h3>
<p>Content publishers perform keyword research to answer two very important initial questions:</p>
<ol>
<li><b>What</b> do people search for?</li>
<li><b>How much</b> will advertisers pay?</li>
</ol>
<p>This is the first phase of keyword research, to find keywords within a niche that meet or exceed specific criteria for search volume and average per-click payout.</p>
<p>But the research doesn&#8217;t stop there! The second phase of research involves taking the keywords found in the first phase and determining the <b>competition levels</b> for those keywords. In other words, how easy it will be (or not be) to &#8220;crack into&#8221; the top 10 results for each keyword? As a small publisher, you&#8217;re not going to be able to bring together the same linking resources that the Big Sites can use to muscle their way onto the first page. You have to pick and choose very carefully.</p>
<h3>2.3 Where Does Keyword Data Come From?</h3>
<p>Ultimately, all reliable keyword data comes from the search engines. They&#8217;re the only ones who really know what people are searching for.</p>
<p>These days, most of the keyword data comes from Google, either directly through Google&#8217;s own tools (developed primarily for AdWords advertisers) or indirectly via third-party tools that scrape the data (or, in rare cases, obtain via legitimate means) from Google&#8217;s tools. (Yes, this includes Micro Niche Finder.)</p>
<p>Some keyword tools do use data from second-tier search engines. But those search engines have a tiny percentage of the total search volume in comparison to the big three (Google, Yahoo! and Bing &mdash; although really it&#8217;s Google and Bing now) that the numbers they release are extrapolations based on a tiny sample set.</p>
<h3>2.4 Preparing the AdWords Keyword Tool For Research</h3>
<p>The first phase of keyword research is done using the <a href="https://adwords.google.com/select/KeywordToolExternal">AdWords Keyword Tool</a>, a free tool from Google that is available to everyone. </p>
<p>When you open the tool, make sure that the country and language settings are what you expect. If you plan on targeting Americans, for example, make sure the that &#8220;United States&#8221; and &#8220;English&#8221; are selected:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-1.png" alt="" title="mn-adwords-1" width="499" height="170" class="aligncenter size-full wp-image-3430" /></p>
<p>If not, click on the &#8220;Advanced Options&#8221; link and adjust the settings appropriately.</p>
<p>Now click on the &#8220;Columns&#8221; button on the right-hand side:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-2.png" alt="" title="mn-adwords-2" width="267" height="137" class="alignnone size-full wp-image-3432" /></p>
<p>In the resulting popup, make sure that &#8220;Estimated Avg. CPC&#8221; is checked in the left column. In the right column, drag &#8220;Estimated Avg. CPC&#8221; to the to top:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-3.png" alt="" title="mn-adwords-3" width="561" height="388" class="alignnone size-full wp-image-3434" /></p>
<p>Then press &#8220;Save&#8221;. This ensures that average per-click data (which is AdWords advertiser costs, NOT the per-click values an AdSense publisher would see &mdash; more on that later) shows up in the list.</p>
<p>Now in the &#8220;Word or phrase&#8221; box type in one or more keywords for the niche you want to target:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-4.png" alt="" title="mn-adwords-4" width="517" height="191" class="alignnone size-full wp-image-3437" /></p>
<p>Press the &#8220;Search&#8221; button and wait a few seconds. You&#8217;ll see a bunch of results appear. </p>
<p><b>Stop!</b> Before you do anything else, you need to tell AdWords you&#8217;re only interested in &#8220;Exact&#8221; results. Find the &#8220;Match Types&#8221; box on the left side and quickly uncheck &#8220;Broad&#8221; and check &#8220;Exact&#8221;:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-5.png" alt="" title="mn-adwords-5" width="221" height="114" class="alignnone size-full wp-image-3438" /></p>
<p><b>This is very important!</b> The Exact match type shows results only for searches that were done for the <i>exact</i> keyword phrase shown, with no other keywords added, no synonyms used, and no alteration in the order of the keywords. The other match types are best ignored.</p>
<p>After you change to exact matching, the keyword tool will reload its data. You should see all the keywords it generates surrounded by left (&#8220;[") and right ("]&#8220;) brackets &mdash; that&#8217;s what indicates an exact match:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-6.png" alt="" title="mn-adwords-6" width="182" height="330" class="alignnone size-full wp-image-3440" /></p>
<p>If you don&#8217;t see those brackets, check your settings. And ignore any row of data in the table that isn&#8217;t exact match.</p>
<p>Now you&#8217;re ready to research!</p>
<h3>2.5 The First Phase of Research</h3>
<p>In the first phase of research you find keywords that meet your specific criteria for search volume and average CPC. This is done quite easily by clicking on the &#8220;Advanced Options&#8221; link and creating <b>filters</b>:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-7.png" alt="" title="mn-adwords-7" width="500" height="241" class="alignnone size-full wp-image-3442" /></p>
<p>The filters I created above are:</p>
<ul>
<li>Global Monthly Searches >= 300</li>
<li>Estimated Avg. CPC > $1.00</li>
</ul>
<p>So I&#8217;m looking for keywords that have exact search values of at least 10 per day (10 * 30 = 300) with an estimated average cost to AdWords advertisers of more than $1 per click.</p>
<p><b>Why 300 searches per month?</b> If your page ranks in the top 10 for a non-phrase exact search query (the keyword phrase not in quotes), chances are good that with 300 exact searches per month (which is a conservative estimate on Google&#8217;s part) you&#8217;ll get a few clicks per day. The more searches, the better, of course. There&#8217;s no hard rule here. You may have to settle with keywords that have as little as 100 exact searches per month.</p>
<p><b>Why $1 per click?</b> The CPC values shown are the costs to advertise on Google&#8217;s search network, i.e. the search results page. Advertisers can and typically do pay much less to advertise on Google&#8217;s content network, i.e. AdSense sites. Plus AdSense publishers get 68% of what Google charges the advertiser. So if you go below $1, chances are good that you&#8217;ll be seeing clicks worth only a few cents. The cutoff is pretty arbitrary, though, and is something you can play with.</p>
<p>Once you&#8217;ve set your filters, press the &#8220;Search&#8221; button again and the keyword tool will remove the keywords that don&#8217;t match the filters from the list.</p>
<p>Now click on the &#8220;Global Monthly Searches&#8221; header to sort the data by search volume:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-8.png" alt="" title="mn-adwords-8" width="500" height="167" class="alignnone size-full wp-image-3445" /></p>
<p>At this point you have an initial list of potential microniche keywords. In my case, I have 136 potential keywords. But many of them aren&#8217;t actually microniche keywords. Some are too broad &mdash; like &#8220;tennis&#8221; or &#8220;mens shoes&#8221; &mdash; and some are clearly off-topic &mdash; like &#8220;tennis racquets&#8221;.</p>
<p>Now what you do is run through the list of keywords and select the ones that are truly related to your chosen niche. After you&#8217;ve selected the keywords that seem appropriate, select the &#8220;Download Selected&#8221; dropdown menu:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-9.png" alt="" title="mn-adwords-9" width="387" height="456" class="alignnone size-full wp-image-3448" /></p>
<p>Select the right type of download, which is probably &#8220;CSV for Excel&#8221; (CSV = comma-separated values, a portable spreadsheet format):</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-10.png" alt="" title="mn-adwords-10" width="353" height="158" class="alignnone size-full wp-image-3450" /></p>
<p>What you&#8217;ll actually end up downloading is a ZIP file containing the spreadsheet:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-11.png" alt="" title="mn-adwords-11" width="500" class="alignnone size-full wp-image-3451" /></p>
<p>The spreadsheet is inside the ZIP file:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-12-300x145.png" alt="" title="mn-adwords-12" width="300" height="145" class="alignnone size-medium wp-image-3452" /></p>
<p>You should be able to open it directly from within the ZIP file, don&#8217;t bother saving it until we&#8217;ve determined it&#8217;s worth saving:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-13.png" alt="" title="mn-adwords-13" width="273" height="746" class="alignnone size-full wp-image-3454" /></p>
<p>You&#8217;re now ready to move to the second phase of keyword research.</p>
<h3>2.6 The Second Phase of Keyword Research</h3>
<p>In the second phase of research you assess the competition levels for each keyword in the first phase, discarding the ones that are too competitive. <b>It is possible and likely that all the keywords you found in the first phase will be too competitive</b>, at which point you&#8217;ll need to restart the process with a different root keyword and/or adjust the minimum search volume you&#8217;re willing to accept.</p>
<p>Gathering the keywords is actually quite straightforward. Determining competitiveness is a bit of a black art.</p>
<p>The first thing you&#8217;ll want to do is see if there are any <b>exact match domains</b> available for the keywords you&#8217;ve chosen. An exact match domain is a domain name in the .com/.net/.org top-level domains (or in a country code domain like .ca or .fr if you&#8217;re targeting non-US or non-English searchers&#8230; some people will even use .info and other domains, although results may be mixed on those) that exactly matches the keyword you&#8217;re assessing. It&#8217;s been shown that Google gives a ranking boost to exact match domains, so it&#8217;s worth checking out, and it only takes a minute to do. In your spreadsheet, select the &#8220;Keyword&#8221; column and copy it to your clipboard:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-14.png" alt="" title="mn-adwords-14" width="144" height="334" class="alignnone size-full wp-image-3457" /></p>
<p>Now move to your browser. Go to the <a href="http://affiliate.godaddy.com/redirect/E10A24072E4342075F0DBE6E11BF19EDBECF694F6891A5EA62D67B4D8122FF07" title="GoDaddy Bulk Domain Registration">GoDaddy Bulk Domain Registration</a> page (don&#8217;t worry, you&#8217;re not registering anything, we&#8217;re only testing for availability here) and paste in the contents of your clipboard:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-15.png" alt="" title="mn-adwords-15" width="500" height="254" class="alignnone size-full wp-image-3458" /></p>
<p>Make sure you select the &#8220;.com&#8221;, &#8220;.net&#8221; and &#8220;.org&#8221; domains on the right side and then press the &#8220;Search&#8221; button underneath the text box. The tool will automatically remove all non-alphanumeric characters from the keyword list to create a domain list and return a list of available domains:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-161.png" alt="" title="mn-adwords-16" width="500" height="255" class="alignnone size-full wp-image-3460" /></p>
<p>In this case, this is what&#8217;s available:</p>
<pre>REDCONVERSESHOES.COM
REDCONVERSESHOES.NET
REDCONVERSESHOES.ORG
TENNISSHOESONLINE.NET
TENNISSHOESONLINE.ORG
SHOESFORTENNIS.NET
SHOESFORTENNIS.ORG
TENNISCOURTSHOES.NET
TENNISCOURTSHOES.ORG
REDTENNISSHOES.ORG
LADIESTENNISSHOES.ORG
CONVERSERED.NET
CONVERSERED.ORG
BOYSTENNISSHOES.NET
TENNISSNEAKERS.ORG
CHEAPTENNISSHOES.NET
WHITETENNISSHOES.ORG
MENTENNISSHOES.NET
MENTENNISSHOES.ORG
BUYTENNISSHOES.ORG
TENNISSHOESFORKIDS.COM
TENNISSHOESFORKIDS.NET
TENNISSHOESFORKIDS.ORG</pre>
<p>Quite a few, actually, although mostly .net or .org domains and most of them (if you refer back to the spreadsheet) have low search volumes.</p>
<p>What if none of the keywords have exact match domains available? You can proceed, or you can abort. <b>Many microniche developers only use exact match domains for their sites.</b> Others will simply try to find domains that include the keyword in question. Even if you go that route (I favor EMDs, by the way) you should consider the keywords with EMDs <b>first</b> because they&#8217;ll be so much easier to rank.</p>
<p>Now to test for competitiveness. Testing for competitiveness is something where a software tool can help, but you can definitely do it on your own with a bit of patience.</p>
<p>Order the keywords by EMD availability and then by search volume. In other words, all the EMDs are first, then the other keywords. In our case that means <b>ladies tennis shoes</b> is first because the .org is available and it has 1000 exact searches per month. Next would be <b>converse red</b>, <b>boys tennis shoes</b>, etc. (This is dreary stuff, absolutely&#8230; No wonder people buy tools to cut down the drudgery&#8230;)</p>
<p>Now run each keyword in your list through a series of simple test. First, do a sanity check on the keyword itself. Does it incorporate a trademark? If so, you might want to skip it (like &#8220;converse red&#8221;) to avoid legal hassles later. Is the keyword truly in your niche? Is it something you think you could develop a site about?</p>
<p>For keywords that pass the sanity check, open a Firefox browser window. Install the free <a href="http://tools.seobook.com/firefox/seo-for-firefox.html">SEO for Firefox</a> add-on (plugin) if you haven&#8217;t done so already, and restart. Select <b>Tools / SEO for Firefox / Options&#8230;</b> to configure the add-on. Make sure that the following Info Blocks are set to &#8220;Automatic&#8221;: PR (PageRank), Y! Links (number of links to the domain in Yahoo) and Y! Page Links (number of links to the page in Yahoo):</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-17.png" alt="" title="mn-adwords-17" width="419" height="671" class="alignnone size-full wp-image-3469" /></p>
<p>Navigate to Google &mdash; be sure to use the right version of Google for your target country and language (you may have to use a proxy to do this). Make sure SEO for Firefox is enabled.Search for a query using <b>phrase</b> matching, i.e. put quotes around the keyword phrase. For example, search for <b>&#8220;ladies tennis shoes&#8221;</b>, not <b>ladies tennis shoes</b>:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-adwords-18.png" alt="" title="mn-adwords-18" width="486" height="751" class="alignnone size-full wp-image-3470" /></p>
<p>At the top you&#8217;ll see how many results match the query &mdash; 79,700 in this case. For exact matching you don&#8217;t want to go above 100,000 &mdash; I think below 50,000 is better. Then for each of the top 10 results looks at the values shown for PR, Y! Links and Y! Page Links. If the average PR of the sites in the top 10 is high (most sites PR of 3 or higher) or most of them have lots of direct links to the page, it&#8217;s probably too competitive. </p>
<p>Also look at the titles and URLs shown in the search results. Well-optimized sites will include the keyword in their titles and URLs and will be much harder to beat. If most of the sites are already optimized, move on.</p>
<p>Tools like <a href="http://be927atdklnpls9bw5ow2gzyae.hop.clickbank.net/?tid=MICRONICHE">Micro Niche Finder</a> (MNF) will also have their own ways of measuring competitiveness. MNF has a &#8220;strength of competition&#8221; (SOC) value that is derived from how many sites have a given keyword phrase in their titles and URLs. Everyone has their own &#8220;special&#8221; way to do this, it seems.</p>
<p>As you can see, there&#8217;s no absolute formula or algorithm to any of this, it&#8217;s more like what works for you through trial and error and also &#8220;gut feel&#8221;. <b>Looking at actual search results is critical</b>, even if the initial indicators give the green light. If you see Amazon and other generic shopping sites ranking for a specific search query, chances are good that they&#8217;re there because of the sheer authority of the site and not because their content is specifically tuned for the query. So they can be beat if you try hard. (More on that later.) But if you see a lot of smaller, niche-specific sites and they have lots of links going to them then you may want to skip this keyword, because they&#8217;ve obviously been designed to rank well for that keyword.</p>
<p>Don&#8217;t forget: if an exact match domain is available, you can loosen the criteria somewhat because of the natural ranking boost they get. An EMD is not critical, though.</p>
<p>At first glance the <b>ladies tennis shoes</b> keyword looks not too shabby: the last 6 results have no PR and no direct page links. The #1 and #3 results are generic shopping sites. There are definitely a couple of sites in there (including an EMD) that are optimized for the term, but it should be possible to get in the top 10 results for the phrase query.</p>
<p>But what about the broad (non-phrase) query? Most searchers don&#8217;t use quotes, after all. Go back to the top and repeat the search, this time without the quotes. Look at the results. It should be more competitive, but hopefully not too much more. In this case it still seems pretty good, because a lot of the sites that rank for the phrase query are also ranking for the broad query. There&#8217;s a good chance we can displace one of those sites and land on both search results pages.</p>
<p>Do these steps for all the keywords that interest you. Keep track of the results. Yes, it&#8217;s tedious, deal with it.</p>
<h3>2.7 Decide On Your Microniche</h3>
<p>After you&#8217;ve finished your keyword research, it&#8217;s time to decide which microniche to pursue. Chances are that you&#8217;ve uncovered several potential niches in your research. For example, we started with <b>red tennis shoes</b> but it looks like <b>ladies tennis shoes</b> might be a better bet because it has more search volume. (In fact, <b>red tennis shoes</b> just barely falls outside our minimum search levels.) But both have EMDs available and are not too competitive.</p>
<p>Again, there are no set rules here. One problem with <b>ladies tennis shoes</b> is that it&#8217;s not really a microniche, it&#8217;s really just a synonym for <b>womens tennis shoes</b>. It&#8217;s actually an offshoot of a broad topic. But if no one&#8217;s optimized content for it, why not target it?</p>
<p>Colored tennis shoes, though, would be a microniche. Most tennis shoes are white. Red, blue, green, yellow&#8230; you could build a site or sites targeting each of the major colors. If you run the numbers, there&#8217;s an EMD available for each of those colors. Individually, each color doesn&#8217;t get a lot of searches, but together they can add up to a decent amount of traffic.</p>
<p>The following queries have small exact search values that add up to over 1500 searches per month:</p>
<ul>
<li>black tennis shoes</li>
<li>blue tennis shoes</li>
<li>brown tennis shoes</li>
<li>gold tennis shoes</li>
<li>green tennis shoes</li>
<li>orange tennis shoes</li>
<li>pink tennis shoes</li>
<li>purple tennis shoes</li>
<li>red tennis shoes</li>
<li>silver tennis shoes</li>
<li>yellow tennis shoes</li>
</ul>
<p>Don&#8217;t concern yourself with just the numbers, though. You&#8217;re going to need to write content for your chosen niche. Can you do it? If you can&#8217;t, move on. (The <a href="http://www.memwg.com/go/micronicheadsensecourse.html">XFactor course</a> recommends sticking to product-related niches because there are generic product descriptions available from manufacturers that you can use as the starting point for your content.)</p>
<p>Once you&#8217;ve settled on the main keyword for your microniche, create a list of related keywords for that niche. Use the AdWords tool to get more ideas, or use tools like my <a href="http://www.suggestexplorer.com">Google Suggest Explorer</a> to get more long tail keywords. These keywords will be the basis for additional pages of content.</p>
<p>Let&#8217;s create a site based on our research so far. Personally, I don&#8217;t feel I can say much about ladies tennis shoes, but I do think I can come up with material about colored tennis shoes. Famous players like <a href="http://www.menstennisblog.info/2009/12/photo-rafael-nadals-new-tennis-shoes.html">Rafael Nadal</a> wear brightly colored shoes. Kids always like colors, too.</p>
<p>So our microniche is <b>colored tennis shoes</b>. </p>
<h2>Part 3: Site Creation</h2>
<p>The keyword research phase is really the hardest part of this. Once you&#8217;ve chosen your microniche and have collected a set of niche-specific keywords, you can focus on creating the site itself.</p>
<h3>3.1 Your Own Virtual Real Estate</h3>
<p>First, a short digression. Why register a domain and create a brand new site? Why not just use an existing (and free) blog hosting platform (like Blogger) to host your site?</p>
<p>What you are doing when you host your own site is building your own &#8220;virtual real estate&#8221; portfolio. By hosting the site yourself, you control what goes on the site and what happens to the site. You can sell the site later, for example &mdash; that&#8217;s one quite legitimate business model (create a site, build it up to attract traffic, sell it). You won&#8217;t lose the site suddenly is someone complains (legitimately or not) about the content on your site. Lots of good reasons to keep control of things.</p>
<h3>3.2 Find a Good Domain Name</h3>
<p>One of the things you should consider is whether you&#8217;re building a <b>brand</b> or not with your site. Most microniche sites aren&#8217;t branded, they&#8217;re focused exclusively on getting long-tail search engine traffic and that means an emphasis on keywords for ranking and using generic names that anyone can use. Building a brand for the site will have long-term advantages, but it will be harder to get the site to rank unless the brand itself includes a relevant keyword.</p>
<p>If there&#8217;s an EMD available for a keyword with decent search volume, though, consider doing without a brand, as the ranking boost you get from the EMD is quite significant at this point in time.</p>
<p>If there&#8217;s no EMD available or you want to use a branded domain, you&#8217;ll probably have to do a bit of searching for the right domain name. If you want help finding suitable domains, check out my <a href="http://www.findmeadomain.com/">Find Me A Domain</a> tool. Or just spend some time exploring at your favorite domain registrar.</p>
<p>As it turns out, <b>coloredtennisshoes.com</b> is available if we want to use it for our microniche. Notice, however, that this keyword wasn&#8217;t on our list. The search volume is </p>
<p>Now <b>coloredtennisshoes.com</b> is available and the competition for <b>colored tennis shoes</b> , but the exact search volume is terrible so we won&#8217;t get much benefit from this EMD. But it fits so well with the niche, let&#8217;s give it a go anyhow.</p>
<p>The alternative is to make a separate site for each of our keywords, because there are EMDs available for each. It&#8217;s more expensive and more work.</p>
<p>So what we&#8217;ll do is compromise. Let&#8217;s build a the more general <b>coloredtennisshoes.com</b> site and a more specific <b>yellowtennisshoes.com</b>. (I&#8217;m going with yellow because I think it looks like some tennis pros wear yellow tennis shoes, so there will be more to talk about.)</p>
<h3>3.3 Host the Domain</h3>
<p>Time to register the domain and setup hosting for it. How you setup the hosting is very specific to the hosting service you&#8217;re using, so I won&#8217;t go into specifics about that. But do keep these things in mind:</p>
<ul>
<li><b>Create the hosting account first.</b> You can create the new hosting account (if you&#8217;re using a reseller account or a VPS) or add-on domain (for standard shared hosting) before you actually register the domain. Then if you map the domain to the IP address of your server by <a href="http://www.brighthub.com/computing/smb-security/articles/56992.aspx">editing your local hosts file</a> you can accevs the site before you&#8217;ve registered the domain.</li>
<li><b>Put up some dummy but related content.</b> Once you register the domain, it won&#8217;t take long for Google to find it, even if no one links to it. It&#8217;s a good idea to prepare a dummy page of keyword-oriented content and place it as the root index.html file on the new site. Then if Google comes along before you finish the site (say you get interrupted and have to leave for a few hours) at least your initial listing in Google will be relevant to your topic.</li>
<li><b>Register the domain and set the nameservers.</b> Once you&#8217;re ready, register the domain. Ideally you want to set the <b>nameservers</b> for the domain during the registration process, or shortly thereafter, but not all domain registrars allow this.</li>
</ul>
<h3>3.4 Install WordPress</h3>
<p>Now it&#8217;s time to install WordPress. Yes, we&#8217;re installing blogging software on these sites. But we&#8217;re not going to create blogs. Rather, we&#8217;re using WordPress as a &#8220;content management system&#8221; (CMS). WordPress 3.0 has some new features that make it especialy good for CMS work.</p>
<p>I won&#8217;t go over how to install WordPress, as the details will vary depending on your hosting service. Most services will offer Fantastico, however, and that makes it very easy to install WordPress. There&#8217;s a decent tutorial on using Fantastico to install WordPress <a href="http://teamtutorials.com/web-development-tutorials/install-wordpress-using-fantastico-in-cpanel">here</a>.</p>
<h3>3.5 Configure WordPress</h3>
<p>Once WordPress 3.x is installed, login to the administration console. You&#8217;ll want to change the default configuration.</p>
<p><b>A. Remove the default links.</b> Delete the defaults under <b>Links</b>:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-1.png" alt="" title="mn-wp-1" width="382" height="502" class="alignnone size-full wp-image-3500" /></p>
<p><b>B. Remove the default post.</b> Delete the post under <b>Posts</b>:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-2.png" alt="" title="mn-wp-2" width="384" height="247" class="alignnone size-full wp-image-3501" /></p>
<p><b>C. Rename the Uncategorized category.</b> Change its name to <b>News</b>:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-3.png" alt="" title="mn-wp-3" width="483" height="295" class="alignnone size-full wp-image-3502" /></p>
<p><b>D. Change the Permalinks format.</b> Change the permalinks format to /%postname%/:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-4.png" alt="" title="mn-wp-4" width="499" height="617" class="alignnone size-full wp-image-3503" /></p>
<h3>3.6 Install Plugins</h3>
<p>Now it&#8217;s time to install a few free WordPress plugins. These plugins will make your life easier. Best of all, you can install most of them quite easily directly from the WordPress console, just go to <b>Plugins</b>, click <b>Add New</b> and then search for the following plugins:</p>
<ul>
<li><b>Google XML Sitemaps</b> to general a search engine sitemap</li>
<li><b>SEO Ultimate</b> to optimize page titles and so on</li>
<li><b>Advertising Manager</b> to insert AdSense ads into content</li>
</ul>
<p>You may also want to install my free <a href="http://www.memwg.com/privacy-policy-1.1.zip">Privacy Policy</a> plugin to automatically generate an AdSense-compliant privacy policy page for your site. </p>
<p>All of these are totally optional, of course. You&#8217;ll need to activate these plugins and then configure the plugins appropriately, which I&#8217;m not going to describe as this post is long enough as it is&#8230;</p>
<h3>3.7 Install a Theme</h3>
<p>The default WordPress 3.0 theme is a lot better than the previous default theme, but you&#8217;ll want to install a different theme. The XFactor course recommends a simple look like the one on this <a href="http://www.chainsawsharpener.org">chainsaw sharpener</a> site and there are theme designers who will sell you such a theme if you do a bit of looking. Or you can use one of the hundreds of freely-available themes available from the WordPress dashboard:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-5.png" alt="" title="mn-wp-5" width="500" height="332" class="alignnone size-full wp-image-3506" /></p>
<p>The set of choices can be quite bewildering, but remember these key points:</p>
<ul>
<li><b>Choose a widget-enabled theme.</b> Widgets have always been useful, but new in WordPress 3.0 is the ability to transform a custom &#8220;menu&#8221; into a widget. This makes it extremely easy to create custom lists of pages and posts.</li>
<li><b>Keep it simple.</b> You don&#8217;t want to overwhelm the user with too much information or too many links. Your ads (or affiliate links) need to be front and center.</li>
<li><b>White background.</b> It&#8217;s more readable, goes with the simplicity theme, and makes ad blending easier.</li>
<li><b>Use images.</b> Images are great way to attract the reader&#8217;s eye to the page and can make a site more visually appealing. You don&#8217;t have to add images right away, but make sure it&#8217;s something you can easily do at some point.</li>
<li><b>Turn off all ads.</b> Some themes have built-in ad support (in which case you won&#8217;t need an ad plugin like the one I mentioned above), but you&#8217;ll want to turn it off while you&#8217;re working on the site. Best not to have the AdSense bot visit the site until you have content on it.
</ul>
<p>Don&#8217;t fret too much about the theme at first. I know it&#8217;s easy to spend time perfecting the theme &mdash; I do it myself. <b>But the theme can always change later.</b> It&#8217;s more important to get the site up and running than making it look good.</p>
<h2>Part 4: Content Creation</h2>
<p>At this point you have an empty site. It&#8217;s time to fill it with content.</p>
<h3>4.1 Pages For Content, Posts For Announcements</h3>
<p>A WordPress blog has two types of content, <i>pages</i> and <i>posts</i>. The main difference between the two is that posts get listed in the blog&#8217;s feed while pages do not. Otherwise, they are essentially identical from an external point of view.</p>
<p>The basic strategy we&#8217;re going to use is use put <b>content on pages</b> and <b>announcements on posts</b>. I know a lot of people do it differently by putting everything in posts, but you&#8217;re just making it easier for others to grab and duplicate your content.</p>
<p>For a non-blog site (which is what you&#8217;re building here) keep the content out of the feed, either by putting it on pages and creating announcements that link to those pages <b>or</b> by using summaries in the feed. Either approach will work, really, but I prefer the content-on-pages approach. Why? Because with WordPress you can make </b>any page the blog&#8217;s front page</b> with just a few clicks. You&#8217;ll see what I mean shortly.</p>
<h3>4.2 The Announcements Page</h3>
<p>First, though, you&#8217;ll need to create a new page for displaying the blog&#8217;s posts. Normally this is the front page, but we&#8217;ll need to create a separate page for this. All you do is create an empty page, but give it a descriptive title like &#8220;Announcements&#8221; or &#8220;Blog&#8221; or &#8220;News&#8221;.</p>
<h3>4.3 The About Page</h3>
<p>Next, modify the default &#8220;About&#8221; page to something descriptive about the site. Installing a contact form (use one of several plugins available for this) is a good idea. Adding a street address ads credibility, too, but most people don&#8217;t want to do this.</p>
<p>Try to be unique. A lot of people who read the XFactor course went and created sites whose &#8220;About&#8221; pages literally cloned the example site in the course, which makes them quite easy to find. If you don&#8217;t believe me, try this Google phrase search (it&#8217;s actually two phrases) and you&#8217;ll find a large number of sites:</p>
<p align="center"><b>&#8220;we do not endorse any specific product&#8221; &#8220;give the consumer a choice&#8221;</b></p>
<p>I guess that&#8217;s one way to do microniche keyword research!</p>
<h3>4.4 The Privacy Policy Page</h3>
<p>Don&#8217;t forget that your site must include a privacy policy if you show AdSense ads on the site. The Privacy Policy Plugin I listed above makes it easy, but it&#8217;s certainly not the only choice.</p>
<h3>4.5 The Front Page</h3>
<p>Preliminaries aside, you&#8217;re ready to create the content for your front page. This will be the home page for your site, the first page most visitors will see. It should be focused around the main keyword for your microniche. Ideally, it should be unique content that you wrote yourself.</p>
<p>Don&#8217;t go overboard with using your keyword. One or twice will be enough, as it&#8217;s already in the domain name. Use it too much and the page will be flagged as spammy by Google.</p>
<h3>4.6 Configure the Front Page</h3>
<p>With the front page and announcements page defined, go to the WordPress dashboard under <b>Settings -> Reading</b> and configure WordPress to use pages for the front page and the posts page:</p>
<p><img src="http://www.memwg.com/wp-content/uploads/2010/10/mn-wp-6.png" alt="" title="mn-wp-6" width="482" height="200" class="alignnone size-full wp-image-3514" /></p>
<p>You may have to play with the front page title a bit. Don&#8217;t forget you can use the SEO plugin to change the title displayed without changing the actual title.</p>
<h3>4.7 Create a Custom Menu</h3>
<p>This is optional, but it adds a lot of flexibility: Create a custom menu (go to <b>Appearance -> Menus</b>). On the menu you can add all the pages you want and you can give them different, shorter titles. You can then create a widget that gets its list of pages from the custom menu.</p>
<h3>4.8 Make the First Announcement</h3>
<p>At this point your site is essentially up and running, so it&#8217;s time to tell the world about it. You do this by creating a post that announces the site. You can write it like a press release if you want, or just make it a paragraph or two. Make sure you insert a link or two in the post that links back to the home page with your main keyword as anchor text. </p>
<p>After you publish the post, a ping will be sent by WordPress to various services and you&#8217;ll get crawled by at least one of the search engines (Google, probably) within the hour.</p>
<p><b>Now is a good time to turn on the ads.</b> You&#8217;ve got content, so enable the ads.</p>
<h3>4.9 Add More Content and More Annoucements</h3>
<p>Now repeat the cycle over the next few days&#8230; add more content pages, each focused on one of your other related keywords. Create an announcement for each page. You can even do it all in one sitting if you use WordPress&#8217;s scheduling feature.</p>
<h3>4.10 Promote the Site</h3>
<p>Once the site is up and running, you can start promoting it. Essentially this means getting links to it from other sites. There are a zillion ways to do this, but the typical things you can do are:</p>
<ul>
<li><b>Submit a press release about the site</b> &mdash; Lots of free press release sites to choose from, submit to a few and if you can use good anchor text in the link back to your site. (Not always possible.)</li>
<li><b>Bookmark the site</b> &mdash; Submit your site to various bookmarking sites like Delicious.</li>
<li><b>Submit to feed aggregators</b> &mdash; This gets a few visitors and some links back to your site.</li>
<li><b>Submit articles</b> &mdash; Write content and submit them to article directories like EzineArticles, GoArticles, ArticleDashboard, etc.</li>
</ul>
<p>One key point is to <b>avoid using your keywords in titles</b> for content you submit elsewhere. You don&#8217;t want the website that links to your site to rank higher than yours. So if you write an article, make sure your title doesn&#8217;t include the keyword phrase you&#8217;re targeting. Instead, use that phrase as anchor text within the article bio box.</p>
<p>Keep building links over time. Use whitehat techniques only, please. You may wish to outsource some things (like directory submission) to others in order to save time. But in the early stages it&#8217;s best to do everything yourself. (One danger of outsourcing, BTW: you&#8217;re revealing your niche!)</p>
<h2>Conclusion</h2>
<p>I hope you&#8217;ve found this discussion useful. If you have any questions, please leave a comment below and I&#8217;ll be happy to answer them. (Note that all comments are moderated and I&#8217;m pretty aggressive about deleting comments that essentially say nothing!) </p>
<p>If you did find this useful, a link or bookmark back is always appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/how-to-create-a-microniche-adsense-site/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Web Hosting Fun!</title>
		<link>http://www.memwg.com/web-hosting-fun/</link>
		<comments>http://www.memwg.com/web-hosting-fun/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 18:40:28 +0000</pubDate>
		<dc:creator>Eric Giguere</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[basketball]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.memwg.com/?p=3388</guid>
		<description><![CDATA[Been busy the last few months, as you can probably tell. One of the things I did was move many of my sites over to a virtual private server hosting plan, which gave me some benefits but also some unexpected headaches. I thought I&#8217;d write up some of what I discovered in a new blog [...]]]></description>
			<content:encoded><![CDATA[<p>Been busy the last few months, as you can probably tell. One of the things I did was move many of my sites over to a <a href="http://webhostingpalooza.com/virtual-private-server-hosting/">virtual private server hosting</a> plan, which gave me some benefits but also some unexpected headaches. I thought I&#8217;d write up some of what I discovered in a new blog I call (drum roll please) <a href="http://webhostingpalooza.com">Web Hosting Palooza</a>. If VPS hosting, or any kind of web hosting, interests you, please add the blog to your reading list. I&#8217;ve got some interesting information coming up in the next few weeks.</p>
<p>One of the other things I&#8217;ve been doing is developing a website for the KW Lightning Girls Basketball Association, part of an experiment I&#8217;m doing on using WordPress to host sports club websites. (KW Lightning is a club focused on <a href="http://www.kwlightning.ca">girls basketball in Waterloo and Kitchener, Ontario</a>.) Also some interesting tidbits to share with you about that, although not sure where I&#8217;ll post them yet as it really has nothing to do with AdSense&#8230; overall it&#8217;s a pretty good platform, though, and much more flexible than a dedicated sports hosting package offered by various companies. (Cheaper, too, as long as you&#8217;ve got someone techie to handle it&#8230;)</p>
<p>Lots of stuff to do. I may even have an AdSense tidbit or two to post here in the near future&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memwg.com/web-hosting-fun/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

