<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>WpTweetBomb</title>
	
	<link>http://wptweetbomb.com</link>
	<description>AutoBlogging 2.0</description>
	<lastBuildDate>Fri, 23 Apr 2010 03:22:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wptweetbomb" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wptweetbomb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Setup &amp; Manage 5,000 Cron Jobs In 5 Minutes</title>
		<link>http://wptweetbomb.com/strategy/fast-cron-job-setup</link>
		<comments>http://wptweetbomb.com/strategy/fast-cron-job-setup#comments</comments>
		<pubDate>Fri, 23 Apr 2010 03:17:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[bulk setup]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://wptweetbomb.com/?p=1224</guid>
		<description><![CDATA[Here&#8217;s the situation:
You&#8217;ve got 50 WPTB blogs each with their own cronjob setup. Not only did it take time to setup &#8211; but it takes time to change things as well. You need something faster.
Here&#8217;s the solution:
Caveat: This only works for web based cronjobs (which WPTB uses) and not all cronjobs. Anything that&#8217;s triggered through [...]]]></description>
			<content:encoded><![CDATA[<h2>Here&#8217;s the situation:</h2>
<div class="yellow_box">You&#8217;ve got 50 WPTB blogs each with their own cronjob setup. Not only did it take time to setup &#8211; but it takes time to change things as well. You need something faster.</div>
<h2>Here&#8217;s the solution:</h2>
<p><strong>Caveat:</strong> This only works for web based cronjobs (which WPTB uses) and not <em>all</em> cronjobs. Anything that&#8217;s triggered through a url can use this script.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// WPTB Mass Cronjob Script</span>
<span style="color: #666666; font-style: italic;">// http://wptweetbomb.com/strategy/fast-cron-job-setup</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// How To Use This Script</span>
<span style="color: #666666; font-style: italic;">//	Save this code as a PHP file. Something like &quot;wptb_cron.php&quot; will do.</span>
<span style="color: #666666; font-style: italic;">//	Enter your WPTB cron urls below, one per line in the &quot;$data&quot; variable.</span>
<span style="color: #666666; font-style: italic;">//	Upload it to your server. Any server, in any location.</span>
<span style="color: #666666; font-style: italic;">//	Setup ONE cronjob to run this script on that same server.</span>
&nbsp;
&nbsp;
<span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'
&nbsp;
http://yourdomain.com/wp-content/plugins/wptweetbomb/wtb_go.php
http://otherdomain.com/wp-content/plugins/wptweetbomb/wtb_go.php
http://somedomain.com/wp-content/plugins/wptweetbomb/wtb_go.php
&nbsp;
'</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">// Don't edit below here unless you feel like tweaking some code.</span>
&nbsp;
&nbsp;
<span style="color: #000088;">$urls</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$urls</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$url</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	get<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$url</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> get<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$url</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$curl</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #000088;">$url</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_USERAGENT<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_HTTPHEADER<span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Cache-Control: max-age=0&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Connection: keep-alive&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Keep-Alive: 300&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Accept-Language: en-us,en;q=0.5&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Pragma: &quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_ENCODING<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;gzip,deflate&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_TIMEOUT<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_AUTOREFERER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_FOLLOWLOCATION<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_close</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$curl</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$html</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h2>How To Use The Script</h2>
<ol>
<li>Save the code as a PHP file. Something like &#8220;wptb_cron.php&#8221; will do.</li>
<li>Enter your WPTB cron urls, one per line in the &#8220;$data&#8221; variable.</li>
<li>Upload it to your server. Any server, in any location.</li>
<li>Setup ONE cronjob to run this script on that same server.</li>
</ol>
<p>You&#8217;re done. You now only have to change 1 cronjob and have it apply to all your blogs.<br />
Each time the script runs it will trigger all the urls you&#8217;ve entered as part of the &#8220;$data&#8221; variable. Also this script will take one second per url to run. If you need more speed then make sure you&#8217;ve got cURL v.7.15.5+ and PHP v.5.2.3+ then change &#8220;CURLOPT_TIMEOUT&#8221; for &#8220;CURLOPT_TIMEOUT_MS&#8221; and it will go <em>much</em> faster.</p>
<p>I may bring something like this into the plugin in the future as well to help with bulk blog management.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://wptweetbomb.com/strategy/fast-cron-job-setup/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes+-+http://b2l.me/qstau+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://wptweetbomb.com/strategy/fast-cron-job-setup" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes&amp;desc=Here%27s%20the%20situation%3A%0D%0AYou%27ve%20got%2050%20WPTB%20blogs%20each%20with%20their%20own%20cronjob%20setup.%20Not%20only%20did%20it%20take%20time%20to%20setup%20-%20but%20it%20takes%20time%20to%20change%20things%20as%20well.%20You%20need%20something%20faster.%0D%0AHere%27s%20the%20solution%3A%0D%0ACaveat%3A%20This%20only%20works%20for%20web%20based%20cronjobs%20%28which%20WPTB%20uses%29%20and%20not%20all%20cronjobs." rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wptweetbomb.com/strategy/fast-cron-job-setup&amp;title=Setup+%26+Manage+5%2C000+Cron+Jobs+In+5+Minutes&amp;summary=Here%27s%20the%20situation%3A%0D%0AYou%27ve%20got%2050%20WPTB%20blogs%20each%20with%20their%20own%20cronjob%20setup.%20Not%20only%20did%20it%20take%20time%20to%20setup%20-%20but%20it%20takes%20time%20to%20change%20things%20as%20well.%20You%20need%20something%20faster.%0D%0AHere%27s%20the%20solution%3A%0D%0ACaveat%3A%20This%20only%20works%20for%20web%20based%20cronjobs%20%28which%20WPTB%20uses%29%20and%20not%20all%20cronjobs.&amp;source=WpTweetBomb" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://wptweetbomb.com/strategy/fast-cron-job-setup/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>$10 / Day / Blog</title>
		<link>http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging</link>
		<comments>http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging#comments</comments>
		<pubDate>Mon, 05 Apr 2010 16:52:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Strategy]]></category>
		<category><![CDATA[$10]]></category>
		<category><![CDATA[autoblogging]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[monetization]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WPTB]]></category>

		<guid isPermaLink="false">http://wptweetbomb.com/?p=1153</guid>
		<description><![CDATA[&#8220;I would like to reach a goal of $100 a day, what do I need to do?&#8221;
- asked on the support forum by Rayche

I started writing a reply in the support forum but it got pretty long and I&#8217;m sure others would benefit from reading this, so it became a blog post. Here&#8217;s some pointers [...]]]></description>
			<content:encoded><![CDATA[<div class="yellow_box">
<h4 style="text-align: center;">&#8220;I would like to reach a goal of $100 a day, what do I need to do?&#8221;</h4>
<p style="text-align: center;">- asked on the support forum by Rayche</p>
</div>
<p>I started writing a reply in the support forum but it got pretty long and I&#8217;m sure others would benefit from reading this, so it became a blog post. Here&#8217;s some pointers that should help you Rayche, as well as everyone else&#8230;</p>
<p><img src="http://wptweetbomb.s3.amazonaws.com/wp-content/uploads/2010/04/10_dollars.jpg" alt="10 dollars $10 / Day / Blog" title="10_dollars" width="600" height="252" class="aligncenter size-full wp-image-1186" style="border:0;" /></p>
<h2>What&#8217;s This Guide?</h2>
<p>Much of what this guide covers is beyond  the scope of WPTB but after Rayche&#8217;s question I thought a few would find  this helpful. The main purpose of the following is to point you in the  right direction and get your cogs turning. It&#8217;s not the only way you can  do things &#8211; it&#8217;s simply 1 outline in a sea of possible methods. You  don&#8217;t have to follow it to the letter.</p>
<p>The one most important aspect is:  keep trying and you&#8217;ll get there. Get a clear  picture of what you&#8217;re trying to do and keep it at the front of your  mind. Every action you take should support this picture.</p>
<h2>No One Cares</h2>
<p>It may sound harsh, but the bottom line is that you&#8217;ve got to do everything yourself. No one else really cares about you, except you. This means you shouldn&#8217;t expect anyone to give away their whole strategy that makes them money for 2 main reasons. Firstly if they did more people would use it and reduce the effectiveness.</p>
<p>Secondly they have spent time, money and effort working out something that works &#8211; why would they share it for free? This isn&#8217;t directed at you Rayche, but more at others who expect the world for a few dollars. Treat this like a real business, which by the way you should be. How you expect to run this like a business, if you&#8217;re not a business?</p>
<h2>What WPTB Does</h2>
<p>It&#8217;s important to know this. It won&#8217;t make you breakfast, tuck you in at night or tell you the secrets of the universe. WPTB also isn&#8217;t designed to achieve SERPs for specific keywords. That&#8217;s   simply not what it does. In essence, what WPTB does is &#8220;get niche traffic&#8221;. You point the blog&#8217;s theme in the right direction with more general keywords, and WPTB will use these to find specific content.</p>
<p>Of course, as with anything you need use use it correctly. If you buy a rifle to hunt deer and shoot yourself in the foot, is it your fault of the rifle&#8217;s? The point is: learn to use the rifle and you can drop an elephant.</p>
<h2><strong>First Step: 1 Domain</strong></h2>
<p>Pick 1 blog. Just one, on a unique domain. Ideally it will be on it&#8217;s  own IP, but it&#8217;s not essential. If possible you should make sure the  other residents of this IP aren&#8217;t too noisy so you get a clean slate to  start with, but on shared hosting you can&#8217;t always do this. So the message here  is to use a VPS if possible.</p>
<p>The reason you&#8217;re picking just one domain  is so you can put all your energy into it. When you&#8217;re trying to nail  down a core strategy you don&#8217;t want the admin hassles of trying to constantly make changes to lots of blogs. Pick 1 and stick with it until  you reach your goal&#8230;</p>
<h2><strong>Define A Goal</strong></h2>
<p>You mentioned $100 daily, but you didn&#8217;t say (and I imagine you&#8217;re not  too bothered) how many domains it takes to achieve this. You can do this  with 1 domain or 1 thousand. Pick a figure you want before you start.  It&#8217;s not really important as almost anything is achievable.</p>
<p>For this example lets say we have the goal of $100 daily across 10  sites &#8211; so $10 per site, per day. The advice given below is therefore  tailored to this goal. The strategies and specific tactics you employ  would be different for different goals. If you use common sense you can adapt these points for almost any other goal however.</p>
<h2><strong>Set A Starting Point</strong></h2>
<p>It&#8217;s going to take testing and tweaking to hit any given goal but you&#8217;ve  got to start somewhere. The 2 fixed variables here are that you&#8217;re  running WP and using WPTB. Everything else is variable and needs to be  tweaked to align with your goal. So to begin with you need to take best  guesses at the variable stuff. It&#8217;s not important what you choose  for other stuff like the WP theme, monetization options, tweet settings  etc.</p>
<p>The important thing is to keep it simple. If something like a  plugin or theme doesn&#8217;t directly support your goal then don&#8217;t use it.  Keep it brain-numbingly simple, as you can always add bells and whistles  later once you&#8217;ve got the core strategy working.</p>
<h2><strong>What Niche?</strong></h2>
<p>Eventually you&#8217;ll want to sink your teeth into a large, competitive niche as that&#8217;s where the money is. I don&#8217;t necessarily mean a super niche (Casino, Porn, Pills etc) but one where there&#8217;s enough pie to go around. The more competition you&#8217;ve got, the more money there usually is.</p>
<p>Before that though you should always start with a very small niche. &#8220;Purple Lizard Farming&#8221; is the level you want to start at. By doing this you&#8217;ve got a much more flexible platform on which to experiment, make mistakes and tweak results. Plus it&#8217;s easier to rank. For the purposes of this first blog it doesn&#8217;t mater too much what niche you pick, but follow these guidelines:</p>
<ol>
<li>Pick a small niche. &#8220;Small&#8221; is relative and subjective, but use your  judgement.</li>
<li>Make sure there&#8217;s competition. Competitors mean there&#8217;s money.</li>
<li>Make sure there are affiliate programs in the niche. Check the SERPs, ClickBank, CJ etc.</li>
</ol>
<h2>Keywords  &amp; Content Blocks</h2>
<p>With WPTB blogs I usually base a blog around a keyword. The homepage is  optimized for the main niche keyword (like &#8220;Purple Lizard Farming&#8221;) then  the content blocks will be other related or narrower keywords. The  content blocks don&#8217;t all have to be stuff like &#8220;Purple Lizard Farming in  TX&#8221;, &#8220;Online Purple Lizard Framing&#8221; etc. They can simply be related  keywords if you like, for example &#8220;Blue Lizard Farming&#8221;, &#8220;How To Farm  Lizards&#8221;.</p>
<p>I use the Google Keyword Tool to find keywords. You may have other favourite tools but here&#8217;s what I do, from keywords to content blocks&#8230;</p>
<ol>
<li>Set the region to &#8220;All countries and Territories&#8221;</li>
<li>Enter the main niche keyword</li>
<li>Make sure &#8220;Use Synonyms&#8221; is checked</li>
<li>Sort the results by advertiser competition</li>
<li>Pick 10-50 money keywords. (i.e. keywords that are product related). I usually start with 10 and add more later. Also I manage this in 1 excel sheet with a separate tab for each blog.</li>
<li>All keywords need to be short. &#8220;Best Lizard Farm&#8221; is good, while &#8220;Best Lizard Farm in TX&#8221; would not be good. Remember you&#8217;re only directing the blog&#8217;s theme, not specifying the keywords you want to rank for. More general keywords have more content available.</li>
<li>Add them to the mass cat &amp; content block creator. I sometimes use just 1 keyword (the exact same one) as the category name. Sometimes I add a few closely related ones. For example, if the content block is &#8220;Funky Lizard Farming&#8221; then I would enter the line like this:<br />
<span style="color: #000080;">funky lizard farming # funky lizard farming</span><br />
Or sometimes like this&#8230;<br />
<span style="color: #000080;">funky lizard farming # funky lizard farms, funky lizards farm, very funky lizard farm</span><br />
The reason I&#8217;ve recommended using tons of keywords in the past is that most people haven&#8217;t got the hang of using the keywords with WPTB. The aim isn&#8217;t to get ranked for these keywords &#8211; they are simply used to find content and ads. So keep them as general as you can whilst still maintaining the theme you want.</li>
</ol>
<h2><strong>Monetization</strong></h2>
<p>Very important. There&#8217;s no point in burning through bandwidth, time &amp; traffic without making sure you can squeeze some money  from the visitors. This also means that you should have ways to monetize  your traffic from day 1. Don&#8217;t get the site built up then do monetization &#8211; do it immediately.</p>
<p>Monetization is also very open ended. There&#8217;s so many ways to get cash from an autoblog with more arriving every day. I&#8217;ll mention a few here&#8230;</p>
<ul>
<li><strong>Contextual Affiliate</strong><br />
There&#8217;s an implementation of this included in the plugin as &#8220;Ad Blocks&#8221;. The benefit of using this is that you can have relevant ads next to content &#8211; when you can&#8217;t predict the exact keywords used in the content &#8211; or you don&#8217;t want to pre choose lots of ads. The CTR&#8217;s you get will be largely based on visual appearance. The images used and formatting of them is what will get clicks, assuming the images are at least semi-relevant to the content. WPTB comes with a selection of ad block formats built in (see the &#8220;premade template&#8221; link) but you can make your own if you know some basic html and css. The current WPTB version as of writing this is v1.5.9.1, and in future versions I&#8217;ll be adding more premade templates for you. I prefer this monetization option over AdSense, but you can always use AdSense as well.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>AdSense</strong><br />
It&#8217;s easy to use and provides relevant ads for almost any content&#8230; but it pays peanuts. It&#8217;s a valid option to generate revenue from your blogs but you will undoubtedly make more from a well placed affiliate ad. If you plan on using AdSense with an autoblog know that you&#8217;re treading on shaky ground. Best case scenario is that you get fat pay-checks and no problems. Worst case scenario is that someone discovers your autoblog, recognises it&#8217;s an autoblog and whines to Google, which may risk your account. The amount you can make here is in part dependant on your keywords. Big, competitive niche&#8217;s tend to have higher CPC&#8217;s so AdSense might not be a good match for your first blog.  I read a good quote recently (think it was Eli @ Blue Hat Seo)&#8230; &#8220;The day Google starts giving a damn about my business is the day I start caring about theirs&#8221;. That pretty much sums up my attitude when it comes to AdSense.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>Link Selling</strong><br />
You&#8217;ve probably overlooked this option, but it&#8217;s a valid one. I&#8217;ve found that when you use WPTB right some nice PR builds up. Now, normally I don&#8217;t bother with PR as it&#8217;s another one of Google&#8217;s magic veils to obscure what&#8217;s really going on. Really the only time to pay attention to PR is when you&#8217;re selling links. If you build a nice PR 3/4 blog then by selling sponsored posts and blogroll links you could pretty easy hit $10 per day per blog. Also because of the lag with PR updates (usually every quarter) you&#8217;ve got time to build more and sell more. The downside with this method is that it&#8217;s tough to sell links on a new blog, so you may want to use another method until the blogs accumulates some PR. You&#8217;ll get more money selling direct to end users, but it&#8217;s more automated going through a link broker/network. You should probably test both to see which fits with you.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>Flipping</strong><br />
What a blog sells for depends on many factors, but if it&#8217;s generating income through whatever means in an automated fashion then flipping is an option. You can even pretty easily flip blogs that don&#8217;t make anything &#8211; ones that just have a bunch of niche traffic for example. When flipping a blog like this making it look pretty helps a lot. That means smoothing off any rough edges on the blog, making sure you&#8217;re using a nice theme, a custom logo etc. To give you an idea of potential, if you&#8217;ve got a nice site that&#8217;s doing somewhere near the $10 a day goal then flipping it for $1-5k isn&#8217;t out of the question. If you pick an achievable mid point of around $3k then liquidating one of these blogs would produce the same income you would otherwise get in around a year. If you can build up these in 3-6 months then keep flipping them you&#8217;ve got a reasonable model right there.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>Single Affiliate</strong><br />
Pick 1 affiliate product. Make sure it&#8217;s a good product with a nice sales page, high payout etc. Where you choose the product from will depend on the niche. Clickbank doesn&#8217;t do much other than &#8220;make money&#8221;, ebooks, software and membership sites. The payouts can be pretty high, but so can the refunds. Amazon and CJ are good for commercial, physical product based blogs but the payout is lower than other options. You should pick 1 product/merchant and put a big ass banner on your blog. Ideally have it in the header so it&#8217;s on every page of your site. You can put similar banners to the same merchant in the sidebar, post content etc as well. The whole point of every page will be to get a click on this banner. To refine this strategy you can try getting your own banners made for the merchant to improve CTR&#8217;s. Using this method CTR&#8217;s of 10% may be average. Conversions will of course depend on the specific product.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>Self Promotion</strong><br />
Got a something to sell? Use autoblogs to syphon traffic to your main site, similar to the &#8220;Single Affiliate&#8221; option. As you&#8217;re both the merchant and publisher in this case it does give you extra flexibility as to how you promote our stuff. You can get traffic, but you can also grow autoblogs for links. Personally I don&#8217;t bother with this as the admin hassles of managing IP&#8217;s, domain registrations, link patterns and everything else is a pain.<br />
<span style="color: #ffffff;">.</span></li>
<li><strong>Opt Ins</strong><br />
You can put custom html in an adblock with WPTB, so you could simply use  an Aweber optin form. When you combine this with WPTB&#8217;s popup box option to display the form it can work nicely. If you&#8217;ve got a list for your own product or an auto responder packed with affiliate links then a bunch of autoblogs designed to build your list can pay off big time. Don&#8217;t overlook this option as you can kill it with this <img src='http://wptweetbomb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' title="$10 / Day / Blog" />  If you decide to run with this make sure to have 1 list per niche, then build a bunch of blogs each based around a relevant keyword for the niche. With 10 blogs each getting 10 optins daily you&#8217;re growing a list by 100 people daily. This is worth more than $100 a day to you as good email marketing works great. You can promote stuff many times to each person and the whole thing&#8217;s cumulative. Once you get a big list in a niche you&#8217;re set. A 20 part AR sequence, 1 every 3 days with good content and recommended affiliate links throughout will probably knock it out of the ball park for you. You can outsource the AR copy if you like, but make sure it&#8217;s good stuff. Another benefit of this method is you only really have 1 focal point &#8211; your list.</li>
</ul>
<h2><strong>Tracking</strong></h2>
<p>You need to do this. Don&#8217;t ever skip this step as it&#8217;s one of the most  important things you can do. This guide isn&#8217;t about tracking systems so  you&#8217;ll need to do your own research &#8211; there&#8217;s lots of info out there. Without  tracking you&#8217;ll never know what&#8217;s working and what&#8217;s not. You&#8217;ll just be  wondering blindly through the darkness like so many others. The key  metrics you want to be tracking (daily, per blog) are&#8230;</p>
<ul>
<li>Overall unique visitors</li>
<li>Breakdown of most popular pages by unique visits</li>
<li>Search keywords used to find your site, broken down by page</li>
<li>Impressions, Clicks &amp; CTR for each item that makes you money</li>
<li>Search keywords that visitors who clicked on your banners/ads used</li>
<li>Conversion rate of the offer/product</li>
<li>Keyword the converting visitor originally used to find your site</li>
</ul>
<p>The above should give you a good starting point but there may be other  things you need/want to track as well. You basically need to know  exactly what&#8217;s working so you can improve on it, and probably more  importantly &#8211; you need to be able to cut the dead wood.</p>
<h2>WP Template</h2>
<p>The template you use depends on your monetization strategy. If you&#8217;re aiming for click-throughs choose a very plain theme. Lots of white, lots of space, simple black text. When doing this you want your banner/offer to be the most visible and colourful thing on the page. It should also be the only interesting element on the page.</p>
<p>If you&#8217;re flipping a site you want it pretty. Pick a theme that&#8217;s well designed, with strong colours and get a custom logo done. Use some sexy widgets and flashy plugins. Make it look like something worth owning. <a href="http://wptweetbomb.com/woothemes">Woo Themes</a> do some great ones &#8211; I&#8217;m using one on this site in fact.</p>
<p>The comments about a &#8220;pretty&#8221; site also apply to vanilla autoblogging using AdSense or contextual affiliate stuff. You want it to look like a &#8220;real&#8221; blog so it doesn&#8217;t attract negative attention. You may have to balance the plain style (for click throughs) and the sexyness of the theme.</p>
<h2>On-Site SEO</h2>
<p>Most people should already know this, but I&#8217;ll mention it briefly. Kind of linked to the WP template you choose as well. Make sure keyword rich titles are H1 tags, that HTML titles are enticing and contain keywords etc. Use H2 and H3&#8217;s for bonus points. Get around 500 words of relevant text on each page and use the DeDuper to help posts stick in the index.</p>
<p>Don&#8217;t concern yourself with nofollow or JS links for most purposes. We want Google to crawl and index your site in this case.</p>
<h2>Plugins</h2>
<p><a href="http://wptweetbomb.com/help/guides/autoblogging-plugins">See here for plugins to use for autoblogging</a>. You don&#8217;t have to use all of them (in fact you defiantly shouldn&#8217;t). Try and pick out ones that support your overall strategy. If something doesn&#8217;t add to your goal then don&#8217;t use it as more plugins = more bloat. If there&#8217;s just one I&#8217;d say is mandatory it&#8217;s WP Super Cache. Stuff to help automate SEO is always tasty as well.</p>
<h2>Tweeting</h2>
<p>The whole tweeting angle in WPTB serves 2 purposes. Firstly it gets you a small boost of Twitter traffic which is nice. These guys can be tough to convert so if you&#8217;re basing a strategy around Twitter traffic promote general offers/products or &#8220;get more follower&#8221; software.</p>
<p>The second reason to tweet posts with WPTB is more important. It&#8217;s to get links to your posts. Each post will have multiple external links pointing to it immediatly. This won&#8217;t really help you get ranked &#8211; it&#8217;s to get the spiders moving through your site. The search engine siders will come crawling, which is the first step towards getting indexed. Also the Twitter scrapers will come and steal your content &#8211; and some of them will link back, which is nice.</p>
<h2>Links</h2>
<p>There are 2 ways to play this. If you&#8217;re going for some specific rankings in conjunction with WPTB (even though this isn&#8217;t WPTB&#8217;s speciality) then you&#8217;ll want to do the usual &#8211; get focused anchor text from other sites. You&#8217;ll be pointing these links to separate (non WPTB), seo optimized pages. Don&#8217;t worry about nofollow by the way <img src='http://wptweetbomb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' title="$10 / Day / Blog" /> </p>
<p>The other way to do it, which is more in-line with WPTB is to simply create some link noise. By creating more entry points into your blog you&#8217;ll get indexed quicker and some of the mystical green pixels (aka PageRank) will appear as well. Good stuff to do here would be directory links, blog comments, RSS subs, the &#8220;Instant Links&#8221; feature in WPTB etc. If you include links to other blogs in your post content you&#8217;ll get some natural pingbacks as well. Also when you tweet each post the Twitter scrapes will help to promote your content through tweet search sites/aggregators. Stay away from Xrumer and similar power linking tools for new sites (or at least go very slow).</p>
<p>Whatever you do &#8211; make sure you get some type of external links to your site for best results.</p>
<h2>Do More of What Works</h2>
<p>I would have said &#8220;testing&#8221; but lots of people seem to be scared of that  word, so simply &#8220;do more of what works&#8221;. If something doesn&#8217;t work try  something else &#8211; but only after going deep and exploring the idea all you can. Once you find a particular tactic or strategy that works  it&#8217;s important that you do 2 things. Firstly &#8211; don&#8217;t tell anyone. Don&#8217;t  even speak it aloud as things that work have a habit of spreading  quickly. You&#8217;re not safeguarding an occult secret, but you don&#8217;t want to take any chances either.  Secondly make sure you do more of it. Expand  on the idea with your first site until the ROI has been raised as high  as you can get it.</p>
<p>If you&#8217;ve tried various things and you&#8217;re  still not hitting the goal of $10 a day then guess what you need to do?  Right, more of the above <img src='http://wptweetbomb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="$10 / Day / Blog" /> </p>
<h2>Setup  Blog No.2</h2>
<p>Do everything again for a second blog. At this stage you don&#8217;t want to  scale to 100 blogs. You shouldn&#8217;t even try that yet as you don&#8217;t know if  this strategy of yours will scale across niche&#8217;s. Don&#8217;t try to mass  scale the idea until you&#8217;ve setup 5-10 sites yourself. This will help  ensure that the idea is rock solid and will work in different niche&#8217;s.  It will also give you a very good picture of all the processes involved  so you&#8217;ll actually know what you need to automate/outsource. You don&#8217;t  get this complete picture by just doing a couple of blogs.</p>
<p>The other way of looking at this is that 1 niche is all you need to know. By building lots of blogs in the same niche you start to build leverage which is key. What you can do is do your first site in a small niche, then try multiple larger ones. Find one that you like (and one you can generate revenue from) and start to cut a larger slice of the pie for yourself by building more blogs.</p>
<p>Then there&#8217;s 1 thing left to do&#8230;</p>
<h2>Scale  <img src='http://wptweetbomb.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="$10 / Day / Blog" /> </h2>
<p>This is last for a reason. Don&#8217;t run before you can walk. At this point  you should have about 10 hand build blogs each making $10+ per day and  you know the exact steps, plugins, themes etc that work for you. Now  things get fun as you can do less and make more.</p>
<p>There&#8217;s only so much 1 person can handle and if you want to build a substantial asset you may have to hire people. If you&#8217;re in the West then outsource to the East. If you&#8217;re in the East then you have an advantage as the cost of living is usually lower and you&#8217;ll be generating dollars, so hire people in your location.</p>
<p>Before doing any of this make sure to write down the steps you go through to create a successful blog. Then give different tasks to different people. The last thing you want is an entrepreneurial employee duplicating your efforts <img src='http://wptweetbomb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' title="$10 / Day / Blog" /> </p>
<p>By the way, I&#8217;ll be making more posts like this on the blog soon. If you want something specific addressed let me know in the forum. Any comments use the form below&#8230;</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=%2410+%2F+Day+%2F+Blog+-+http://b2l.me/nedzd+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog&amp;desc=%0D%0A%22I%20would%20like%20to%20reach%20a%20goal%20of%20%24100%20a%20day%2C%20what%20do%20I%20need%20to%20do%3F%22%0D%0A-%20asked%20on%20the%20support%20forum%20by%20Rayche%0D%0A%0D%0AI%20started%20writing%20a%20reply%20in%20the%20support%20forum%20but%20it%20got%20pretty%20long%20and%20I%27m%20sure%20others%20would%20benefit%20from%20reading%20this%2C%20so%20it%20became%20a%20blog%20post.%20Here%27s%20some%20pointers%20that%20should%20help%20" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging&amp;title=%2410+%2F+Day+%2F+Blog&amp;summary=%0D%0A%22I%20would%20like%20to%20reach%20a%20goal%20of%20%24100%20a%20day%2C%20what%20do%20I%20need%20to%20do%3F%22%0D%0A-%20asked%20on%20the%20support%20forum%20by%20Rayche%0D%0A%0D%0AI%20started%20writing%20a%20reply%20in%20the%20support%20forum%20but%20it%20got%20pretty%20long%20and%20I%27m%20sure%20others%20would%20benefit%20from%20reading%20this%2C%20so%20it%20became%20a%20blog%20post.%20Here%27s%20some%20pointers%20that%20should%20help%20&amp;source=WpTweetBomb" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://wptweetbomb.com/strategy/10-dollars-a-day-with-autoblogging/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>DeDuping and AutoFollow are built into v1.1</title>
		<link>http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1</link>
		<comments>http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1#comments</comments>
		<pubDate>Wed, 18 Nov 2009 11:38:09 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Version Updates]]></category>

		<guid isPermaLink="false">http://wptweetbomb.com/?p=336</guid>
		<description><![CDATA[2 new (pretty cool) features have been added in v1.1.

Auto Unique Content
There&#8217;s now an checkbox in your admin panel to &#8220;DeDupe&#8221; all content that&#8217;s posted. What this does is swap a random amount of stop words for their html unicode equivalents. For example, &#8220;of&#8221; would become &#8220;&#38;#097;&#38;#110;&#38;#100;&#8221;. This means that the page is now more [...]]]></description>
			<content:encoded><![CDATA[<p>2 new (pretty cool) features have been added in v1.1.</p>
<ol>
<li><strong>Auto Unique Content</strong><br />
There&#8217;s now an checkbox in your admin panel to &#8220;DeDupe&#8221; all content that&#8217;s posted. What this does is swap a random amount of stop words for their html unicode equivalents. For example, &#8220;of&#8221; would become &#8220;&amp;#097;&amp;#110;&amp;#100;&#8221;. This means that the page is now more relevant to it&#8217;s core keywords and some fluff has been removed and more importantly the code of the content is now unique compared with where it has been taken from. Google likes this.</li>
<li><strong>Auto Follow Feature</strong><br />
You can now choose to automatically add friends to each Twitter account after they tweet. This is really nice as it will boost the effectiveness of the whole site. It&#8217;s obvious that you will get more traffic and better CTR&#8217;s from people who are following your Twitter account than just from public search&#8217;s. By adding friends to each Twitter account they will naturally get followers back &#8211; getting you more traffic.</li>
</ol>
<p>Any questions about the update email me or comment here.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=DeDuping+and+AutoFollow+are+built+into+v1.1+-+http://b2l.me/ect4m+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1&amp;desc=2%20new%20%28pretty%20cool%29%20features%20have%20been%20added%20in%20v1.1.%0D%0A%0D%0A%09Auto%20Unique%20Content%0D%0AThere%27s%20now%20an%20checkbox%20in%20your%20admin%20panel%20to%20%22DeDupe%22%20all%20content%20that%27s%20posted.%20What%20this%20does%20is%20swap%20a%20random%20amount%20of%20stop%20words%20for%20their%20html%20unicode%20equivalents.%20For%20example%2C%20%22of%22%20would%20become%20%22%26amp%3B%23097%3B%26amp%3B%231" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1&amp;title=DeDuping+and+AutoFollow+are+built+into+v1.1&amp;summary=2%20new%20%28pretty%20cool%29%20features%20have%20been%20added%20in%20v1.1.%0D%0A%0D%0A%09Auto%20Unique%20Content%0D%0AThere%27s%20now%20an%20checkbox%20in%20your%20admin%20panel%20to%20%22DeDupe%22%20all%20content%20that%27s%20posted.%20What%20this%20does%20is%20swap%20a%20random%20amount%20of%20stop%20words%20for%20their%20html%20unicode%20equivalents.%20For%20example%2C%20%22of%22%20would%20become%20%22%26amp%3B%23097%3B%26amp%3B%231&amp;source=WpTweetBomb" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://wptweetbomb.com/version-updates/deduping-and-autofollow-are-built-into-v1-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing is showing 2k+ clicks…</title>
		<link>http://wptweetbomb.com/blog/testing-is-showing-2k-clicks</link>
		<comments>http://wptweetbomb.com/blog/testing-is-showing-2k-clicks#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:20:20 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Case Studies]]></category>

		<guid isPermaLink="false">http://wptweetbomb.com/?p=325</guid>
		<description><![CDATA[




		
			Subscribe to the comments for this post?
		
		
			Tweet This!
		
		
			Digg this!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on del.icio.us
		
		
			Share this on Reddit
		
		
			Share this on Technorati
		
		
			Post this on Diigo
		
		
			Share this on Mixx
		
		
			Share this on Linkedin
		





]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-326" title="2k" src="http://wptweetbomb.com/wp-content/uploads/2009/11/2k.png" alt="2k Testing is showing 2k+ clicks..." width="475" height="404" /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://wptweetbomb.com/blog/testing-is-showing-2k-clicks/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Testing+is+showing+2k%2B+clicks...+-+http://b2l.me/edb93+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks..." rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks..." rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks..." rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks..." rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks...&amp;desc=" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks..." rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wptweetbomb.com/blog/testing-is-showing-2k-clicks&amp;title=Testing+is+showing+2k%2B+clicks...&amp;summary=&amp;source=WpTweetBomb" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://wptweetbomb.com/blog/testing-is-showing-2k-clicks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wtb Just Got 529 Clicks in 2.5 Hours</title>
		<link>http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours</link>
		<comments>http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours#comments</comments>
		<pubDate>Mon, 16 Nov 2009 20:26:57 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wptweetbomb.com/?p=320</guid>
		<description><![CDATA[A few hours ago I setup a dedicated bit.ly account to track the exact number of clicks WpTweetBomb was getting instead of it being messed in with my main account.
I was just about finished putting together the first forum posts for the launch when I checked the bit.ly stats and it&#8217;s got 529 clicks already!
It [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wptweetbomb.s3.amazonaws.com/wp-content/uploads/2010/01/5001.png" alt="5001 Wtb Just Got 529 Clicks in 2.5 Hours" title="500[1]" width="378" height="389" class="alignleft size-full wp-image-469" />A few hours ago I setup a dedicated bit.ly account to track the exact number of clicks WpTweetBomb was getting instead of it being messed in with my main account.</p>
<p>I was just about finished putting together the first forum posts for the launch when I checked the bit.ly stats and it&#8217;s got 529 clicks already!</p>
<p>It will be interesting to see what the average daily number of uniques is once this has been running for a few days.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Wtb+Just+Got+529+Clicks+in+2.5+Hours+-+http://b2l.me/ednj7+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours&amp;desc=A%20few%20hours%20ago%20I%20setup%20a%20dedicated%20bit.ly%20account%20to%20track%20the%20exact%20number%20of%20clicks%20WpTweetBomb%20was%20getting%20instead%20of%20it%20being%20messed%20in%20with%20my%20main%20account.%0D%0A%0D%0AI%20was%20just%20about%20finished%20putting%20together%20the%20first%20forum%20posts%20for%20the%20launch%20when%20I%20checked%20the%20bit.ly%20stats%20and%20it%27s%20got%20529%20click" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours&amp;title=Wtb+Just+Got+529+Clicks+in+2.5+Hours&amp;summary=A%20few%20hours%20ago%20I%20setup%20a%20dedicated%20bit.ly%20account%20to%20track%20the%20exact%20number%20of%20clicks%20WpTweetBomb%20was%20getting%20instead%20of%20it%20being%20messed%20in%20with%20my%20main%20account.%0D%0A%0D%0AI%20was%20just%20about%20finished%20putting%20together%20the%20first%20forum%20posts%20for%20the%20launch%20when%20I%20checked%20the%20bit.ly%20stats%20and%20it%27s%20got%20529%20click&amp;source=WpTweetBomb" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://wptweetbomb.com/uncategorized/wtb-just-got-529-visitors-in-2-5-hours/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->

