<?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>Make Money from Blogs &#187; Akismet</title>
	<atom:link href="http://earn-cash-tips.com/tag/akismet/feed/" rel="self" type="application/rss+xml" />
	<link>http://earn-cash-tips.com</link>
	<description>Articles on how to improve your money making abilities</description>
	<lastBuildDate>Thu, 17 Nov 2011 09:19:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Optimizing your WordPress account &#8211; 2</title>
		<link>http://earn-cash-tips.com/2009/08/optimizing-your-wordpress-account-2/</link>
		<comments>http://earn-cash-tips.com/2009/08/optimizing-your-wordpress-account-2/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 18:09:48 +0000</pubDate>
		<dc:creator>ashish</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Optimize]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Problems]]></category>

		<guid isPermaLink="false">http://earn-cash-tips.com/?p=123</guid>
		<description><![CDATA[<p>A few weeks back, I had written about how to take some basic steps towards optimizing your WordPress account. Imagine what would happen if more people started promoting your WordPress Blog, or wonders of wonders, it appears on the front page of Digg or Slashdot. In such cases, unless you have optimized your WordPress configuration [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks back, I had written about how to take some basic steps towards optimizing your WordPress account. Imagine what would happen if more people started promoting your WordPress Blog, or wonders of wonders, it appears on the front page of Digg or Slashdot. In such cases, unless you have optimized your WordPress configuration already, you can be pretty much sure that your account will get to a state where the server is not able to handle the load, and will shut down; further if your account is on a shared server, you might have some uncomfortable queries from your host.<br />
So, here are some points on how to optimize your account:<br />
1. Since WordPress works on a database system, it pulls every bit of content from the server. If there are a large number of requests for your blog, your server has to make that many DB queries to fetch the content. This puts a lot of stress on your server. User a Super Cache plugin to Cache some of the load and serve static HTML files instead of querying the DB (<a href="http://ocaoimh.ie/wp-super-cache/" target="_blank">link to plugin, and page</a>).<br />
2. When you serve various files such as binaries, videos, images, scripts, etc from your server, it becomes slow. Place them on other servers, so that the load on your server is reduced. For example, you can get videos from Youtube and Photos from Flickr, and also, you can even hire some hosting space on another server or on a service such as Amazon S3 for this purpose.<br />
3. If you are more advanced, look at your server logs; it may be possible to determine multiple requests from a bot or script that is of no good, blocking these may make your server behave a bit better<br />
4. Look to get stats on how your web page is loading. If it takes a lot of time to load your page, there may be a lot of plugins working, or scripts loading, and so on. Some tools you can use for this purpose are &#8211; LiveHTTPHeaders (<a href="https://addons.mozilla.org/en-US/firefox/addon/3829" target="_blank">link</a>, displays the HTTP headers), Firebug (<a href="http://www.getfirebug.com/" target="_blank">link</a>, Look at loading times for various artifacts on a page),<br />
5. Inside your wp-config.php file, remove some of the DB calls that are not necessary. For example, hard-code your Template Path, Stylesheet path (<a href="http://diggingintowordpress.com/2009/07/optimize-wordpress-performance-with-the-wp-config-php-file/" target="_blank">link to relevant site</a>). You will get some improvements.<br />
6. Review your themes. Some themes call a lot of graphics, and overall call a lot of files. If your CSS files are divided into multiple files, combine them. Replace graphics wherever possible with text.<br />
7. Review the plugins your are using to see whether they are required. Plugins can make your site much slower, especially if they do a lot of DB access and inefficient. If you are advanced technically, monitor the performance of your plugins.<br />
8. Refer to this quick cheat sheet for DB optimization (<a href="http://codex.wordpress.org/WordPress_Optimization/Cheat_Sheet" target="_blank">link to cheat sheet</a>)<br />
9. Reduce the number of posts on the front page of your blog. Typically, WordPress gives you 10 posts on your front page, you should reduce this to 3-4.<br />
10. Use WP&#8217;s Built in Object Cache as described on this page (<a href="http://elliottback.com/wp/why-my-wordpress-site-is-so-much-faster-than-yours/" target="_blank">link</a>). From the same site, refer to the MySQL Query Cache.<br />
11. For some detailed technical analysis of what can be done (<a href="http://elliottback.com/wp/optimizing-wordpress-performance-speed/" target="_blank">link</a>)<br />
12. Clean Options (Finds orphaned options and allows for their removal from the wp_ options table) &#8211; <a href="http://wordpress.org/extend/plugins/clean-options/" target="_blank">Get it from this page</a><br />
13. The combating comment spam page on WordPress.org (<a href="http://codex.wordpress.org/Combating_Comment_Spam" target="_blank">link</a>). If you have a good blog which is getting popular, increase in spam is only to be expected. Akismet filters out most comment spam, but just getting it into the junk spam list also adds some load to your server.<br />
14. Page with 5 tips for making your Blog Digg / Slashdot proof (<a href="http://blog.taragana.com/index.php/archive/5-golden-tips-for-wordpress-performance-optimization-slashdot-digg-protection/" target="_blank">link</a>)<br />
15. High Traffic Tips For WordPress on WordPress.org Codex (<a href="http://codex.wordpress.org/High_Traffic_Tips_For_WordPress" target="_blank">link</a>)</p>
<p>If you know more ways beyond this, please do let me know.</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://earn-cash-tips.com/2009/08/optimizing-your-wordpress-account-2/' addthis:title='Optimizing your WordPress account &#8211; 2 '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://earn-cash-tips.com/2009/08/optimizing-your-wordpress-account-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defensio: An alternative to Akismet</title>
		<link>http://earn-cash-tips.com/2008/10/defensio-an-alternative-to-akismet/</link>
		<comments>http://earn-cash-tips.com/2008/10/defensio-an-alternative-to-akismet/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 08:12:20 +0000</pubDate>
		<dc:creator>ashish</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Fraud]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Prevent]]></category>

		<guid isPermaLink="false">http://earn-cash-tips.com/?p=92</guid>
		<description><![CDATA[<p>Akismet is the current default anti-spam plugin on WordPress. It works by filtering comments already posted on the blog, and then decides on the basis of its algorithms whether the comment is spam or not. It is supposed to be continually updated so that new tactics by spam spinners are caught and the plugin continues [...]]]></description>
			<content:encoded><![CDATA[<p>Akismet is the current default anti-spam plugin on WordPress. It works by filtering comments already posted on the blog, and then decides on the basis of its algorithms whether the comment is spam or not. It is supposed to be continually updated so that new tactics by spam spinners are caught and the plugin continues to block such spam. This is different from the case of plugins which are captcha based where the user has to look at the random word that is generated, and then enter the same word. The idea is that only a live user will be able to make out the word and enter it, spam scripts cannot make out the word and hence the comment will not be posted.<br />
There are a number of people who do not believe in captcha based defenses, either because these are eventually overcome by spam creators, or because they add an additional layer of difficulty for people who wish to add comments, something that blog writers want to avoid. So, a lot of people use Akismet on their wordpress blog, but many of such people are not satisfied. Akisment many times generates false positives (that is, it flags a genuine comment as spam) or is not fast enough to prevent some of the newer spam techniques from working. Enter an Akismet alternative, Defensio (<a href="http://defensio.com/faq" target="_blank">link</a>)<br />
From the site:<br />
1. Is Defensio better than Akisment?<br />
We can&#8217;t make any promises (sorry), but our early testing suggests that Defensio&#8217;s performance is very, very good. As with any adaptive filter, it will only improve with time. You may need to give it a few days before it really kicks into gear, but quite quickly you should see a significant reduction in the flow of comment spam to your blog.<br />
2. Why do I need to create an account with Defensio?<br />
In order for our plug-in to work with your blog, we need to generate for you a unique API key. This requires some personal information (namely your blog and email address), and thus the requirement to create an account and sign-up for the service. All personal data will be kept strictly confidential, as described in our Privacy Policy.<br />
As you post articles to your blog and your readers&#8217; comments flow in, Defensio adapts to your content and habits in a personalized way. This means that no two bloggers will see Defensio react in precisely the same way, even for similar comments, which is a good thing &#8212; because one person&#8217;s ham might be another person&#8217;s spam. And our continuously evolving set of algorithmic tricks ensures that we&#8217;ll never let spammers gain the upper hand.<br />
Reviews of Defensio:<br />
1. Chaos-Laboratory (<a href="http://chaos-laboratory.com/2008/06/20/decided-to-give-defensio-anti-spam-a-shot-over-akismet/" target="_blank">link</a>)<br />
2. womantribune.com (<a href="http://womantribune.com/tackling-comment-spam-good" target="_blank">link</a>)<br />
3. Techcrunch.com (<a href="http://www.techcrunch.com/2007/11/07/defensio-sorts-blocked-comments-by-spaminess/" target="_blank">link</a>)</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://earn-cash-tips.com/2008/10/defensio-an-alternative-to-akismet/' addthis:title='Defensio: An alternative to Akismet '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://earn-cash-tips.com/2008/10/defensio-an-alternative-to-akismet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comment spam on WordPress &#8211; Use Akismet</title>
		<link>http://earn-cash-tips.com/2008/09/comment-spam-on-wordpress-use-akismet/</link>
		<comments>http://earn-cash-tips.com/2008/09/comment-spam-on-wordpress-use-akismet/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:21:25 +0000</pubDate>
		<dc:creator>ashish</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Fraud]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[False]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Prevent]]></category>

		<guid isPermaLink="false">http://earn-cash-tips.com/?p=78</guid>
		<description><![CDATA[<p>When I started using WordPress as my blogging platform (first buying a domain, then using one of these hosting services (link to article), and installing WordPress on it), I used to think that getting the right template on the blog, and then getting some good quality content on the blog was all that was required. [...]]]></description>
			<content:encoded><![CDATA[<p>When I started using WordPress as my blogging platform (first buying a domain, then using one of these hosting services (<a href="http://earn-cash-tips.com/2008/07/why-do-you-need-a-good-web-host/" target="_blank">link to article</a>), and installing WordPress on it), I used to think that getting the right template on the blog, and then getting some good quality content on the blog was all that was required. Within a few days, it turned out that I was wrong. After some days, I started getting comments from people, and those comments were welcome (since that meant that people were reading my blog). However, it soon turned bad &#8211; I started getting comments that were in the nature of spam. These were comments that would be posted by a script, and there would be 20 spam comments for every genuine one. It was pretty frustrating.<br />
I started reading about how to tackle this menace of junk spam comments on a WordPress Blog, and I realized that I already had the tools with me, it was just ignorance that was preventing me from acting on measures to prevent spam. There are some setting inside WordPress that will help you do this, </p>
<p>Login into the wp-admin of your blog -> Settings -> Discussion</p>
<p><a href="http://2.bp.blogspot.com/_Ra7nA-MvCYs/SN6ESrSnCLI/AAAAAAAAAJE/xEXg2zyIko8/s1600-h/Discussion+settings+for+moderating+comments+in+Wordpress+blog.JPG"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_Ra7nA-MvCYs/SN6ESrSnCLI/AAAAAAAAAJE/xEXg2zyIko8/s400/Discussion+settings+for+moderating+comments+in+Wordpress+blog.JPG" border="0" alt="Discussion settings for moderating comments in WordPress blog" id="BLOGGER_PHOTO_ID_5250779671953868978" /></a></p>
<p>There are some settings there that you can use, depending on how many people visit your blog and leave comments. In the beginning, you would have few visitors and comments, and you can afford to put moderation for all comments on. As you start getting more visitors and geniune comments, you will need to tweak the settings to be able to get genuine comments in and push spam comments out.<br />
Something that has worked like magic for the WordPress installations that I have is a plugin called <a href="http://akismet.com/" target="_blank">Akismet (from Automattic</a>); it has been so far been able to filter out almost all spam comments while letting genuine comments through.<br />
How do you get it to start working ? First, it is available under the plugins options: Login into wp-admin -> Plugins -> Activate Akismet<br />
You will need an API key to get it to start working, and you can get the key by registering for a WordPress.com account (<a href="http://wordpress.com/signup/" target="_blank">link</a>). You can use the same key on multiple blogs. Once this key has been entered in this destination: Login into wp-admin -> Plugins -> Akismet Configuration<br />
And it should start working, your comments with spam will be filtered into a separate location called Akismet Spam under the comments heading. It is rare that a genuine comment goes into this queue, and a bit less rare that spam does not get filtered out; however this plugin has caused me great happiness since it does so much of the work of spam filtration (remember, if you are using Akismet on a commercial blog, or on a blog that earns more than $500 per month, you should be buying a commercial key).</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://earn-cash-tips.com/2008/09/comment-spam-on-wordpress-use-akismet/' addthis:title='Comment spam on WordPress &#8211; Use Akismet '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://earn-cash-tips.com/2008/09/comment-spam-on-wordpress-use-akismet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

