<?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>Affiliate Marketing Blog &#124; How to Earn Money Online - Earners Blog &#187; Wordpress</title>
	<atom:link href="http://www.earnersblog.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.earnersblog.com</link>
	<description></description>
	<lastBuildDate>Sun, 30 Oct 2011 23:48:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>VPS Optimization Guide</title>
		<link>http://www.earnersblog.com/vps-optimization-guide/</link>
		<comments>http://www.earnersblog.com/vps-optimization-guide/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 20:00:05 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/?p=599</guid>
		<description><![CDATA[When you get to the level where you start needing VPS&#8217; (Virtual Private Servers) it&#8217;s important to understand how they work &#38; how you can get the most out of them...]]></description>
			<content:encoded><![CDATA[<p>When you get to the level where you start needing VPS&#8217; (Virtual Private Servers) it&#8217;s important to understand how they work &amp; how you can get the most out of them. Poorly set up servers can cause you all sorts of problems like Downtime, Slow MYSQL or not withstanding the <a href="http://www.earnersblog.com/digproof-your-wordpress/">force of something like Digg</a>.</p>
<p>This article will cover everything you need to do to ensure that your VPS is performing as fast as possible, which mostly focuses on optimizing your memory usage. Please ensure you make backups of your existing my.cnf &#038; httpd.conf we will not be held responsible for any problems.</p>
<p>What you will need to action this guide:</p>
<ol>
<li>Your server specs (most importantly Guaranteed RAM &amp; Burst RAM)</li>
<li>Access to your Web Host Support for installation of</li>
<li>Root access to your VPS via SSH</li>
<li>FTP Access to your server</li>
<li>A brief knowledge of an editior (i.e. VI) if not I&#8217;ll provide the commands you need to know</li>
<li>How to restart mysql &amp; apache in your server operating environment</li>
<li>Access to WHM</li>
</ol>
<p><strong>Viewing your PHPinfo</strong></p>
<p>Create a file called phpinfo.php &amp; include the follow in it:</p>
<p>[coolcode]<?php phpinfo();<br />
?>[/coolcode]</p>
<p>Navigate to that file on your server i.e. http://www.yourserver.com/phpinfo.php, you should see something like this:</p>
<p style="text-align: center;"><img class="size-full wp-image-606 aligncenter" title="PHPInfo" src="http://www.earnersblog.com/wp-content/uploads/2008/12/phpinfo.png" alt="PHPInfo" width="420" height="516" /></p>
<p>What you need to ask your host to do:</p>
<ol>
<li>Ensure that you have the <a title="PHP Version" href="http://www.php.net/downloads.php" target="_blank">latest PHP version</a> (currently 5.28)</li>
<li>Make sure that PHP is compiled with the latest version of <a title="Zend Optimizer" href="http://www.zend.com/en/downloads/" target="_blank">Zend Optimizer</a>, <a title="Eaccelerator" href="http://eaccelerator.net/" target="_blank">Eaccelerator</a> &amp; <a title="ioncube Accelerator" href="http://www.php-accelerator.co.uk/" target="_blank">Ioncube Accelerator</a>.</li>
<li>Ensure that you have the <a title="Download Latest Apache Version" href="http://httpd.apache.org/download.cgi" target="_blank">latest apache version</a> (currently 2.0.63)</li>
</ol>
<p><strong>Viewing your current resource usage</strong></p>
<p>Log in via SSH, I normally use the <a title="Putty Client" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty client</a> for this.</p>
<p>Commands:</p>
<p><strong>top</strong>: your current server load &amp; resource usage.<br />
<strong>ps aux</strong>: all your processes &amp; which ones are using the most memory/cpu<br />
<strong>free -m</strong>: allocated memory, usage &amp; free memory</p>
<p style="text-align: center;"><img class="size-full wp-image-607 aligncenter" title="Top Command SSH" src="http://www.earnersblog.com/wp-content/uploads/2008/12/mytop.png" alt="Top Command SSH" width="420" height="209" /></p>
<p>If you use the top command you can get an overview of the load on the server &amp; memory usage. You can see in the screenshot above my VPS has a load of 0.02 during the last 1minute, 5 minutes &amp; 10 minutes.</p>
<p>No-one really knows what the ideal &#8220;load average&#8221; should be but my general rule is that anything over below 1 is good &amp; above 1 is average. Above 3 &amp; you may start to notice performance issues.</p>
<p>With memory usage you should ideally have 100MB or so free (if not more), you really need that buffer for large traffic spikes. If you&#8217;re coming close to your allocated memory usage then any allocated burst ram will kick in. On my server I have no burst ram, just guaranteed which means I don&#8217;t have that buffer, but my system is more stable (as everyone on the VPS can make use of the burst ram).</p>
<p><strong>Removing &amp; Tweaking Unnecessary Services</strong></p>
<p>There&#8217;s a number of services that you can remove or tweak to increase performance. To remove any of these services log into WHM &amp; go to Service Configuration &gt; Service Manager or Cpanel &gt; Plugins in the left menu.</p>
<p><strong>Clamd: </strong>This is a virus scanning service, it uses up a ton of memory do generally I&#8217;ll remove it.</p>
<p><strong>Entropy Chat: </strong>Disable this.</p>
<p><strong>Spamd: </strong>This uses a lot of processes &amp; memory. You shouldn&#8217;t remove this, instead we can tweak it. Go to Cpanel &gt; Plugins &amp; install spamdconf, once done go to the bottom of WHM &amp; click on Setup Spamd Startup Configuration. Change the maximum children to 1 or 2. This will stop spamd spawning too many child processes.</p>
<p><strong>Cpanel Tweak Settings</strong></p>
<p>In WHM under Server Configuration &gt; Tweak Settings:</p>
<ol>
<li>Make sure default catch-all mail address is set to FAIL, this will use the least CPU time.</li>
<li>Untick Mailman, this is a resource hog.</li>
<li>Change the number of minutes between mail server queues to 180</li>
<li>Uncheck Analog Stats, I also usually uncheck Webalizer.</li>
<li>Make sure you tick delete each domains access logs after run, otherwise you&#8217;ll start using heaps of Disk Space.</li>
</ol>
<p><strong>Mysql Optimisation</strong></p>
<p>You can edit your mysql configuration (/etc/my.cnf) by typing vi /etc/my.cnf</p>
<p>In order to add something in vi you need to hit insert, once completed hit esc then :wq to save &amp; quit. If you want to save without quitting type :q!</p>
<p>There&#8217;s a few important variables that we&#8217;re going to tweak:</p>
<ol>
<li>max_connections</li>
<li> wait_timeout</li>
<li> thread_cache_size</li>
<li> table_cache</li>
<li>key_buffer_size</li>
<li>query_cache_size</li>
<li>tmp_table_size</li>
</ol>
<p>Via ssh you can type &#8216;mysqladmin variables&#8217; to see their current values &amp; you can also see a refreshed processlist by using the command &#8216;mysqladmin –i10 processlist extended-status&#8217;.</p>
<p>The settings below should work well for a server with 512MB Guaranteed RAM (also leaving you enough free for traffic spikes), if you have burstable then you can probably look at increasing the number of max_connections to 400 &amp; possibly the key_buffer to 64M:</p>
<p>[coolcode]<br />
[mysqld]<br />
max_connections = 300<br />
key_buffer = 32M<br />
myisam_sort_buffer_size = 32M<br />
join_buffer_size = 1M<br />
read_buffer_size = 1M<br />
sort_buffer_size = 2M<br />
table_cache = 4000<br />
thread_cache_size = 286<br />
interactive_timeout = 25<br />
wait_timeout = 7000<br />
connect_timeout = 10<br />
max_allowed_packet = 16M<br />
max_connect_errors = 10<br />
query_cache_limit = 2M<br />
query_cache_size = 12M<br />
query_cache_type = 1<br />
tmp_table_size = 16M<br />
skip-innodb<br />
[mysqld_safe]<br />
open_files_limit = 8192<br />
[mysqldump]<br />
quick<br />
max_allowed_packet = 16M<br />
[myisamchk]<br />
key_buffer = 64M<br />
sort_buffer = 64M<br />
read_buffer = 16M<br />
write_buffer = 16M<br />
[mysqlhotcopy]<br />
interactive-timeout[/coolcode]</p>
<p><strong>Apache Optimisation</strong></p>
<p>Apache settings are located in httpd.conf, you can use &#8216;locate httpd.conf&#8217; or &#8216;whereis httpd.conf&#8217; to find it.</p>
<p>Optimal settings for apache should look something like this, I like to keep the min &amp; start servers slightly lower to stop too many child processes spawning &amp; using memory:</p>
<p>[coolcode]<br />
KeepAlive On<br />
MaxKeepAliveRequests 100<br />
KeepAliveTimeout 1<br />
MinSpareServers 5<br />
MaxSpareServers 10<br />
StartServers 5<br />
MaxClients 150<br />
MaxRequestsPerChild 1000[/coolcode]</p>
<p><strong>Restarting Mysql &amp; Apache</strong></p>
<p>Once you&#8217;re done you&#8217;ll want to restart mysql &amp; apache. You can do this via the command line or via WHM.</p>
<p>Restart Mysql: /etc/init.d/mysql restart (if mysql doesn&#8217;t restart consider commenting out skip-innodb in my.cnf)<br />
Restart Apache: /etc/init.d/httpd restart</p>
<p>These commands may vary depending on what your server is running.</p>
<p><strong>Monitoring Changes</strong></p>
<p>Use the &#8216;top&#8217; command, &#8216;free &#8211; m&#8217; &amp; &#8216;ps aux&#8217; to get an idea of how the server is responding. Pay attention to how much RAM you have left &amp; also how much CPU Mysql &amp; Apache is using. You may need to leave Mysql running for 24-48 hours to get a true picture here.</p>
<p>Thinking about upgrading to a VPS but not sure who to choose, let us help you with our <a href="http://www.earnersblog.com/hosts/list/vps-hosting/">VPS Web Hosting Reviews</a>, tailored specifically for Affiliate Marketers or check out some <a href="http://storecrowd.com/coupons/vps">VPS Coupons</a> also check out <a href="http://photonvps.couponzor.com/">PhotonVPS</a></p>
<p>[coolcode]top &#8211; 19:56:30 up 27 days,  4:11,  1 user,  load average: 0.04, 0.07, 0.09<br />
Mem:    524288k total,   386432k used,   137856k free,        0k buffers[/coolcode]</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/seobook/" rel="bookmark" title="Permanent Link: Seo Book Review, Search Engine Optimization Book">Seo Book Review, Search Engine Optimization Book</a></li><li><a href="http://www.earnersblog.com/digproof-your-wordpress/" rel="bookmark" title="Permanent Link: Diggproof &#038; Speed up Your WordPress Blog">Diggproof &#038; Speed up Your WordPress Blog</a></li><li><a href="http://www.earnersblog.com/ebay-ditches-commission-junction/" rel="bookmark" title="Permanent Link: Ebay ditches Commission Junction">Ebay ditches Commission Junction</a></li><li><a href="http://www.earnersblog.com/seo-blogs-dont-make-money/" rel="bookmark" title="Permanent Link: SEO Blogs Don&#8217;t Make Money">SEO Blogs Don&#8217;t Make Money</a></li><li><a href="http://www.earnersblog.com/yahoo-site-explorer/" rel="bookmark" title="Permanent Link: Link Building Guide Part 1 &#8211; Thank You Mr Yahoo">Link Building Guide Part 1 &#8211; Thank You Mr Yahoo</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/vps-optimization-guide/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7</title>
		<link>http://www.earnersblog.com/wordpress-remv-hack/</link>
		<comments>http://www.earnersblog.com/wordpress-remv-hack/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 05:02:11 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/?p=574</guid>
		<description><![CDATA[If you haven&#8217;t upgraded to WordPress 2.7 yet then I suggest you do it sooner rather than later...]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t <a title="Download WordPress" href="http://wordpress.org/download/" target="_blank">upgraded to WordPress 2.7 yet</a> then I suggest you do it sooner rather than later. There&#8217;s an exploit in earlier versions of WordPress that are compromising installations &amp; turning them into mass zombie DDOS machines.</p>
<h3>How to you check if you&#8217;ve been hacked</h3>
<p>Via ftp go to the folder /wp-content/themes/ if there&#8217;s a file there named &#8220;remv.php&#8221; then you&#8217;re <a title="Unlucky" href="http://www.google.com.au/search?num=100&amp;hl=en&amp;safe=off&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=Bc1&amp;q=%2Fwp-content%2Fthemes%2Fremv.php&amp;btnG=Search&amp;meta=" target="_blank">one of the unlucky ones</a>.</p>
<h3>What is remv.php?</h3>
<p>It&#8217;s an application called PHPremoteView, it basically allows anyone to run any php commands on your server. This could result in a wide variety of damage (lost files, password, having your adsense code changed, affiliate url&#8217;s changed etc etc).</p>
<p>Currently most of the compromised installs are being used for DDOS attacks. So if you notice also an unusually high load on your server this could be the cause.</p>
<h3>What to do to fix it</h3>
<ol>
<li>Delete the remv.php file first.</li>
<li>Look to see which files in the WordPress folder have been altered lately, it&#8217;s possible that your theme headers or footer could have unsuspecting spam links to pharma affiliate sites.</li>
<li>Export all your WordPress posts via XML then reinstall WordPress 2.7 &amp; import your posts.</li>
<li>If you&#8217;re hosting multiple sites on your server you&#8217;ll want to check for all the files that have been modified within the time range since remv.php was created.</li>
<li>Change all your passwords, user, root, wordpress, mysql databases&#8230;.everything.</li>
<li>Upgrade all your plugins to the latest versions (some might not work in 2.7 also).</li>
</ol>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/popular-seo-blogs-hacked/" rel="bookmark" title="Permanent Link: Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available">Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</a></li><li><a href="http://www.earnersblog.com/sponsoring-wordpress-themes/" rel="bookmark" title="Permanent Link: Sponsoring WordPress Themes for Backlinks">Sponsoring WordPress Themes for Backlinks</a></li><li><a href="http://www.earnersblog.com/top-wordpress-adsense-plugins/" rel="bookmark" title="Permanent Link: Top WordPress Adsense Plugins">Top WordPress Adsense Plugins</a></li><li><a href="http://www.earnersblog.com/wordpress-translation-increase-traffic/" rel="bookmark" title="Permanent Link: Make your Blog Multilingual &#038; Increase Traffic by 200%">Make your Blog Multilingual &#038; Increase Traffic by 200%</a></li><li><a href="http://www.earnersblog.com/start-using-trackbacks-more/" rel="bookmark" title="Permanent Link: Make Your Mark with Trackbacks">Make Your Mark with Trackbacks</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/wordpress-remv-hack/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Is your WordPress Installation Compromised? Al Gore&#8217;s is.</title>
		<link>http://www.earnersblog.com/wordpress-hacked/</link>
		<comments>http://www.earnersblog.com/wordpress-hacked/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 09:39:29 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/wordpress-hacked/</guid>
		<description><![CDATA[Quite often I like to take a quick look at the serps for buy viagra, buy cialis, buy xanax &#38; buy phentermine. To some of you this may seem quite strange, almost like I have a crazy drug addiction...]]></description>
			<content:encoded><![CDATA[<p>Quite often I like to take a quick look at the serps for <a href="http://www.google.com/search?hl=en&amp;q=buy+viagra&amp;btnG=Search&amp;meta=" title="Buy Viagra" target="_blank">buy viagra</a>, <a href="http://www.google.com/search?hl=en&amp;q=buy+cialis&amp;btnG=Search&amp;meta=" title="Buy Cialis" target="_blank">buy cialis</a>, <a href="http://www.google.com/search?hl=en&amp;q=buy+xanax&amp;btnG=Search" title="Buy Xanax" target="_blank">buy xanax</a> &amp; <a href="http://www.google.com/search?hl=en&amp;q=buy+phentermine&amp;btnG=Search" title="Buy Phentermine" target="_blank">buy phentermine</a>. To some of you this may seem quite strange, almost like I have a crazy drug addiction. But there&#8217;s a good reason why.</p>
<p>I&#8217;m sure these particular products ring a few bells, no doubt you&#8217;ve seen Akismet or Spam Karma wipe out comments promoting them. The reason people promote them is because there&#8217;s huge amount of profits involved. I&#8217;m not really worried about the profits though, I&#8217;m more worried about the techniques these spammers are using to promote their hosted pages to the top spots.</p>
<p>It&#8217;s impossible for someone to manipulate the serps like we see above with a brand new domain.</p>
<p>Lets take the Buy Xanax serps for instance, you&#8217;ll notice a few forums &amp; a few .edu sites ranking up there. With anywhere up to 1,000 links pointing to that one page (the sources of which I&#8217;ll cover in a minute).</p>
<p>It&#8217;s all but impossible to buy a new domain &amp; point this many links to it then expect it to rank. You&#8217;ll get slammed into the sandbox&#8230;&#8230;fast. So instead, aged domains that carry weight are used instead. Google will somehow tolerate the mass amount of links with the same anchor text if the domain already has a significant amount of trust or authority.</p>
<p>Anyway, back to the original story. I noticed that many of these authority domains had <a href="http://search.yahoo.com/search?p=link:http://workplace.unr.edu/?page=790%20-site:unr.edu" title="High Profile WordPress Blogs Hacked" target="_blank">backlinks from many high profile wordpress blogs</a>.</p>
<p>Let&#8217;s for example look at <a href="http://www.climatecrisis.net/blog/" title="Climate Crisis" target="_blank">Al Gore&#8217;s &#8211; Climate Crisis Blog</a>, you can see that&#8217;s it&#8217;s linking to the edu page about xanax. Now let&#8217;s have a look at the source code:</p>
<p style="text-align: center"><img src="http://www.earnersblog.com/wp-content/uploads/2007/11/algoresbloghacked.png" alt="Al Gore’s Blog Spam" /></p>
<p> You can see nicely concealed in a hidden div tag in the footer about 50 links (on every page) to other various drug related hosted pages.</p>
<p>Doing a bit more digging reveals that there are <a href="http://search.yahoo.com/search?p=link:http://www.901am.com/?id=147%20-site:901am.com" title="Thousands" target="_blank">thousands</a> of high profile blogs using WordPress that are compromised too. Most of the domains are PR5+.</p>
<p>So I suggest that you take a close look at your WordPress installation, especially the footer incase this has happened to you. I highly doubt that many of the people who have been hacked are aware that they are linking to potentially damaging websites.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/popular-seo-blogs-hacked/" rel="bookmark" title="Permanent Link: Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available">Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</a></li><li><a href="http://www.earnersblog.com/wordpress-remv-hack/" rel="bookmark" title="Permanent Link: Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7">Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7</a></li><li><a href="http://www.earnersblog.com/earnosphere-dec-1/" rel="bookmark" title="Permanent Link: Earnosphere: Week Ending 01/12/07">Earnosphere: Week Ending 01/12/07</a></li><li><a href="http://www.earnersblog.com/yahoo-site-explorer/" rel="bookmark" title="Permanent Link: Link Building Guide Part 1 &#8211; Thank You Mr Yahoo">Link Building Guide Part 1 &#8211; Thank You Mr Yahoo</a></li><li><a href="http://www.earnersblog.com/april-fools-linkbait/" rel="bookmark" title="Permanent Link: Good old April Fools Linkbait">Good old April Fools Linkbait</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/wordpress-hacked/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Make your Comments more Personal</title>
		<link>http://www.earnersblog.com/personalised-comment-email/</link>
		<comments>http://www.earnersblog.com/personalised-comment-email/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 08:57:14 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Copywriting]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/personalised-comment-email/</guid>
		<description><![CDATA[One of the things I look at quite often is the Comment/Post ratio in the WordPress Login...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.earnersblog.com/wp-content/uploads/2007/06/email.jpg" alt="Email" align="right" />One of the things I look at quite often is the Comment/Post ratio in the WordPress Login. Quite often people will leave comments &amp; perhaps never come back to the blog again, which is a bit of a concern. It&#8217;s almost like <a href="http://www.earnersblog.com/capturing-email-addresses/" title="Not capturing Email Addresses">sending traffic to a landing page &amp; not capturing any information</a>.</p>
<p>I found an awesome WordPress plugin after leaving a comment at <a href="http://www.communityspark.com/" title="Community Spark" target="_blank">Community Spark</a> which allows you to send a customised email message to all new commenters on your blog. Immediately my eyes lit up as I thought aboutthe possibilities.</p>
<p>This allows you to do a number of things which ultimately make the experience for new users to your blog very very welcoming &amp; personal.</p>
<p>It also has a large number of practical applications that allow you to convert visitors to feed subscribers or paying customers:</p>
<ol>
<li>Greet them with a <a href="http://www.earnersblog.com/introduce-yourself/" title="Introduce Yourself">personal message</a> &amp; thank them for posting on your blog</li>
<li>Point them in the Direction of your <a href="http://feeds.feedburner.com/earnersblog">RSS Feed</a></li>
<li>Recommend your <a href="http://www.earnersblog.com/how-much-do-you-earn/" title="Earners Blog">favourite products</a> &amp; <a href="http://www.earnersblog.com/url/hostican.php" title="Hostican" target="_blank">services</a></li>
<li>Ask them to sign up to your real mailing list</li>
<li>Direct them to some of your <a href="http://www.earnersblog.com/make-200-dollars-every-day/" title="Make $200">best post</a></li>
</ol>
<p>The plugin is called <a href="http://www.justinshattuck.com/comment-relish/" title="Comment Relish" target="_blank">Comment Relish</a> &amp; can be used on ANY type of blog to make money.</p>
<p>Lets look at a random real life example:</p>
<p>Say you run a web hosting blog like the guys over at the <a href="http://blog.hostican.com/" title="Hostican Blog" target="_blank">Hostican Blog</a>. They could for example include a special discount offer to sign up to <a href="http://www.earnersblog.com/url/hostican.php"target="_new"rel="nofollow"title="Hostican" >Hostican</a> whenever someone comments on the blog. Or include something like &#8220;The top ten reasons you should switch to Hostican.&#8221; This could be said for any webhost or blog that has a product or service. Imagine physically sending a sales letter to everyone that comments on your blog. This could double your sales.</p>
<p>You could also sell advertising space in the email at a monthly rate.</p>
<p>The possibilities are endless as to how you use it (i&#8217;m sure some of you will come up with ingenious ideas), just remember that you&#8217;ve now added another  potential source of revenue to your arsenal.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/feedflare-textlinkads/" rel="bookmark" title="Permanent Link: Feedburner Textlinkads Feedflare monetisation trick">Feedburner Textlinkads Feedflare monetisation trick</a></li><li><a href="http://www.earnersblog.com/comment-hut/" rel="bookmark" title="Permanent Link: Comment Hut, Free Backlinks?">Comment Hut, Free Backlinks?</a></li><li><a href="http://www.earnersblog.com/new-layout/" rel="bookmark" title="Permanent Link: New Layout, Design &#038; Features">New Layout, Design &#038; Features</a></li><li><a href="http://www.earnersblog.com/comment-hut-review/" rel="bookmark" title="Permanent Link: Comment Hut Review">Comment Hut Review</a></li><li><a href="http://www.earnersblog.com/introduce-yourself/" rel="bookmark" title="Permanent Link: Introduce Yourself">Introduce Yourself</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/personalised-comment-email/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Quick Adsense Tip #1: More Relevant Ads with Shorter Permalinks</title>
		<link>http://www.earnersblog.com/quick-adsense-tip-1/</link>
		<comments>http://www.earnersblog.com/quick-adsense-tip-1/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 05:52:27 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/quick-adsense-tip-1/</guid>
		<description><![CDATA[Quite a number of you have emailed me asking for some Quick Adsense Tips to go inline with the Adwords ones so why not...]]></description>
			<content:encoded><![CDATA[<p>Quite a number of you have emailed me asking for some Quick Adsense Tips to go inline with the Adwords ones so why not!</p>
<p>I&#8217;m in the process of cleaning up my sidebar &amp; putting more &#8220;clear defined&#8221; categories so this first tip ties in with that just nicely.</p>
<p>I find that with adsense if I use too strings in posts that are too long the Adsense ads can get quite a bit off target. I recently just used <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/" title="Permalink Migration Plugin" target="_blank">this plugin to migrate to shorter permalinks</a>.</p>
<p>Originally I had the structure:</p>
<p>/%category%/%postname%/</p>
<p>However when using multiple categories the urls were becoming quite long &amp; adsense was getting confused.</p>
<p>I&#8217;ve now migrated to merely:</p>
<p>/%postname%/</p>
<p>This has greatly increased the targeting of the Adsense ads &amp; increased ctr by over 2% on some blogs.</p>
<p>Another handy feature of using the short permalinks is that I can now rearrange my whole sidebar &amp; categories without making posts go 404 since the category name isn&#8217;t in the url anymore.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/adsense-referrals/" rel="bookmark" title="Permanent Link: Adsense Referrals">Adsense Referrals</a></li><li><a href="http://www.earnersblog.com/register-for-adsense/" rel="bookmark" title="Permanent Link: Register For Adsense, Join Adsense">Register For Adsense, Join Adsense</a></li><li><a href="http://www.earnersblog.com/increase-adsense-relevancy/" rel="bookmark" title="Permanent Link: Increase Adsense Relevancy">Increase Adsense Relevancy</a></li><li><a href="http://www.earnersblog.com/top-wordpress-adsense-plugins/" rel="bookmark" title="Permanent Link: Top WordPress Adsense Plugins">Top WordPress Adsense Plugins</a></li><li><a href="http://www.earnersblog.com/adsense-cpm/" rel="bookmark" title="Permanent Link: Adsense Publishers reporting huge eCPM Drops">Adsense Publishers reporting huge eCPM Drops</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/quick-adsense-tip-1/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Link to Me Textbox: Promoting Deep Links within WordPress</title>
		<link>http://www.earnersblog.com/link-to-me-textbox/</link>
		<comments>http://www.earnersblog.com/link-to-me-textbox/#comments</comments>
		<pubDate>Sun, 15 Apr 2007 02:13:56 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/general/link-to-me-textbox/</guid>
		<description><![CDATA[Following on from my article last week about Just Asking here&#8217;s a handy plugin that you can use to ask people to deep link to your posts...]]></description>
			<content:encoded><![CDATA[<p>Following on from my article last week about <a href="http://www.earnersblog.com/lessons/just-ask/" title="Just Ask">Just Asking</a> here&#8217;s a handy plugin that you can use to ask people to deep link to your posts.</p>
<p>It&#8217;s called the <strong>Link to me Textbox</strong> &amp; you can see an example of it working at the bottom of this post.</p>
<p>The plugin itself is a nice call to action to have at the bottom of your posts. It asks the reader to link to the post if they enjoyed it &amp; also supplies them with the Anchor Text that you&#8217;ve used as a title. If you ask someone to link to your post they&#8217;re much more likely to go ahead &amp; do it. That&#8217;s what makes this plugin a gem.</p>
<p>You can download a copy of the <a href="http://www.jimwestergren.com/link-to-me-textbox-wordpess-plugin/" title="Link to Me Textbox" target="_blank">Link to Me Textbox Here</a></p>
<p>I&#8217;d possibly like to see an additional feature to the plugin where you can set a custom field to pull the anchor text from.</p>
<p>For example &#8220;link_text&#8221; would allow you to target the anchor text in the textbox &amp; vary it. This would allow you make links into Deep Posts look more natural &amp; increase keyword breadth.</p>
<p>I also like how the textbox seperates the social networking widgets like Bumpzee from the post, I could potentially add more in that space with cluttering things up.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/recropical-link-cloaking/" rel="bookmark" title="Permanent Link: Recropical Link Cloaking &#8211; What you Need to Know">Recropical Link Cloaking &#8211; What you Need to Know</a></li><li><a href="http://www.earnersblog.com/dedicated-product-pages/" rel="bookmark" title="Permanent Link: Dedicated Product Pages Get More Exposure">Dedicated Product Pages Get More Exposure</a></li><li><a href="http://www.earnersblog.com/cloaking-ranking-affiliate-links/" rel="bookmark" title="Permanent Link: Cloaking &#038; Ranking Your Affiliate Links">Cloaking &#038; Ranking Your Affiliate Links</a></li><li><a href="http://www.earnersblog.com/link-building-guide-08/" rel="bookmark" title="Permanent Link: 2009 Link Building Guide">2009 Link Building Guide</a></li><li><a href="http://www.earnersblog.com/boost-rankings-authoritative-links/" rel="bookmark" title="Permanent Link: 2 Easy Authoritative Links that will Boost your Rankings">2 Easy Authoritative Links that will Boost your Rankings</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/link-to-me-textbox/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Textlinkads now offering Post Level Advertising</title>
		<link>http://www.earnersblog.com/textlinkads-in-post-advertising/</link>
		<comments>http://www.earnersblog.com/textlinkads-in-post-advertising/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 06:22:45 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Affiliate Marketing News]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/knowledge/linking/textlinkads-in-post-advertising/</guid>
		<description><![CDATA[This is actually something I&#8217;d thought about doing for a while after I saw Matt over at Net Business Blog sell them privately a few months ago...]]></description>
			<content:encoded><![CDATA[<p>This is actually something I&#8217;d thought about doing for a while after I saw Matt over at <a href="http://www.netbusinessblog.com/" title="Net Business Blog" target="_blank">Net Business Blog</a> sell them privately a few months ago. Unfortunately due to time constraints &amp; management I never got around to implementing anything &amp; as such never actually sold any post level ads.</p>
<p>More &amp; more people now are valuing Deep Links over Front Page Links simply because of relevance. I&#8217;d rather have a deeply relevant link than a link on a homepage from a blog that bears no relevance to mine at all.</p>
<p>Textlinkads now allows you to increase your blog revenue even more by advertising at a Post Level. You can sell one ad per post that can be anywhere up to 80 characters long with a 150 character description.</p>
<p>It looks something like this:</p>
<p style="text-align: center"><img src="http://www.earnersblog.com/wp-content/uploads/2007/04/post_level_example.gif" title="Textlinkads Post Level Example" alt="Textlinkads Post Level Example" width="440" /></p>
<p style="text-align: left">If I was able to earn say $30+/month per post that would not only make me want to write longer &amp; more advertisable posts but it would also finally help me give adsense the boot from this blog I reckon. Kontera is doing better on Earners Blog than Adsense at the moment although that&#8217;s for another post. I&#8217;m not entirely sure of pricing at the moment</p>
<p style="text-align: left">In order to be eligable for this you need to register for Textlinkads or if you already have an account you just need to upgrade your WordPress plugin.</p>
<p style="text-align: left">More info as it comes! <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/textlinkads-march-coupon/" rel="bookmark" title="Permanent Link: 15% Textlinkads Coupon">15% Textlinkads Coupon</a></li><li><a href="http://www.earnersblog.com/feedflare-textlinkads/" rel="bookmark" title="Permanent Link: Feedburner Textlinkads Feedflare monetisation trick">Feedburner Textlinkads Feedflare monetisation trick</a></li><li><a href="http://www.earnersblog.com/10-ways-to-increase-textlinkads-income/" rel="bookmark" title="Permanent Link: 10 Easy Ways to Increase your Textlinkads Income">10 Easy Ways to Increase your Textlinkads Income</a></li><li><a href="http://www.earnersblog.com/textlinkads-to-allow-links-on-blogger/" rel="bookmark" title="Permanent Link: Textlinkads to allow links on Blogger">Textlinkads to allow links on Blogger</a></li><li><a href="http://www.earnersblog.com/reviewme/" rel="bookmark" title="Permanent Link: Reviewme, A new Revenue Stream for Bloggers">Reviewme, A new Revenue Stream for Bloggers</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/textlinkads-in-post-advertising/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SEO Title Tag + Wordtracker = Goodness</title>
		<link>http://www.earnersblog.com/increase-traffic-seo-title-tag/</link>
		<comments>http://www.earnersblog.com/increase-traffic-seo-title-tag/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 03:19:50 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Keyword Research]]></category>
		<category><![CDATA[Traffic Generation]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/blog-seo/increase-traffic-seo-title-tag/</guid>
		<description><![CDATA[I&#8217;m back from Easter break &#38; ready to get the ball rolling again with some new posts &#38; ideas that will keep that money rolling in, I trust you all had a profitable Easter  
So let&#8217;s get back into things...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.earnersblog.com/wp-content/uploads/2007/04/reduce-speed-now.jpg" alt="Reduce Speed Now" align="right" />I&#8217;m back from Easter break &amp; ready to get the ball rolling again with some new posts &amp; ideas that will keep that money rolling in, I trust you all had a profitable Easter <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So let&#8217;s get back into things. First up I&#8217;ve managed to wittle down the Blog Reviews to the last 7 of which I&#8217;ll be announcing today or tomorrow.</p>
<p>Secondly I thought I&#8217;d give you a little insight on how to really double your blog traffic from search engines.</p>
<p>On a blog there&#8217;s three types of traffic (excluding paid).</p>
<p><strong>Direct Traffic</strong>: This is traffic that you get from feed subscribers &amp; regular visitors.</p>
<p><strong>Referral Traffic</strong>: The traffic that you get when you trackback, your blog is mentioned on another site or you get dugg.</p>
<p><strong>Organic Traffic</strong>: The traffic that you generate from search engines.<br />
<!--adsensestart--><br />
You can manipulate each of these three traffic sources in different ways, however many people fail to do one thing in particular with their blog &amp; that&#8217;s leverage off old posts. The focus of any blogger is to keep up to date with current affairs &amp; stories so they can be the first to break an important piece of information &amp; as a result leverage heavily off referral traffic &amp; returning users.</p>
<p>However, what if there was a way to really bring your old posts back in style? Well now there is.</p>
<p>One of my main gripes &amp; possibly the only one I ever had with wordpress was that you couldn&#8217;t set the page title (what we see between the &lt;title&gt; tags) independantly from the post title (the name of the post). Therefore this post would end up having the title &#8220;<strong>SEO Title Tag + Wordtracker = Goodness</strong>&#8221; which isn&#8217;t really very optimised for the Search Engines.</p>
<p>The rest of this post will show you how to optimise your title tags for WordPress in a way that will enable you to bring your old posts back from the dead &amp; start generating decent traffic. Remember, if we managed to double each posts daily visitor count you&#8217;d be <strong>doubling your search engine traffic.</strong></p>
<p>Here&#8217;s the process:</p>
<ol>
<li>Installing WordPress Plugins</li>
<li>Grabbing a list of all the posts contained within your blog</li>
<li>Exporting the posts into an excel file that we can use to work on the title tags in a neat format</li>
<li>Research the title tags using Wordtracker&#8217;s free tool</li>
<li>Set the title tags in WordPress using the plugin</li>
<li>Sit back &amp; measure results</li>
</ol>
<p>So here comes the fun part, first up you need to be using wordpress for the following plugin to work:</p>
<p><a href="http://www.netconcepts.com/seo-title-tag-plugin/" title="SEO Title Tag" target="_blank">Download the SEO Title Tag Plugin &amp; Install it</a></p>
<p>There&#8217;s two important advantages to installing this plugin:</p>
<ol>
<li>You can set independant title tags for pages, posts, categories &amp; tags</li>
<li>You can get rid of your blog name coming before or after every post in the &lt;title tag&gt;</li>
</ol>
<p>Once you&#8217;ve followed the instructions it&#8217;s time to grab a list of all the posts contained within your site. <a href="http://home.snafu.de/tilman/xenulink.html#Download" title="Download Xenu" target="_blank">Download Xenu</a> (which is free).</p>
<p>Xenu will allow you to grab a list of all the posts indexable in the search engines from your blog. To do this simply:</p>
<ol>
<li>Goto File</li>
<li>Check URL</li>
<li>Input the URL of your Blog</li>
<li>Hit OK</li>
<li>When it&#8217;s done hit Control + T then save it on the desktop</li>
</ol>
<p>You now have a tabbed file with all the posts from your blog. It&#8217;ll also contain other stuff in there like affiliate links, images etc so we need to clean it up.</p>
<ol>
<li>Open up the file in Excel &amp; just delete columns B through to M</li>
<li>Next highlight column A then hit Data then Sort &amp; hit Ok.</li>
<li>Now go down the column &amp; delete all the URL&#8217;s that aren&#8217;t posts.</li>
</ol>
<p>You should now have a nice Excel file with your posts in Alphabetical format. Now name Column A (Post) &amp; name column B (Title Tag).</p>
<p>You can now use this excel file to work on the title tags for all of the posts in your blog. I also like to make other columns where I can chart the increase of traffic using a particular title tag but you don&#8217;t need to do that.</p>
<p style="text-align: center"><img src="http://www.earnersblog.com/wp-content/uploads/2007/04/wordtracker-excel.jpg" alt="Wordtracker Excel File" /></p>
<p>Now open up the <a href="http://freekeywords.wordtracker.com/" title="Free Keyword Suggestion Tool" target="_blank">Free Keyword Suggestion Tool</a> from wordtracker.</p>
<p>The aim here is to research much better title tags for your pages that will bring in traffic. So lets use this page as an example:</p>
<p>This page concentrates on Wordtracker, Title Tags &amp; Increasing Traffic so I&#8217;ll get some numbers from those phrases &amp; see if I can come up with anything else.</p>
<p>There&#8217;s not too much traffic for Wordtracker or Title tags &amp; the term &#8220;Increase Blog Traffic&#8221; looks quite good. However it appears that term would be quite hard to leverage any traffic off since the <a href="http://www.google.com.au/search?hl=en&amp;q=increase+blog+traffic&amp;btnG=Google+Search&amp;meta=" title="Top Result" target="_blank">top result</a> has been featured on the front page of digg (&amp; possibly other sites like techmeme) &amp; also has <a href="http://search.yahoo.com/search?p=link:http://www.seomoz.org/blog/21-tactics-to-increase-blog-traffic%20-site:www.seomoz.org" title="109 Inbound links" target="_blank">119 inbound links to that page alone</a>.</p>
<p>Therefore I would then normally try &amp; leverage traffic off the name of the plugin as I would assume a plugin like this would become pretty popular given what it allows you to do.</p>
<p>This would in turn give me a title tag such as: &#8220;<strong>SEO Title Tag for WordPress &amp; Increasing Blog Traffic using Wordtracker</strong>&#8221; which is a good bit more seo friendly &amp; should drive twice as much traffic, if not more than the original title.</p>
<p>Once I&#8217;ve decided on the title for a particular page I&#8217;ll then move onto the next page in the Excel list.</p>
<p>Another good reason to have a good title is for linking. If someone decides to link to your article, chances are they&#8217;ll use the title tag as the Anchor Text, so having keyword rich title tags can also help your rankings in more ways than one <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I implemented this exact method less than 5 days ago &amp; I&#8217;ve already seen a 32% increase in referrals from Search Engines.</p>
<p>Enjoy.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/blog-seo-referral-traffic/" rel="bookmark" title="Permanent Link: Blog SEO Part 2: Referral Traffic">Blog SEO Part 2: Referral Traffic</a></li><li><a href="http://www.earnersblog.com/wordpress-translation-increase-traffic/" rel="bookmark" title="Permanent Link: Make your Blog Multilingual &#038; Increase Traffic by 200%">Make your Blog Multilingual &#038; Increase Traffic by 200%</a></li><li><a href="http://www.earnersblog.com/7-tips-for-infiltrating-another-blogs-readership/" rel="bookmark" title="Permanent Link: 7 Tips for Infiltrating another Blogs Readership">7 Tips for Infiltrating another Blogs Readership</a></li><li><a href="http://www.earnersblog.com/google-images-frame-removal-trick/" rel="bookmark" title="Permanent Link: Google Images frame removal Trick">Google Images frame removal Trick</a></li><li><a href="http://www.earnersblog.com/happy-birthday/" rel="bookmark" title="Permanent Link: Happy Birthday Earners Blog! ;)">Happy Birthday Earners Blog! ;)</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/increase-traffic-seo-title-tag/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Diggproof &amp; Speed up Your WordPress Blog</title>
		<link>http://www.earnersblog.com/digproof-your-wordpress/</link>
		<comments>http://www.earnersblog.com/digproof-your-wordpress/#comments</comments>
		<pubDate>Sat, 24 Mar 2007 04:59:22 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/blog-seo/digproof-your-wordpress/</guid>
		<description><![CDATA[With more &#38; more blogs getting exposure on social news sites it&#8217;s not uncommon that you&#8217;ve experienced the wrath of the &#8220;Digg Effect&#8221; or been Slashdotted...]]></description>
			<content:encoded><![CDATA[<p>With more &amp; more blogs getting exposure on social news sites it&#8217;s not uncommon that you&#8217;ve experienced the wrath of the &#8220;Digg Effect&#8221; or been Slashdotted. It&#8217;s not fun, especially if you&#8217;ve got other sites hosted on the same server. So I decided to do a bit of research into the ways you can protect this from happening to your WordPress Blog.</p>
<p>The main problem lies with the WordPress Caching however there are also some simple server tweaks that you can apply to help streamline things even further.</p>
<p>I must admit I&#8217;ve applied a few of these tweaks to this blog but I&#8217;ve always known that my content isn&#8217;t overly &#8220;diggable&#8221; what with it being about SEO &amp; Affiliate Marketing :p But regardless you should see a nice reduction in server load &amp; mysql queries.</p>
<p><a title="Upgrade to WordPress 2.1" href="http://wordpress.org/download/" target="_blank"><strong>Upgrade to WordPress 2.7</strong></a></p>
<p>WordPress 2.1 contains a lot of performance upgrades over previous versions. It contains much more efficient database code as all of the queries were carefully examined by some stop Mysql programmers before the release.</p>
<p><strong>Install the <a title="WP Super Cache" href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache Plugin</a></strong></p>
<p>WP-Cache 2.10 will cache a physical copy of each post into a specified folder on your server. Since WordPress usually serves content dynamically it has to query mysql everytime it goes to load a post. If you get dugg you&#8217;ll end up with an insane amount of mysql queries that your server won&#8217;t be able to handle. Since this plugin creates a static copy of the page on the server you&#8217;re not actually loading any content from the database at all therefore the post will:</p>
<ol>
<li>Load Quicker</li>
<li>Put less strain on the server</li>
</ol>
<p>In theory you are able to server literally hundreds more pages per second than you normally would have before.</p>
<p><strong>Choose the right Webhost</strong></p>
<p>Naturally having a dedicated server with a fast processor &amp; heaps of ram is considered the best there are less expensive options that you can consider.</p>
<p>If you have a VPS, please make sure you read my <a title="VPS Optimization Guide" href="http://www.earnersblog.com/vps-optimization-guide/">VPS Optimization Guide</a> which will really give you the lowdown on tuning MYSQL &amp; HTTPD.</p>
<p>The following <a title="Shared Web Hosting" href="http://www.earnersblog.com/hosts/list/shared-hosting/">Shared Hosts</a> have been tested to be Digg Proof but it all depends on how many users are on your node &amp; also how big the strain is on your server:</p>
<ol>
<li><a title="Media Temple" href="http://www.mediatemple.net/" target="_blank">MediaTemple</a></li>
<li><a href="http://www.earnersblog.com/url/dreamhost.php" target="_blank">Dreamhost</a></li>
<li><a title="Go Daddy" href="http://www.godaddy.com" target="_blank">GoDaddy</a></li>
<li><a title="A 2 Hosting" href="http://www.a2hosting.com" target="_blank">A2Hosting</a></li>
<li><a title="A Small Orange" href="http://www.asmallorange.com" target="_blank">A Small Orange</a></li>
<li><a title="Web Faction" href="http://www.webfaction.com" target="_blank">Webfaction</a></li>
</ol>
<p><strong>Mysql Query Cache</strong></p>
<p>Since pages are served dynamically every page load in WordPress results in a Mysql Query, as stated before the WP-Cache plugin helps to reduce these queries but it&#8217;s also important to make sure you have the Query Cache optimised for maximum performance.</p>
<p>To activate the Mysql Query Cache:</p>
<ol>
<li>Find your mysql configuration file my.cnf</li>
<li>Find the setting <strong>query-cache-type</strong> &amp; change the value to 1</li>
<li>Find the <strong>query-cache-size</strong> &amp; change the value to 20M</li>
<li>Find the <strong>query-cache-limit</strong> &amp; change the value to 2M</li>
</ol>
<p>You will need to make sure your host allows root access to the server in order to do this tweak.</p>
<p><strong>PHP Compiler Cache</strong></p>
<p>The PHP Compiler cache saves scripts in their compiled format on the server so that they&#8217;re not getting recompiled every time you call them from WordPress.</p>
<p>It increases the performance of PHP scripts by caching them in their compiled state, so that the overhead of compiling is almost completely eliminated. It also optimises scripts to speed up their execution. It typically reduces server load and increases the speed of your PHP code by 1-10 times.</p>
<p>Two popular Compiler Caches are <a title="APC" href="http://pecl.php.net/package/APC" target="_blank">APC</a> &amp; <a href="http://eaccelerator.net/">eAccelerator</a> however I&#8217;m not going to go into any details about installing or configuring them.</p>
<p><strong>Disable Unused Plugins</strong></p>
<p>Disable any plugins that you currently don&#8217;t utilise in the plugins section of wordpress. It&#8217;s easy to leave 30-50 plugins active even when you&#8217;re not using them simply because most webmasters will try out so many different versions of a particular plugin.</p>
<p><strong>Configuring Apache for Maximum Performance</strong></p>
<p>Check out the complete guide to <a title="Configuring Apache" href="http://www.howtoforge.com/configuring_apache_for_maximum_performance" target="_blank">configuring apache for maximum performance</a> this will help you make those fine tweaks to your httpd.conf. You&#8217;ll need root access to do this.</p>
<p><strong>Optimising your Mysql Database</strong></p>
<p>Optimising your Mysql Database can have a huge performance on your load times &amp; load on the server, especially if you have a big database. Check out <a title="Weblogtoolscollection" href="http://www.connectedinternet.co.uk/wp-content/photos/webtools.png" target="_blank">this picture</a> of the effect it had on Weblogtools collection cpu usage.</p>
<p>Optimising your Mysql database is pretty easy:</p>
<ol>
<li>Log into PHPMyAdmin</li>
<li>Locate your WordPress DatabaseTables</li>
<li>Make a Backup First</li>
<li>Check all the tables in the Check Boxes</li>
<li>Select the Optimise Tables Option</li>
<li>That&#8217;s it!</li>
</ol>
<p>I&#8217;ve also heard rumours that switching to InnoDB instead of <span>MyIsam can have an effect on performance although I&#8217;ve not tested that myself, in fact I&#8217;m not even sure if it&#8217;s possible without causing errors. </span></p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/popular-seo-blogs-hacked/" rel="bookmark" title="Permanent Link: Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available">Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</a></li><li><a href="http://www.earnersblog.com/sponsoring-wordpress-themes/" rel="bookmark" title="Permanent Link: Sponsoring WordPress Themes for Backlinks">Sponsoring WordPress Themes for Backlinks</a></li><li><a href="http://www.earnersblog.com/top-wordpress-adsense-plugins/" rel="bookmark" title="Permanent Link: Top WordPress Adsense Plugins">Top WordPress Adsense Plugins</a></li><li><a href="http://www.earnersblog.com/wordpress-remv-hack/" rel="bookmark" title="Permanent Link: Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7">Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7</a></li><li><a href="http://www.earnersblog.com/wordpress-translation-increase-traffic/" rel="bookmark" title="Permanent Link: Make your Blog Multilingual &#038; Increase Traffic by 200%">Make your Blog Multilingual &#038; Increase Traffic by 200%</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/digproof-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>Make Your Mark with Trackbacks</title>
		<link>http://www.earnersblog.com/start-using-trackbacks-more/</link>
		<comments>http://www.earnersblog.com/start-using-trackbacks-more/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 01:01:59 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Traffic Generation]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/knowledge/linking/start-using-trackbacks-more/</guid>
		<description><![CDATA[Yesterday I mentioned about a nice WordPress Review Plugin that can easily help you create numerous review sites for products &#38; services...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.earnersblog.com/wp-content/uploads/2007/02/i_was_here.jpg" alt="I Was Here" align="right" />Yesterday I mentioned about a nice <a href="http://www.earnersblog.com/plugins/wordpress-review-plugin/" title="Wordpress Review Plugin">WordPress Review Plugin</a> that can easily help you create numerous review sites for products &amp; services.</p>
<p>Sometimes it can be difficult getting backlinks to these types of sites. Especially to the <a href="http://www.earnersblog.com/lessons/dedicated-affiliate-sites/" title="Dedicated Product Review Pages">dedicated product review pages</a> &amp; many people completely overlook the power of Trackbacks in WordPress.<!--adsensestart--></p>
<p>A trackback basically places a link on another site letting them know you&#8217;ve mentioned their post or your post is related to theirs. The good thing about a trackback is that it&#8217;s almost as good as a free link.</p>
<p>I&#8217;m not going to get into the discussion of &#8220;but most trackbacks are rel=nofollow&#8221; because I can tell you now, trackbacks DO help you rank &amp; DO help you get indexed quickly.</p>
<p><a href="http://www.bluehatseo.com" title="Blue Hat SEO">Eli at Bluehatseo</a> showed me some proof last week that you can get a whole 178 page site indexed in 2 days from using trackbacks only &amp; I&#8217;ve seen the benefits myself.</p>
<p>Anyway, if I&#8217;m reviewing a product or service I&#8217;ll normally fire the keywords into Comment Hut (if you&#8217;re cheap you can just use Google Search or Blog Search). I usually use all three because it allows me a greater depth of search. I&#8217;ll grab all of the URL&#8217;s &amp; sort them by pagerank &amp; relevancy (talk about the same product or service I&#8217;m posting about). I&#8217;ll then trim the list down to anywhere from 5-20 blogs.</p>
<p>Then I&#8217;ll grab all the trackback URL&#8217;s from the blogs &amp; put them in the trackback section in the post in WordPress. Whenever I hit publish there&#8217;s automatically instant links on anywhere from 5-20 sites that are relevant to my content.</p>
<p>Some webmasters do delete trackbacks, I know I do if they&#8217;re spammy. But if you&#8217;re writing good articles with good content most Webmasters will actually be flattered to get a trackback, as they think you&#8217;re &#8220;citing&#8221; them.</p>
<p>Quite often I&#8217;ll also get the other webmaster even signing up to my RSS Feed or becoming a regular reader of the blog when they notice the trackback, so there&#8217;s other advantages to making sure you utilise this technique more often.</p>
<p>A great example of a post that would kill trackbacks would be something like &#8220;The Top 500 WordPress Themes ever released&#8221; then submit a trackback to every single wordpress theme release page. It&#8217;d take time to put together but you can see where I&#8217;m heading with this post. Be Creative! <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/separate-comments-trackbacks/" rel="bookmark" title="Permanent Link: Separate Comments &#038; Trackbacks">Separate Comments &#038; Trackbacks</a></li><li><a href="http://www.earnersblog.com/new-layout/" rel="bookmark" title="Permanent Link: New Layout, Design &#038; Features">New Layout, Design &#038; Features</a></li><li><a href="http://www.earnersblog.com/7-tips-for-infiltrating-another-blogs-readership/" rel="bookmark" title="Permanent Link: 7 Tips for Infiltrating another Blogs Readership">7 Tips for Infiltrating another Blogs Readership</a></li><li><a href="http://www.earnersblog.com/blog-stereotypes/" rel="bookmark" title="Permanent Link: Blog Stereotypes: What Type of a Blogger are you?">Blog Stereotypes: What Type of a Blogger are you?</a></li><li><a href="http://www.earnersblog.com/removing-supplementals-wordpress/" rel="bookmark" title="Permanent Link: Removing Supplementals in WordPress or Other Sites">Removing Supplementals in WordPress or Other Sites</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/start-using-trackbacks-more/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Site Review Plugin</title>
		<link>http://www.earnersblog.com/wordpress-review-plugin/</link>
		<comments>http://www.earnersblog.com/wordpress-review-plugin/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 02:13:58 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/plugins/wordpress-review-plugin/</guid>
		<description><![CDATA[It&#8217;s not often I get really excited by a WordPress Plugin but yesterday I came across something that might possibly change the way I build sites for a long time...]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not often I get really excited by a WordPress Plugin but yesterday I came across something that might possibly change the way I build sites for a long time.</p>
<p>See, as you probably all know I&#8217;m a huge fan of building review sites.</p>
<p>Sites that review products or services have been &amp; are some of my biggest earners. I&#8217;ve actually got a post lined up soon all about review sites so look out for that.</p>
<p>Anyway, before I&#8217;ve been using a mash up of php scripts to achieve my desired look &amp; feel. Which is nice but I had always wanted to build review sites from inside WordPress. I love the layout, design &amp; ease of use.</p>
<p>Well now you can transform WordPress into a Review Blog or site with <a href="http://www.earnersblog.com/get/wpreviewsite" title="WP Review Site" target="_blank">WP Review Site</a>. The plugin allows you to a do number of things:</p>
<ul>
<li>Define categories of ratings you wish to collect, the minimum and maximum rating, and the display order of your rating categories.</li>
<li>Collect ratings along with every comment.</li>
<li>Display ratings collected for each comment.</li>
<li>Display average rating from all collected ratings for a post.</li>
<li>Display the number of positive or negative ratings for each post (50% or higher overall rating based on your scale).</li>
<li>Manage rating categories easily from your WordPress admin options tab.</li>
<li>Define HTML to appear before and after rating labels and inputs easily from your WordPress admin options tab with no complicated function arguments.</li>
<li>Drop-in to any existing blog to add ratings. Simply doesn&#8217;t display anything for comments or posts that didn&#8217;t include ratings.</li>
<li>Flexible enough to be used as a post rating system, or to drive an entire rating &amp; review site built on WordPress, depending entirely on how you customize the output.</li>
</ul>
<p>Screenshot:</p>
<p style="text-align: center"><img src="http://www.earnersblog.com/wp-content/uploads/2007/02/review-screenshot.gif" alt="Sites Review Plugin Screenshot" /></p>
<p>The above screenshot shows the plugin in action. Please note that this is not something you can simply activate in wordpress &amp; it&#8217;ll work as beautifully as this. You will have to edit templates &amp; style it into your blog accordingly.</p>
<p>The beauty of such a plugin is that you initially review a product or service yourself, give an overview of it. Then you readers submit their own reviews. This instigates much more user interaction. You can then link every review to your affiliate link of the product. Review sites convert like hotcakes, mainly because they are the go between before someone decides whether or not to buy the product. Show them the way <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;m currently working on a few new review sites at the moment &amp; I&#8217;m excited about getting my hands dirty with this plugin.</p>
<p>Features I&#8217;d like to see:</p>
<ol>
<li>Sorting Categories by Review Score</li>
<li>Ability to Adjust Review Figures from the WordPress Backend</li>
<li>Ajax type bar graphs as output</li>
<li>More seemless integration without as many Templates changes</li>
</ol>
<p><center><strong><a href="http://www.earnersblog.com/get/wpreviewsite" title="WP Review Site" target="_blank">Download WP Review Site Here</a></strong></center><br/></p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/top-wordpress-adsense-plugins/" rel="bookmark" title="Permanent Link: Top WordPress Adsense Plugins">Top WordPress Adsense Plugins</a></li><li><a href="http://www.earnersblog.com/start-using-trackbacks-more/" rel="bookmark" title="Permanent Link: Make Your Mark with Trackbacks">Make Your Mark with Trackbacks</a></li><li><a href="http://www.earnersblog.com/wordpress-translation-increase-traffic/" rel="bookmark" title="Permanent Link: Make your Blog Multilingual &#038; Increase Traffic by 200%">Make your Blog Multilingual &#038; Increase Traffic by 200%</a></li><li><a href="http://www.earnersblog.com/digg-this-reloaded/" rel="bookmark" title="Permanent Link: Digg This Reloaded: Integrating Digg Into WordPress">Digg This Reloaded: Integrating Digg Into WordPress</a></li><li><a href="http://www.earnersblog.com/separate-comments-trackbacks/" rel="bookmark" title="Permanent Link: Separate Comments &#038; Trackbacks">Separate Comments &#038; Trackbacks</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/wordpress-review-plugin/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Removing Supplementals in WordPress or Other Sites</title>
		<link>http://www.earnersblog.com/removing-supplementals-wordpress/</link>
		<comments>http://www.earnersblog.com/removing-supplementals-wordpress/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 23:49:57 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/blog-seo/removing-supplementals-wordpress/</guid>
		<description><![CDATA[I&#8217;ve had a few blogs hit supplementals lately even though they&#8217;ve got a pretty decent Inbound Link Authority...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a few blogs hit supplementals lately even though they&#8217;ve got a pretty decent Inbound Link Authority. Generally whenever this happens I&#8217;ll query the site in question with Google&#8217;s site: operator to see if I can see anything out of the ordinary.</p>
<p>Well chances are that if you&#8217;re using wordpress &amp; you&#8217;ve not set up your robots.txt correctly then you&#8217;ll be getting heaps of pages indexed that you don&#8217;t want.</p>
<p>What don&#8217;t you want indexed:</p>
<ol>
<li>Your Plugins &amp; Content Folder</li>
<li>Categories</li>
<li>Galleries &amp; Images</li>
<li>Feeds &amp; Trackbacks</li>
</ol>
<p>What you DO want indexed:</p>
<ol>
<li>Posts</li>
<li>Pages</li>
<li>Sitemap</li>
</ol>
<p>Shoemoney had a similar problem a few weeks ago (And most people think he&#8217;s an SEO?). What happens in that in order to rank a page in the main index Google must attribute a minimum pagerank value to it. If it falls below the threshold it&#8217;ll hit supplemental. So you need to make sure that your site has a good distrubution of pagerank or authority. So if most of your links are hitting your homepage &amp; you&#8217;re second level of navigation are your categories then you&#8217;re losing heaps of link popularity that should be going to your posts instead.</p>
<p>Ony my blogs I&#8217;ve implemented the following robots.txt with reasonable success (50% more pages indexed):</p>
<blockquote><p>User-Agent: Googlebot<br />
Disallow: /index.php<br />
Disallow: /category/<br />
Disallow: /feed/<br />
Disallow: /feed</p>
<p>User-agent: *<br />
Disallow: /wp-<br />
Disallow: /trackback/</p></blockquote>
<p>There is a good set of reasoning behind doing this on all of your sites. You should almost be telling the engines which pages you want to rank &amp; which pages you don&#8217;t. Removing the pages that are worthless to the engines &amp; only serve as a navigation between different parts of the site increase the relevance &amp; internal linking power of other pages.</p>
<p>I have a Joomla content site that has more category pages than static pages. So I exlcluded all the category pages &amp; my traffic has jumped from around 500 uniques/day to 1500 in about 8 days. Gotta love Everflux <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Remember if you have unique content on your blog &amp; you&#8217;re still suffering from Supplementals you need to get some links to your main page &amp; internals, never stop this cycle of linkbuilding or linkbaiting.</p>
<p>I&#8217;ve received about 4 or 5 reviews about Earners Blog that <a href="http://www.earnersblog.com/promotions/review-earners-blog/" title="Earners Blog Reviews">I asked for last week</a>, I&#8217;m still looking for a lot more. So keep em coming. There&#8217;s $25 &amp; an SEO Audit in it for you.</p>
<p>I also think that the DNS is still settling after the switch to the new hosting, so some of you may still be seeing &amp; commenting on the old version of the site. I&#8217;ll try to get the databases synced so we don&#8217;t lose some of the comments <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In other news check out Eli&#8217;s new post about <a href="http://www.bluehatseo.com/power-indexing-tips/" title="Power Indexing" target="_blank">Power Indexing sites with a large number of pages</a>.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/check-indexed-pages/" rel="bookmark" title="Permanent Link: Check Indexed Pages in Google using a Typo">Check Indexed Pages in Google using a Typo</a></li><li><a href="http://www.earnersblog.com/monetizing-make-money-404-pages/" rel="bookmark" title="Permanent Link: Monetizing or Making Money from 404 Pages">Monetizing or Making Money from 404 Pages</a></li><li><a href="http://www.earnersblog.com/popular-seo-blogs-hacked/" rel="bookmark" title="Permanent Link: Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available">Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</a></li><li><a href="http://www.earnersblog.com/supplemental-results-disappear/" rel="bookmark" title="Permanent Link: Google Removes &#8220;Supplemental Results&#8221; Tag">Google Removes &#8220;Supplemental Results&#8221; Tag</a></li><li><a href="http://www.earnersblog.com/sponsoring-wordpress-themes/" rel="bookmark" title="Permanent Link: Sponsoring WordPress Themes for Backlinks">Sponsoring WordPress Themes for Backlinks</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/removing-supplementals-wordpress/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</title>
		<link>http://www.earnersblog.com/popular-seo-blogs-hacked/</link>
		<comments>http://www.earnersblog.com/popular-seo-blogs-hacked/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 00:33:02 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/news/popular-seo-blogs-hacked/</guid>
		<description><![CDATA[Just a quick message to all you guys out there, Graywolf who runs a popular SEO blog has been the target of a hacker who has a list of mainstream SEO Guru&#8217;s that he wants to &#8220;put in their place&#8221; so to speak...]]></description>
			<content:encoded><![CDATA[<p>Just a quick message to all you guys out there, <a href="http://www.wolf-howl.com/" target="_blank" title="Graywolf">Graywolf</a> who runs a popular SEO blog has been the target of a hacker who has a list of mainstream SEO Guru&#8217;s that he wants to &#8220;put in their place&#8221; so to speak.</p>
<p>I didn&#8217;t get to see the list but I can probably guess a few of the names on there.</p>
<p>Anyway, WordPress has already patched the issue at hand &amp; I suggest that all of you regulars update your blogs to avoid any possible vulnerabilities.</p>
<p>WordPress 2.0.7 Fixes:</p>
<ul>
<li>Security fix for <code>wp_unregister_GLOBALS()</code> to work around the zend_hash_del_key_or_index bug in PHP 4 versions less than 4.4.3 and PHP 5 versions less than 5.1.4 with <code>register_globals</code> set to â€œOn.â€</li>
<li>Feeds now properly serve <code>304 Not Modified</code> headers instead of mismatched 200/304 headers (a.k.a. the FeedBurner bug).</li>
<li>Backport of another <code>304 Not Modified</code> fix from WordPress 2.1</li>
<li>Deleting WordPress Pages no longer gives an â€œAre You Sure?â€ prompt.</li>
<li>After deleting a WordPress Page, you are now properly redirected to the Edit Pages screen.</li>
<li>Sending an image at original size in Internet Explorer no longer adds an incorrect â€œheightâ€ attribute.</li>
</ul>
<p><a href="http://wordpress.org/development/2007/01/wordpress-207/" target="_blank" title="Wordpress 2.0.7 Patch">WordPress 2.0.7 Patch</a></p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/earnosphere-dec-1/" rel="bookmark" title="Permanent Link: Earnosphere: Week Ending 01/12/07">Earnosphere: Week Ending 01/12/07</a></li><li><a href="http://www.earnersblog.com/april-fools-linkbait/" rel="bookmark" title="Permanent Link: Good old April Fools Linkbait">Good old April Fools Linkbait</a></li><li><a href="http://www.earnersblog.com/wordpress-hacked/" rel="bookmark" title="Permanent Link: Is your WordPress Installation Compromised? Al Gore&#8217;s is.">Is your WordPress Installation Compromised? Al Gore&#8217;s is.</a></li><li><a href="http://www.earnersblog.com/textlinkads-to-allow-links-on-blogger/" rel="bookmark" title="Permanent Link: Textlinkads to allow links on Blogger">Textlinkads to allow links on Blogger</a></li><li><a href="http://www.earnersblog.com/yahoo-site-explorer/" rel="bookmark" title="Permanent Link: Link Building Guide Part 1 &#8211; Thank You Mr Yahoo">Link Building Guide Part 1 &#8211; Thank You Mr Yahoo</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/popular-seo-blogs-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Separate Comments &amp; Trackbacks</title>
		<link>http://www.earnersblog.com/separate-comments-trackbacks/</link>
		<comments>http://www.earnersblog.com/separate-comments-trackbacks/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 06:00:50 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/plugins/seperate-comments-trackbacks/</guid>
		<description><![CDATA[This was an issue that was annoying me lately, there&#8217;s really nothing worse than reading comments with loads of trackback spam interrupting an otherwise good conversation...]]></description>
			<content:encoded><![CDATA[<p>This was an issue that was annoying me lately, there&#8217;s really nothing worse than reading comments with loads of trackback spam interrupting an otherwise good conversation.</p>
<p>So I came across a plugin that enables you to split the comments &amp; trackbacks into separate lists. This tidies up your comments section &amp; also makes your comments much more enjoyable to read &amp; also reduces excess spam on the page that could have a negative effect on your keyword density.</p>
<p>The Plugin is for WordPress only, I&#8217;m pretty sure that some of the other platforms have this function built in already. The Plugin is called <a href="http://jackosh.com/wpplugins/trackbacklist/" target="_blank" title="Trackback List">Trackback List</a>.</p>
<p>The plugin basically filters through all of your comments &amp; raises a flag if there are any trackbacks. If it finds any it returns them in a list format that you can call using a different function.</p>
<p>The plugin is simple, easy to install. You can see it in action on this blog <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://jackosh.com/static/downloads/wpplugins/trackbacklist-120.zip" target="_blank" title="Trackback List">Download Trackback List v1.2</a></p>
<p>Related Resources:</p>
<ul>
<li><a href="http://www.earnersblog.com/category/plugins/" title="Wordpress plugins">WordPress Plugins</a></li>
<li><a href="http://www.earnersblog.com/tools/20-free-seo-tools/" target="_blank" title="Top SEO Tools">Top SEO Tools</a></li>
</ul>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/start-using-trackbacks-more/" rel="bookmark" title="Permanent Link: Make Your Mark with Trackbacks">Make Your Mark with Trackbacks</a></li><li><a href="http://www.earnersblog.com/7-tips-for-infiltrating-another-blogs-readership/" rel="bookmark" title="Permanent Link: 7 Tips for Infiltrating another Blogs Readership">7 Tips for Infiltrating another Blogs Readership</a></li><li><a href="http://www.earnersblog.com/new-layout/" rel="bookmark" title="Permanent Link: New Layout, Design &#038; Features">New Layout, Design &#038; Features</a></li><li><a href="http://www.earnersblog.com/dave-pasternack-update/" rel="bookmark" title="Permanent Link: Dave Pasternack Contest Update">Dave Pasternack Contest Update</a></li><li><a href="http://www.earnersblog.com/blog-stereotypes/" rel="bookmark" title="Permanent Link: Blog Stereotypes: What Type of a Blogger are you?">Blog Stereotypes: What Type of a Blogger are you?</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/separate-comments-trackbacks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Timestamp: Save Time Blogging</title>
		<link>http://www.earnersblog.com/wordpress-timestamp/</link>
		<comments>http://www.earnersblog.com/wordpress-timestamp/#comments</comments>
		<pubDate>Fri, 01 Dec 2006 11:49:13 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/methods/wordpress-timestamp/</guid>
		<description><![CDATA[Time is something that blogging can take up a lot of. Whether it&#8217;s writing interesting posts, trying to edit them or just doing research...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.earnersblog.com/wp-content/uploads/2006/12/Save_Time.jpg" id="image106" alt="Save Time with WordPress Timestamp Feature" align="right" />Time is something that blogging can take up a lot of. Whether it&#8217;s writing interesting posts, trying to edit them or just doing research. With some Bloggers it&#8217;s a well oiled machine, others find it hard to keep any consistency between posting times.<br />
Personally I try to find a few hours every night to write posts or come up with ideas for new posts. However, since I work a full time job as well, time sometimes gets the better of me.<!--adsensestart--></p>
<p>So here&#8217;s a quick tip that I&#8217;ve started using lately to make sure I keep my blog content as fresh as possible.</p>
<p>Instead of spending a few hours every night making posts, why not sit down &amp; dedicate a set number of hours at the start of the week &amp; write the posts in advance? This can be good especially if you&#8217;ve got lots of ideas floating around but don&#8217;t want to blog them all at once.</p>
<p>WordPress has a nifty built in feature that allows you to schedule posts in the future. You&#8217;ll notice it on the right hand menu whilst writing a post. The timestamp feature:</p>
<p style="text-align: center"><img src="http://www.earnersblog.com/wp-content/uploads/2006/12/Timestamp.jpg" alt="Timestamp" id="image108" /></p>
<p>The Timestamp tab allows you to schedule posts in the future, or even in the past if you like! The advantages of something like this to a blogger is invaluable. You could simply write all your posts at the beginning of the week &amp; schedule them throughout the week to post themselves. You could also schedule posts whilst you&#8217;re away on holidays.</p>
<p><strong>How&#8217;s it done?</strong></p>
<p>If you hit the edit timestamp tab then put in the time you&#8217;d like the post to be published you can schedule it for whenever you like. The trick is to not hit save on the post but to actually publish it like you normally would. Otherwise it&#8217;ll not publish it at the right time.</p>
<p>So now you&#8217;ll be able to free up more of your time for research, playing video games or spending valuable time down the pub with your mates <img src='http://www.earnersblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/popular-seo-blogs-hacked/" rel="bookmark" title="Permanent Link: Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available">Popular SEO Blogs Hacked: WordPress 2.0.7 Upgrade Available</a></li><li><a href="http://www.earnersblog.com/sponsoring-wordpress-themes/" rel="bookmark" title="Permanent Link: Sponsoring WordPress Themes for Backlinks">Sponsoring WordPress Themes for Backlinks</a></li><li><a href="http://www.earnersblog.com/blogging-productivity-tips/" rel="bookmark" title="Permanent Link: 12 Tips to Increase your Earning &#038; Blogging Productivity">12 Tips to Increase your Earning &#038; Blogging Productivity</a></li><li><a href="http://www.earnersblog.com/top-wordpress-adsense-plugins/" rel="bookmark" title="Permanent Link: Top WordPress Adsense Plugins">Top WordPress Adsense Plugins</a></li><li><a href="http://www.earnersblog.com/wordpress-remv-hack/" rel="bookmark" title="Permanent Link: Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7">Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/wordpress-timestamp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top WordPress Adsense Plugins</title>
		<link>http://www.earnersblog.com/top-wordpress-adsense-plugins/</link>
		<comments>http://www.earnersblog.com/top-wordpress-adsense-plugins/#comments</comments>
		<pubDate>Wed, 29 Nov 2006 01:22:29 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/plugins/top-wordpress-adsense-plugins/</guid>
		<description><![CDATA[Since the launch of WordPress most Bloggers monetize with Adsense. Here is a list of the best WordPress Plugins for integrating it into your site...]]></description>
			<content:encoded><![CDATA[<p>Since the launch of WordPress most Bloggers monetize with Adsense. Here is a list of the best WordPress Plugins for integrating it into your site. Whether it&#8217;s in the posts or inside the template itself.</p>
<p><strong>Template Only Plugins</strong></p>
<p><a href="http://www.supriyadisw.net/2006/07/adsense-beautifier" target="_blank" title="Adsense Beautifier">Adsense Beautifier</a>: This WordPress Plugin will add images &amp; a visible border (to comply with the Adsense TOS) next to your Adsense. This increases your CTR &amp; visibility of the ads.</p>
<p><strong>Inline Plugins (Inside Post)</strong></p>
<p><a href="http://wordpress-plugins.biggnuts.com/adsense-plugin/" target="_blank" title="Adsense Injection">Adsense Injection</a>:<strong> </strong>Rather than include Adsense in your template this plugin will randomly insert it into your posts. You can choose any of the sizes &amp; how often you&#8217;d like it to appear. The plugin randomly shifts where it inserts Adsense to make it look more natural this helps to avoid Ad Blindness &amp; Increase CTR.</p>
<p><strong>Displaying Earnings</strong></p>
<p><a href="http://www.internetvibes.net/2006/09/29/adsense-wordpress-plugin/" target="_blank" title="Adsense Earnings">Adsense Earnings</a>: This WordPress Plugin will show your Adsense Earnings on the WordPress Admin Panel, so you can view them whenever you log in.</p>
<p><a href="http://www.abuzant.com/od/2006-07/wp-adsenseprofit.html" target="_blank" title="Adsense Profit">Adsense Profit</a>: This WordPress Plugin allows you to display your Adsense Earnings to people visiting your site.</p>
<p><strong>Revenue Sharing Plugins</strong></p>
<p><a href="http://adsense.ayanev.com/" target="_blank" title="Adsense Revenue Sharing Plugin">Adsense Revenue Sharing</a>: With this WordPress Plugin you can share your Adsense Earnings with other authors on your blog &amp; also your friends.</p>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/quick-adsense-tip-1/" rel="bookmark" title="Permanent Link: Quick Adsense Tip #1: More Relevant Ads with Shorter Permalinks">Quick Adsense Tip #1: More Relevant Ads with Shorter Permalinks</a></li><li><a href="http://www.earnersblog.com/increase-adsense-relevancy/" rel="bookmark" title="Permanent Link: Increase Adsense Relevancy">Increase Adsense Relevancy</a></li><li><a href="http://www.earnersblog.com/adsense-referrals/" rel="bookmark" title="Permanent Link: Adsense Referrals">Adsense Referrals</a></li><li><a href="http://www.earnersblog.com/wordpress-remv-hack/" rel="bookmark" title="Permanent Link: Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7">Hack Alert (remv.php) &#8211; Upgrade to WordPress 2.7</a></li><li><a href="http://www.earnersblog.com/register-for-adsense/" rel="bookmark" title="Permanent Link: Register For Adsense, Join Adsense">Register For Adsense, Join Adsense</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/top-wordpress-adsense-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digg This Reloaded: Integrating Digg Into WordPress</title>
		<link>http://www.earnersblog.com/digg-this-reloaded/</link>
		<comments>http://www.earnersblog.com/digg-this-reloaded/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 22:51:57 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.earnersblog.com/plugins/digg-this-reloaded/</guid>
		<description><![CDATA[Digg This Reloaded is a nifty WordPress Plugin that helps you integrate your blog more with the Popular Social Networking Site, Digg...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.earnersblog.com/wp-content/uploads/2006/11/diggbutton.png" id="image65" alt="Digg This Button" align="right" />Digg This Reloaded is a nifty WordPress Plugin that helps you integrate your blog more with the Popular Social Networking Site, Digg.</p>
<p>This version of the plugin works seamlessly without even having to change any templates or modify any code.</p>
<p>It will place a small Digg Icon at the bottom of every post which when clicked will allow the user to Submit your story to Digg.<!--adsensestart--></p>
<p>Once it detects that your story has been submitted it then changes into the icon the right showing how many Diggs the post has accumulated. This kind of auto detection has not worked in other versions of similar plugins. However it works perfectly with Digg This Reloaded.<br />
The advantages of a plugin like this are:</p>
<ul>
<li>Make it quick &amp; easy for people to Digg your Posts</li>
<li>If someone visits your site via Digg they can Digg the post from the Button rather than having to go back to Digg.</li>
<li>It can increase your chances of making it to the front page of Digg</li>
</ul>
<p>The plugin is free &amp; can be downloaded here:</p>
<p><a href="http://dev.lipidity.com/wp-content/uploads/2006/11/digg-this12.zip" title="Digg This Reloaded 1.2" target="_blank">Download Digg This</a> | <a href="http://dev.lipidity.com/feature/digg-this-wordpress-plugin-reloaded" title="Digg This Reloaded 1.2" target="_blank">Visit Developers Site</a></p>
<p>Rumor has it that the plugin will also accommodate Del.icio.us soon aswell.</p>
<p>Recommended Resources:</p>
<ul>
<li>WordPress Plugins</li>
</ul>
<p>---<br />Related Articles at Affiliate Marketing Blog | How to Earn Money Online - Earners Blog:<ul><li><a href="http://www.earnersblog.com/digg-linkbait/" rel="bookmark" title="Permanent Link: Digg&#8217;s HD-DVD Revolt, the best Linkbait Ever?">Digg&#8217;s HD-DVD Revolt, the best Linkbait Ever?</a></li><li><a href="http://www.earnersblog.com/digg-buries-spike-the-vote/" rel="bookmark" title="Permanent Link: Digg buries Spike the Vote &#038; its Members">Digg buries Spike the Vote &#038; its Members</a></li><li><a href="http://www.earnersblog.com/digg-survival-guide-avoid-getting-buried/" rel="bookmark" title="Permanent Link: Digg Survival Guide: How to Avoid getting Buried">Digg Survival Guide: How to Avoid getting Buried</a></li><li><a href="http://www.earnersblog.com/digg-gaming/" rel="bookmark" title="Permanent Link: Digg Gaming: How to Spot it">Digg Gaming: How to Spot it</a></li><li><a href="http://www.earnersblog.com/digg-power-user/" rel="bookmark" title="Permanent Link: 15 Ways to become a Digg Power user in only 48 hours">15 Ways to become a Digg Power user in only 48 hours</a></li></ul></p><br /><p>Get <a href="http://storecrowd.com">Coupons</a>, <a href="http://storecrowd.com/deals">Deals</a> &amp; <a href="http://storecrowd.com/reviews">Reviews</a> for your favourite online stores at StoreCrowd</p>]]></content:encoded>
			<wfw:commentRss>http://www.earnersblog.com/digg-this-reloaded/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

