<?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>Blog Design Studio &#187; Wordpress Plugins</title>
	<atom:link href="http://blogdesignstudio.com/category/wordpress-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogdesignstudio.com</link>
	<description>Best Wordpress Themes By Blog Design Studio</description>
	<lastBuildDate>Mon, 23 Jan 2012 09:01:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to create Twitter widget with WordPress and SimplePie (Part 1)</title>
		<link>http://blogdesignstudio.com/wordpress-tutorials/how-to-create-twitter-widget-with-wordpress-and-simplepie-part-1/</link>
		<comments>http://blogdesignstudio.com/wordpress-tutorials/how-to-create-twitter-widget-with-wordpress-and-simplepie-part-1/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 08:42:32 +0000</pubDate>
		<dc:creator>bojan</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Wordpress Tutorials]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/?p=2157</guid>
		<description><![CDATA[There are a lot of Twitter widgets for WordPress but in my experience none of those utilize the powerful SimplePie PHP class that is in the WordPress core. SimplePie is a powerful RSS reader class that has very nice built-in caching system since as we all know the Twitter API is limited to only 150 [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of Twitter widgets for WordPress but in my experience none of those utilize the powerful SimplePie PHP class that is in the WordPress core. SimplePie is a powerful RSS reader class that has very nice built-in caching system since as we all know the Twitter API is limited to only 150 requests per hour creating problems with high traffic websites.</p>
<p>You can download the plug-in <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/downloads/bs_twitter.rar">here</a>.</p>
<h2>Step 1: Getting the plug-in ready</h2>
<p>Create a folder and name it bs_twitter. In that folder, create a PHP file and name it the same as the folder i.e. bs_twitter. Also, in the bs_twitter folder create a folder and name it cache. This will be the main plug-in file. Now, include the SimplePie class and add the activation/deactivation hooks for the plug-in.</p>
<pre name="code" class="php:collapse">
register_activation_hook(__FILE__, 'bs_twitter_activate');
register_deactivation_hook(__FILE__, 'bs_twitter_deactivate');
if ( file_exists(ABSPATH . WPINC . '/class-feed.php') ) {
	@require_once (ABSPATH . WPINC . '/class-feed.php');
}
function bs_twitter_activate () {
}
function bs_twitter_deactivate () {
}
</pre>
<h2>Step 2: Have the widget code prepared</h2>
<p>Starting from WordPress 2.8, creating a widget has become easier with the widget API. This code needs to be pasted to the widgets.php file:</p>
<p>• BS_Twitter is both the name of the class, as well as the name of the first function (the constructor). The constructor contains the code needed to setup the widget – it&#8217;s called Twitter Posts.</p>
<p>• form() generates the form that you see in the widget management page in WordPress.</p>
<p>• update() updates the options you enter in the form when the widget configuration is saved.</p>
<p>• widget() displays the actual output of the widget in the main site.</p>
<p>• The last part of the code hooks into WordPress&#8217; widget initialization and instructs it to register your widget</p>
<pre name="code" class="php:collapse">class BS_Twitter extends WP_Widget {
	function BS_Twitter() {
		$widget_ops = array( 'classname' =&gt; 'twitter_widget', 'description' =&gt; 'Show your latest Tweets' );
				$this-&gt;WP_Widget( 'twitter_widget', 'Twitter Posts', $widget_ops);
	}
	function form($instance) {
	}
	function update($new_instance, $old_instance) {
	}
	function widget($args, $instance) {
	}
}
add_action( 'widgets_init', 'bs_load_widgets' );
function bs_load_widgets() {
	register_widget('BS_Twitter');
}
</pre>
<h2>Step 3: Creating the form</h2>
<p>First thing that needs to be done even before you create the form for a widget, you must determine the type of inputs you need. For this specific widget, 3 inputs are needed: title for the widget, Twitter username, and number of tweets to be displayed. If you look at the basic code above, in the form() function you will find a parameter $instance. This basically contains the current values for all inputs in the form (for example, when you save the form with certain values). Therefore, it is needed to pull out the current values of the widgdet and populate the widget input fields with them.</p>
<pre name="code" class="php:collapse">
$instance = wp_parse_args( (array) $instance, array('title' =&gt; 'Twitter', 'number' =&gt; 5, 'twitter_username' =&gt; 'abuzz') );
$title = esc_attr($instance['title']);
$twitter_username = $instance['twitter_username'];
$number = absint($instance['number']);
?&gt;
&lt;p&gt;
&lt;label for="&lt;?php echo $this-&gt;get_field_id('title'); ?&gt;"&gt; Title: &lt;/label&gt;
&lt;input id="&lt;?php echo $this-&gt;get_field_id('title'); ?&gt;" name="&lt;?php echo $this-&gt;get_field_name('title'); ?&gt;" type="text" value="&lt;?php echo $title; ?&gt;" /&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;label for="&lt;?php echo $this-&gt;get_field_id('twitter_username'); ?&gt;"&gt; Twitter username: &lt;/label&gt;
&lt;input id="&lt;?php echo $this-&gt;get_field_id('twitter_username'); ?&gt;" name="&lt;?php echo $this-&gt;get_field_name('twitter_username'); ?&gt;" type="text" value="&lt;?php echo $twitter_username; ?&gt;" /&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;label for="&lt;?php echo $this-&gt;get_field_id('number'); ?&gt;"&gt; Number of twits: &lt;/label&gt;
&lt;input id="&lt;?php echo $this-&gt;get_field_id('number'); ?&gt;" name="&lt;?php echo $this-&gt;get_field_name('number'); ?&gt;" type="text" value="&lt;?php echo $number; ?&gt;" /&gt;
&lt;/p&gt;
&lt;?php
</pre>
<p>Maybe this seems as heavy code, but it actually is very simple. It creates a HTML form containing several changes. Instead of using id&#8217;s and name&#8217;s, you have to use get_field_id(). This needs to be done because if there are multiple instances of a widget and only one single ID, there will be errors. WordPress takes care of it for you if you use the said function. The other thing is that the value of the input fields is generated using PHP.</p>
<h2>Step 4: Making Sure Your Form is Saved</h2>
<p>To make sure your form updates, you need to configure your update() function. This is very simple. By default, WordPress gives 2 parameters &#8211; the old instance, and the new instance. We basically don&#8217;t really need the old instance because the old instance is only used if there are values that you may not want to change. Paste in this code into the update() function:</p>
<pre name="code" class="php:collapse">$instance=$old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['twitter_username']=$new_instance['twitter_username'];
$instance['number']=$new_instance['number'];
return $instance;</pre>
<h2>Step 5: Output the Widget HTML</h2>
<p>This is the final step, and it makes sure you widget displays HTML on the front end. Now that we have the user inputs set up, we can just use the inputs to communicate with the Twitter API and display tweets. The first step in the widget() function is to get the values of the user inputs. Copy and paste this code:</p>
<pre name="code" class="php:collapse">extract($args);
$title = apply_filters('widget_title', $instance['title']);
if ( empty($title) ) $title = false;
$twitter_username = $instance['twitter_username'];
$number = absint( $instance['number'] );
if ( empty($twitter_username) ) return;</pre>
<p>Once this is done, paste this code:</p>
<pre name="code" class="php:collapse">
if($title){
echo $before_title;
echo $title;
echo $after_title;
}
echo $before_widget;
if (class_exists('SimplePie')) {
$feed = new SimplePie();
$feed-&gt;set_feed_url('http://www.twitter.com/statuses/user_timeline/'.$twitter_username.'.rss');
$feed-&gt;set_cache_location(ABSPATH.'wp-content/plugins/bs_twitter/cache');
$feed-&gt;enable_cache(true); //disable caching
$feed-&gt;set_cache_duration(1800); //The number of seconds to cache for. 60 is 1 minute, 600 is 10 minutes, 900 is 15 minutes, 1800 is 30 minutes.
$feed-&gt;set_timeout(50);
$success = $feed-&gt;init();
$feed-&gt;handle_content_type();
if ($success):
echo "&lt;ul&gt;";
foreach ($feed-&gt;get_items(0, $number) as $item):
if ($item) {
?&gt;
&lt;li&gt;
&lt;a href="&lt;?php echo $item-&gt;get_permalink(); ?&gt;"&gt;
&lt;?php echo $item-&gt;get_title() ?&gt;
&lt;/a&gt;
&lt;/li&gt;
&lt;?php
} // end if there is an item
endforeach;
echo "&lt;/ul&gt;";
endif; //success
}
echo $after_widget;
</pre>
<p>This is a great plug-in for those who have high-traffic websites. This tutorial makes it easier to create customized Twitter widget. Options can be added and change to suite your needs.</p>
<p>This is just the first tutorial of the series that is coming up in the next period. We will explain how to customize this widget and adding more features such as adding the user avatar, discovering hyperlinks and hashtags and much more. </p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© bojan for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2012. |
<a href="http://blogdesignstudio.com/wordpress-tutorials/how-to-create-twitter-widget-with-wordpress-and-simplepie-part-1/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-tutorials/how-to-create-twitter-widget-with-wordpress-and-simplepie-part-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Secure WordPress &amp; be a responsible blogger!</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/secure-wordpress-be-a-responsible-blogger-webmaster/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/secure-wordpress-be-a-responsible-blogger-webmaster/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 01:28:12 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[anti-malware]]></category>
		<category><![CDATA[antispam]]></category>
		<category><![CDATA[antivirus for wordpress]]></category>
		<category><![CDATA[Comodo]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Mcafee]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/?p=1841</guid>
		<description><![CDATA[We all saw that how Osama&#8217;s death video malware was spreading on Facebook recently and created lot of trouble for the social network users. It&#8217;s sad to see that how anti-social elements are trying to socialize in their own manner! Anyway, I&#8217;m fully aware of such nasty tricks, so thankfully I didn&#8217;t become a victim, [...]]]></description>
			<content:encoded><![CDATA[<p>We all saw that how <a href="http://www.allfacebook.com/beware-osama-bin-laden-malware-reincarnates-2011-05">Osama&#8217;s death video malware</a> was spreading on Facebook recently and created lot of trouble for the social network users. It&#8217;s sad to see that <em>how anti-social elements are trying to socialize in their own manner</em>! Anyway, I&#8217;m fully aware of such nasty tricks, so thankfully I didn&#8217;t become a victim, moreover, I keep myself safe with the help of fantastic software utilities by some fantastic individuals &amp; companies! Let me share that how I keep myself safe from malicious websites and then I&#8217;ll share that how as a blogger/webmaster you should take the responsibility to keep your visitors safe.</p>
<h3>Tools to keep yourself safe from malicious websites</h3>
<p><a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/06/badfb_small.png"><img class="alignnone size-full wp-image-1845" title="badfb_small" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/06/badfb_small.png" alt="" width="405" height="240" /></a></p>
<p><strong>1. Internet security softwares</strong> &#8211; There are some amazing internet security software both paid &amp; free that are doing a fantastic job in keeping the users safe. I personally use <a href="http://www.comodo.com/home/internet-security/free-internet-security.php">Comodo&#8217;s free internet security software</a> &#8211; even though it&#8217;s free &#8211; it&#8217;s got much more features and has better detection rate than even most popular paid internet security softwares! It&#8217;s got antivirus, antimalware, firewall, sandbox technology and what not, I recommend it to everyone.</p>
<p><strong>2. Secure DNS solutions</strong> &#8211; <a href="http://www.opendns.com/">OpenDNS</a>, <a href="http://www.comodo.com/secure-dns/">Comodo&#8217;s secure DNS</a> are some of those services that deserve all the respect in the world! By just making small changes in your internet connection&#8217;s DNS settings, you can do tons of good to yourself! These services have a database of malicious and phishing websites and will automatically block them even if you happen to click on a dangerous link. I prefer Comodo&#8217;s secure DNS.</p>
<p><strong>3. Web of Trust</strong> &#8211; <a href="http://mywot.com">Web of Trust</a> is another such service that alerts you about the site&#8217;s reputation and the dangers associated with it. <a href="http://techcrunch.com/2011/05/12/facebook-parters-up-with-web-of-trust-to-warn-users-about-malicious-links/">Facebook partnered with them</a>, to alert it&#8217;s users for bad &amp; dangerous links after it was raided by &#8220;social anti-social elements&#8221;. They have a plugin for major browsers which alerts users for bad links. It&#8217;s a must have for everyone!</p>
<p><strong>4. McAfee SiteAdvisor</strong> &#8211; I&#8217;d be honest, I used to love <a href="http://www.siteadvisor.com/">Siteadvisor</a> like anything, I still love it as it saves me from going to unreliable links and even shows the website&#8217;s reputation in search engine and thus allowing me to avoid possibly dangerous websites (It&#8217;s very much similar to Web Of Trust). However, now McAfee also install it&#8217;s toolbar and changes the search engine &#8211; that&#8217;s something it didn&#8217;t do earlier and I loved that way. Anyway, you can disable those things &#8211; so it still has my respect. It integrates well with major browsers and can be a great savior as you can see that which link can be dangerous even before you click it.</p>
<p><strong>5. Sandboxie</strong> &#8211; Even though Comodo offers sandbox technology, I prefer to use Sandboxie. It&#8217;s a free tool that runs your programs in an isolated space which prevents them from making permanent changes to other programs and data in your computer. Check out the <a href="http://www.sandboxie.com/">Sandboxie&#8217;s website</a> to know more about this fantastic concept! Again, it&#8217;s a must have!</p>
<p>These tools keep my pretty much safe from most of the threats and I&#8217;m thankful to the wonderful developers who&#8217;ve made them.</p>
<h3>Be a responsible blogger and secure your WordPress now!</h3>
<p><a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/04/secure-wordpress.jpg"><img class="alignnone size-full wp-image-1373" title="secure-wordpress" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/04/secure-wordpress.jpg" alt="" width="487" height="370" /></a></p>
<p>As a user, I was safe however as a webmaster, the incident got me thinking that how blogs and websites can also be targeted by malware &amp; virus makers, not that they <a href="http://codex.wordpress.org/FAQ_My_site_was_hacked">haven&#8217;t done in the past</a>, however &#8211; this is where I see it growing even more and a much faster rate! There is a flurry of automated comment submitting softwares in the market, any malware maker can host the malware on a website and then submit the comments with that malicious link on thousands of blogs in a matter of minutes and an ignorant blogger/webmaster can approve the comment which may result in the following -</p>
<ul>
<li>Infect website/blog readers&#8217; computers.</li>
<li>Reduce site&#8217;s ranking in Google &#8211; Google doesn&#8217;t like site that promote malware!</li>
<li>Bad reputation of website amongst visitors.</li>
</ul>
<p>These are some points that no blogger would like to see happening to them. I certainly wouldn&#8217;t want this happening to me either. So, I decided to find a tool that would alert me of a malicious link before I approve any comment or which scans the links in the comments &amp; posts and gives a report so that I can take corrective measures against those links. Unfortunately, I couldn&#8217;t find one!</p>
<p>Then it hit me that why are security companies not making such a tool? Tools like Web of Trust, Siteadvisor, OpenDNS, Comodo&#8217;s secure DNS depend a lot on community&#8217;s feedback, they certainly are useful and keep people safe, however it takes some time before the community gets to know of a newly created malicious website, what if you visit those sites before they are marked as unsafe? Wouldn&#8217;t it be cool if the security companies made a tool, that integrates with famous content management systems like WordPress &amp; Drupal and shows the reputation of outgoing links to the visitor before hand? Not only this will be a win-win situation for bloggers, webmasters &amp; readers; it&#8217;ll be a win-win situation for the antivirus company as well -</p>
<ul>
<li><strong>Tons of free data about links</strong>. This will only strengthen their commercial offerings! They can directly block dangerous links for their software users.</li>
<li><strong>Free marketing</strong> &#8211; If not for the data, they can at least get the free marketing about their company! If they&#8217;ll show reputation of the link then they can always show the following message below it &#8211; &#8220;<em>Link&#8217;s safety checked by XYZ Security Tool</em>&#8220;. As a webmaster, I wouldn&#8217;t mind such a message, as it&#8217;ll strengthen my reputation amongst my readers that I care for them!</li>
</ul>
<p>I&#8217;d given up looking for the tool and had started hoping that some security company will come up with such a tool that&#8217;ll show me link security report and will also show the reputation of out going links to my readers. And well, then I came across <a href="http://wordpress.org/extend/plugins/bitdefender-antispam-for-wordpress/">BitDefender&#8217;s Antispam</a>! It&#8217;s almost the tool that I was expecting and that too from a popular and reputed security company!</p>
<h3>Why Bitdefender Antispam when I&#8217;ve got Akismet?</h3>
<p><a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/06/bitdefender-antispam.jpg"><img class="alignnone size-full wp-image-1846" title="bitdefender-antispam" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/06/bitdefender-antispam.jpg" alt="" width="480" height="190" /></a></p>
<p>That&#8217;s the first question that came in mind when I read the plugin&#8217;s name, however I was super happy to find out that it&#8217;s almost doing the same thing that I was thinking about, it&#8217;s just that it doesn&#8217;t take the advantage of free marketing &amp; doesn&#8217;t scan the links in the posts. <a href="http://4blogs.bitdefender.com/">Bitdefender</a> has made this essentially an anti-spam plugin, however I think it&#8217;ll gain the edge over Akismet as it will also check if the links are malicious or are phishing sites. The plugin is in beta and doesn&#8217;t appeal in terms of usability at all, however I&#8217;m still running it for few weeks to see how well it performs in terms of detecting the spam! Of course, I&#8217;ll be sharing my experience in the next blog post. <strong><em><a href="http://wordpress.org/extend/plugins/bitdefender-antispam-for-wordpress/installation/">Installation instructions for Bitdefender Antispam</a></em></strong>. Will I suggest the plugin now? Like other security tools that I&#8217;ve recommended, <em>I won&#8217;t recommend this for now</em> &#8211; it certainly needs a face-lift! However, I&#8217;m sure by the time it&#8217;ll be out of Beta, it should be one of your anti-spam solutions.</p>
<h3>Secure WordPress to avoid stupid hacks &amp; avoid becoming owner of a malicious website!</h3>
<p>There have been lot of posts written about as to how one can secure WordPress, I&#8217;ve covered this topic as much as I could. The guides that we&#8217;ve included will not be the ultimate solution for making the site un-hackable, however by following them you&#8217;ll save yourself from automated attacks and newbie hackers who try and hack websites for fun. Please follow these links to make your WordPress secure -</p>
<ul>
<li><a href="http://blogdesignstudio.com/wordpress-customization/wordpress-security-service-for-free/">WordPress Security for free</a></li>
<li><a href="http://codex.wordpress.org/Hardening_WordPress">Hardening WordPress</a></li>
<li><a href="http://blogsecurity.net/wordpress/wordpress-security-whitepaper">WordPress Security Whitepaper</a></li>
<li>&#8220;<em><a href="http://goo.gl/Ct9aN">Security check</a></em>&#8221; series on <a title="WordPress Design" href="http://blogdesignstudio.com">Blog Design Studio</a>.</li>
</ul>
<p>I hope that other security companies take inspiration from Bitdefender and well my marketing tip and come up with such powerful tools for webmasters. This way together we&#8217;ll be able to make internet a bit safe! After all, we&#8217;ll be able to block them at source itself! And I hope that if you&#8217;ve not taken steps to secure your WordPress installation, then you would do them right after you share this post on social networks ;)</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2011. |
<a href="http://blogdesignstudio.com/wordpress-plugins/secure-wordpress-be-a-responsible-blogger-webmaster/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/secure-wordpress-be-a-responsible-blogger-webmaster/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>JetPack &#8211; Install it right away!! A must for every self hosted WordPress</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/jetpack-install-it-right-away-a-must-for-every-self-hosted-wordpress/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/jetpack-install-it-right-away-a-must-for-every-self-hosted-wordpress/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 11:59:38 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[JetPack]]></category>
		<category><![CDATA[Platform]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[WordPress.com]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/?p=1817</guid>
		<description><![CDATA[Automattic team has yet again proven that why they are such a brilliant and innovative company! This time around they’ve come up JetPack, an innovative idea for a plugin that presents their hosted add-on services of WordPress.com to millions of self-hosted WordPress (wordpress.org) installs across the web. To put it up simply, its a plugin [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/03/jetpack.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="jetpack" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/03/jetpack_thumb.jpg" border="0" alt="jetpack" width="504" height="129" /></a></p>
<p>Automattic team has yet again proven that why they are such a brilliant and innovative company! This time around they’ve come up <strong><a href="http://jetpack.me/" target="_blank">JetPack</a></strong>, an innovative idea for a plugin that presents their hosted add-on services of WordPress.com to millions of self-hosted WordPress (wordpress.org) installs across the web.</p>
<p>To put it up simply, its a plugin that bridges the gap between the features offered exclusively to WordPress.com users and self-hosted WordPress installs. Here’s what Scott Berkun himself said in his announcement post -</p>
<blockquote><p>WordPress.com has grown into one of the most amazing cloud architectures in the world. This has enabled blogs hosted here to have features unavailable on self-hosted WordPress installs. This makes us sad, since here at WordPress.com we want every WordPress install everywhere to be amazing.</p></blockquote>
<p>Once you install JetPack on your self-hosted WordPress install, you’ll get these additional features on your own WordPress-</p>
<ul>
<li><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/gravatar-hovercards/" target="_blank">Gravatar Hovercards</a> &#8211; A <a href="http://en.support.wordpress.com/avatars/gravatars/">Gravatar</a> is your profile on the web, and the Hovercard is one way your information is made visible to others. It’s an easy way to help people find your blog, or access your identity on other services like twitter, facebook, or linkedin</span></li>
<li><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/stats/" target="_blank">WordPress.com Stats</a> &#8211; All blogs on WordPress.com get our Stats as a free feature. Every time a visitor views a URL on your blog, the visitor’s web browser loads a small <a href="http://support.wordpress.com/smiley-on-your-blog/">smiley-face image</a> from our stats system. The action is logged and the logs are summarized every few minutes to update the statistics, graphs, charts, and lists</span></li>
<li><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/widgets/twitter-widget/" target="_blank">Twitter Widget</a> – Twitter widget allows you to display Twitter feed in your blog’s sidebar or where ever widgets are supported in the theme</span></li>
<li><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/shortcodes/" target="_blank">Shortcodes</a> &#8211; Shortcodes allow you to easily and safely embed media from other places in your site. With just one simple code, you can tell WordPress to embed YouTube, Flickr, and other media. Enter a shortcode directly into the Post/Page editor to embed media. For specific instructions follow the links below.Available shortcodes are: <a href="http://support.wordpress.com/archives-shortcode/">archives</a>, <a href="http://support.wordpress.com/audio/">audio</a>, <a href="http://support.wordpress.com/videos/bliptv/">blip.tv</a>, <a href="http://support.wordpress.com/videos/dailymotion/">dailymotion</a>, <a href="http://support.wordpress.com/digg/">digg</a>, <a href="http://support.wordpress.com/videos/flickr-video/">flickr</a>, <a href="http://support.wordpress.com/videos/google-video/">googlevideo</a>, <a href="http://support.wordpress.com/scribd/">scribd</a>, <a href="http://support.wordpress.com/slideshows/slide/">slide</a>, <a href="http://support.wordpress.com/slideshows/slideshare/">slideshare</a>, <a href="http://support.wordpress.com/audio/soundcloud-audio-player/">soundcloud</a>, <a href="http://support.wordpress.com/videos/vimeo/">vimeo</a>, <a href="http://support.wordpress.com/videos/youtube/">youtube</a>, and <a href="http://support.polldaddy.com/wordpress-shortcodes/">polldaddy</a></span></li>
<li>
<div><span style="font-family: 'Lucida Sans Unicode';"><a href="http://en.support.wordpress.com/shortlinks/" target="_blank">Shortlinks</a> <span style="color: #666a73;">- You may already be using one of the popular </span></span><a href="http://en.wikipedia.org/wiki/URL_shorteners"><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">URL shorteners</span></a><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">, such as </span><a href="http://bit.ly/"><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">bit.ly</span></a><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"> or </span><a href="http://tinyurl.com/"><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">TinyURL</span></a><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">, to publish links on Twitter or other services. WordPress.com has its own URL shortening feature, wp.me, so that you can quickly and easily get shortened links to your blog posts and pages and share them to the world</span></div>
</li>
<li>
<div><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/sharing/" target="_blank">Sharing</a> &#8211; At the bottom of each post and page you can now include sharing buttons for your readers to share your content across a range of social networks/services.</span></div>
</li>
<li>
<div><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;"><a href="http://en.support.wordpress.com/latex/" target="_blank">Latex</a> &#8211; WordPress.com supports Latex, a typesetting system that’s really good at formatting mathematical formulas and equation and finally ….</span></div>
</li>
<li>
<div><span style="font-family: 'Lucida Sans Unicode'; color: #666a73;">Proofreading &#8211; WordPress can check your spelling, grammar, and style using <a href="http://www.afterthedeadline.com/">After the Deadline</a> Proofreading technology.</span></div>
</li>
</ul>
<p>At the time of the launch, above mentioned features are available and more features will be added in future. Well, these features are completely free although we can assume that it will also help Automattic to promote their freemium services like VideoPress, PollDaddy, Akismet and since it can be a single bridge between WordPress.com &amp; millions of self hosted WordPress installs across the web, it has the power to become a very powerful &amp; big platform only if Automattic decides to make WordPress.com anything like Facebook by combing all of its services listed on its <a href="http://automattic.com/" target="_blank">homepage</a>. Well, I would like to surely explain that in my next post <img class="wlEmoticon wlEmoticon-smile" style="border-style: none;" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2011/03/wlEmoticon-smile.png" alt="Smile" />. For now, I would insist that you should install it as soon as possible as this is <strong>one hell of plugin</strong>!</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2011. |
<a href="http://blogdesignstudio.com/wordpress-plugins/jetpack-install-it-right-away-a-must-for-every-self-hosted-wordpress/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/jetpack-install-it-right-away-a-must-for-every-self-hosted-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft &amp; WordPress &#8211; Good Work MS!</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/microsoft-wordpress-open-source-iis/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/microsoft-wordpress-open-source-iis/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 03:30:27 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SilverLight]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/?p=1417</guid>
		<description><![CDATA[Microsoft has always been criticized for not adhering to Open standards and not being active in Open-source community. However, it looks like Microsoft has tried a fair bit of things to ensure that their products work well with popular web applications. I personally believe that Microsoft&#8217;s web servers aren&#8217;t good enough for PHP/MySQL driven websites [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1422" class="wp-caption alignnone" style="width: 513px"><img class="size-full wp-image-1422 " title="microsoft-wordpress-platform-1" src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/06/microsoft-wordpress-platform-1.jpg" alt="" width="503" height="103" /><p class="wp-caption-text">WordPress For Windows</p></div>
<p>Microsoft has always been criticized for <strong>not adhering to Open standards</strong> and not being active in <strong>Open-source community</strong>. However, it looks like Microsoft has tried a fair bit of things to ensure that their products work well with popular web applications. I personally believe that Microsoft&#8217;s web servers aren&#8217;t good enough for PHP/MySQL driven websites and moreover, the <a href="http://blogdesignstudio.com/wordpress-tutorials/webmasters-should-use-mac-linux/" target="_blank">security concern</a> is one of the biggest factors to avoid Microsoft Windows. When Linux servers aren&#8217;t safe then no doubt, it&#8217;ll be a bigger pain to manage Windows Servers for security.</p>
<p>Security is another topic, coming back to the point of <strong><span style="color: #008000;"><a href="http://www.microsoft.com/web/wordpress/" target="_blank">Microsoft &amp; WordPress</a></span></strong>, I was a bit surprised to see how Microsoft has bundled WordPress in <strong><a href="http://weblogs.asp.net/scottgu/archive/2009/06/02/microsoft-web-platform-installer.aspx" target="_blank">Web Platform Installer</a></strong> along with various other popular web applications like Drupal, Joomla etc. Check out the list of <a href="http://www.microsoft.com/web/gallery/" target="_blank">application in the gallery</a>. Although, I was happy to see that Microsoft has made this move, this should give confidence to those who find working with Linux web servers and web applications a bit difficult.</p>
<h3>Microsoft &amp; WordPress technologies shake hands!</h3>
<p><strong>1. WordPress on SQL Server</strong> : With the help of IIS 7, SQL Server Express and WordPress on SQL Server distribution, its possible to run WordPress easily on Windows Vista, Windows 7 etc. It&#8217;s not the simplest way to install it, however <strong><a href="http://wordpress.visitmix.com/development/installing-wordpress-on-sql-server" target="_blank">this great guide</a></strong> by Zach Skyles Ownes should take you home.</p>
<p><strong>2. SilverLight Gallery Plugin</strong> &#8211; Microsoft has been trying hard to make SilverLight popular among developers and end users. <a href="http://wordpress.org/extend/plugins/silverlight-gallery/" target="_blank">This plugin</a> can surely help them achieve this goal. If this plugin gets adopted by bloggers, then the end users will have to install SilverLight in order to ensure that they can view the image gallery on their browsers.</p>
<p><strong>3. SilverLight Bing Maps</strong> &#8211; This plugin integrates SilverLight &amp; Bing Maps with WordPress. This plugin lets bloggers to put their location with interactive maps like Google Maps on their blog.</p>
<p><strong>4. Windows Azure Storage for WordPress</strong> &#8211; This plugin lets WordPress users to store their media files and static files on <a href="http://www.microsoft.com/windowsazure/windowsazure/" target="_blank">Windows Azure platform</a> whose more popular alternatives are Amazon Web Services or Rackspace Cloud Files.</p>
<h3>Why is Microsoft doing this?</h3>
<p>The first question that comes in mind that why is Microsoft trying to make its technologies work with WordPress, Drupal or other PHP/MySQL driven web applications. Well, <a href="http://wordpress.visitmix.com/?p=131" target="_blank">Zach has already answered this question</a> -</p>
<blockquote><p>I’m a PHP-bred Technical Evangelist at Microsoft, and I love the fact that PHP now runs great on Windows, SQL Server, Windows Azure and SQL Azure.  It’s exciting to see how Microsoft technology can light up WordPress, whether it’s through Silverlight image gallery plugins, Bing Maps integration or future opportunities with technologies like our information service, <a href="http://www.microsoft.com/windowsazure/dallas/">Dallas</a>.</p></blockquote>
<p>Business sense says that Microsoft is using these popular web applications to make its existing or new technologies popular amongst end users, bloggers and developers. However, the interesting part will be to see that how many bloggers &amp; developers [the ones not sold to Microsoft's technology] will be keen in adopting these? I personally welcome this move by Microsoft, although practically I doubt that I would use any of these technologies as I&#8217;m already comfortable with the setup that I currently have. What do you think about this move from Microsoft?</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2010. |
<a href="http://blogdesignstudio.com/wordpress-plugins/microsoft-wordpress-open-source-iis/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/microsoft-wordpress-open-source-iis/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to have VaultPress like protection for your WordPress blog</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/how-to-have-vaultpress-like-protection-for-your-wordpress-blog/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/how-to-have-vaultpress-like-protection-for-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 10:19:35 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[VaultPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/wordpress-plugins/how-to-have-vaultpress-like-protection-for-your-wordpress-blog/</guid>
		<description><![CDATA[From last couple of weeks, I&#8217;ve been trying to ensure that how WordPress can be secured enough to avoid any kind of malware attack. In the course, I found lot of new information about securing web applications and realized that how small and little settings can make and break things. While my struggle to know [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/04/vaultpress.jpg" width="480" height="212" alt="vaultpress.jpg" /></p>
<p>From last couple of weeks, I&#8217;ve been trying to ensure that how <a href="http://blogdesignstudio.com/wordpress-customization/wordpress-security-service-for-free/">WordPress can be secured</a> enough to avoid any kind of malware attack. In the course, I found lot of new information about securing web applications and realized that how small and little settings can make and break things. While my struggle to know more about security was going on, I came across the launch post of <a href="http://vaultpress.com/"><b>VaultPress</b></a><b>, a blog backup and protection service</b> from <a href="http://automattic.com/">Automattic</a>.</p>
<p>Please note that the service has been <b>announced in beta and is available for only few users</b>. One can apply for the <a href="http://vaultpress.com/signup/">invite over here</a>. It&#8217;ll be a premium service and while signing up you can also mention that how much are you comfortable in paying for this kind of a service. If I were to decide the price, I would keep it <b>around $10/month</b>. I&#8217;ve not tested the service myself, however we could gather all the information about VaultPress from the coverage it has received from the biggies like <a href="http://techcrunch.com/2010/03/30/wordpress-opens-up-vaultpress-a-safe-place-to-back-up-your-blog/">TechCrunch</a>, <a href="http://www.readwriteweb.com/archives/automattic_announces_vaultpress_security_plugin.php">ReadWriteWeb</a>, <a href="http://www.businessinsider.com/wordpress-building-another-revenue-stream-vaultpress-backup-service-2010-3">Silicon Alley Insider</a>, <a href="http://blog.vaultpress.com/2010/03/30/announcing/">VaultPress blog</a> and finally my favorite <a href="http://www.wptavern.com/automattic-launches-vaultpress-no-backupbuddy-killer/">WordPress Tavern</a>.</p>
<h3>Features of VaultPress</h3>
<p><b>1. Focused on WordPress.org users</b> &#8211; WordPress.com is one of the most powerful and secure blog services around. However, same can&#8217;t be said for the users who use self hosted WordPress version on their own servers. There have been many <a href="http://patthorntonfiles.com/blog/2008/03/11/is-wordpress-secure-enough/">horror stories</a> in the past where many self hosted WordPress installs got infected from malware and much hoopla was created. VaultPress has been designed to work with self hosted WordPress to ensure that they can also get the quality backup and security service to avoid any mishap.</p>
<p><b>2. Real Time &amp; Complete Backups</b> &#8211; VaultPress is an all-in-one backup package. It will backup posts, categories, tags and rest of the data along with themes, files etc. <b>Jeff @ WordPress Tavern</b> reckons that VaultPress will face stiff competition from <b><a href="http://www.backupify.com/">Backupify</a></b>, <b><a href="http://pluginbuddy.com/purchase/backupbuddy/">BackupBuddy</a></b> and <a href="http://wordpress.org/extend/plugins/wp-db-backup/">other backup plugins</a>. According to Matt, founder of WordPress, VaultPress will be able to make the backup instantly as soon as one would publish the changes on the blog or website.</p>
<p><b>3. Safeguards against Zero-Day Attacks</b> &#8211; This is one feature that I would be most interested in as this is one feature that no one else is offering. VaultPress will be able to safeguard your blog against the <a href="http://en.wikipedia.org/wiki/Zero-Day_Attack">Zero-Day Attacks</a> focused towards WordPress. It will also monitor your site to alert you against any suspicious or hacking activity.</p>
<p>Well, keeping these features in mind. We can install few plugins that can help us achieve similar level of protection and that too free of cost. We just need to ensure that we configure the plugins in the right manner. Here&#8217;s the guide &#8230;</p>
<h3>Get VaultPress Security Features Before Hand!</h3>
<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/04/wordpress-backup.jpg" width="480" height="242" alt="wordpress-backup.jpg" /></p>
<p><b>1. Automatic WordPress Backup</b> &#8211; <a href="http://www.webdesigncompany.net/automatic-wordpress-backup/">This little plugin</a> saves all the important files including themes, plugins and database on <a href="http://aws.amazon.com/s3/">Amazon S3</a>. The plugin allows you to schedule the backup of the database or just files or if you want you can ask for the complete backup as well. The plugin will send you the confirmation messages over the email, so you will constantly be aware of the happenings. Amazon S3 can be used as a backup service for your blog&#8217;s important files and believe me in most of the cases this will not cost you more than $5/month. Only in case of large publishers this cost can be more than $15/month i.e. the indicative price of VaultPress. By the way, <a href="http://davidcancel.com/using-amazon-s3-as-a-cdn/">Amazon S3 can help you in improving the site load time as well</a>, don&#8217;t forget to check our guide on <a href="http://blogdesignstudio.com/wordpress-customization/use-content-delivery-network-to-load-blog-faster/">how to optimize the WordPress blogs</a>.</p>
<p><b>2. WordPress Firewall</b> &#8211; This <a href="http://wordpress.org/extend/plugins/wordpress-firewall/">nifty plugin monitors</a> changes in the files, attacks based on various Zero-day patterns. Of course, this is not the ultimate solution however, our experience has been pretty neat with this plugin. It did alert me whenever I tried to make any change in the theme files or plugin files. It didn&#8217;t allow the change until and unless I approved the change. Make sure that if you are planning to install this, then you may get lot of notifications. So keep the settings appropriate or use <a href="http://www.lifehack.org/articles/technology/20-ways-to-use-gmail-filters.html">GMail filters for ease</a>!</p>
<p><b>3. OSSEC<img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/04/ossec-security.jpg" width="279" height="71" alt="ossec-security.jpg" style="float:right; margin-bottom:5px; margin-left:5px;" /></b> &#8211; <a href="http://www.ossec.net/">OSSEC</a> is an Open Source Host-based Intrusion Detection System. It performs log analysis, file integrity checking, policy monitoring, rootkit detection, real-time alerting and active response. Of course, this is something which will not be as easy as installing WordPress plugins, however investing a little time on this can ensure that you&#8217;ll have real peace of mind in future!! <a href="http://www.ossec.net/main/documentation/">There is enough documentation</a> available for avoiding initial hiccups!</p>
<p>Of course, the first two plugins won&#8217;t ensure that you are getting instant and real time backups. However, a regular and weekly backup will ensure that you&#8217;ll be able to bring your blog back from a situation where nothing will look nice in the world. I hope you understand the point that i&#8217;m trying to make here! If you install OSSEC then I&#8217;m sure one could easily compare this setup with something that VaultPress will offer in future!</p>
<p><b>Isn&#8217;t it neat that you can enjoy the VaultPress like features even before you can get a hand on it or if VaultPress looks out of budget</b>!</p>
<p>The success of VaultPress will depend on the following factors; <b>1)</b> what will be the cost involved for end users and <b>2)</b> how effective its monitoring system will be. I&#8217;m sure the takers of this service will be much more than any other similar service as it directly comes out from the makers of WordPress. However, personally I&#8217;ll be willing to test other services if they offer similar features at a competitive price. <b>What are your initial thoughts on VaultPress</b>.</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2010. |
<a href="http://blogdesignstudio.com/wordpress-plugins/how-to-have-vaultpress-like-protection-for-your-wordpress-blog/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/how-to-have-vaultpress-like-protection-for-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>11 Must install plugins for multi-authored WordPress blogs</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/11-must-install-plugins-for-multi-authored-wordpress-blogs/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/11-must-install-plugins-for-multi-authored-wordpress-blogs/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 07:59:39 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Blog Platform]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/wordpress-plugins/11-must-install-plugins-for-multi-authored-wordpress-blogs/</guid>
		<description><![CDATA[[Image Credit - Hongkiat ] Some of the most successful blogs that we see on Technorati Top 100 blogs are multi-authored blogs and most of them are powered by WordPress. Most of you can imagine that if running a successful single author blog can be a daunting task then how difficult it will be to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/03/multi-author-blogging.jpg" width="480" height="302" alt="multi-author-blogging.jpg" /></p>
<p>[Image Credit - <i><a href="http://www.hongkiat.com/blog/">Hongkiat</a> <span style="font-style: normal;">]</span></i></p>
<p>Some of the most successful blogs that we see on <a href="http://technorati.com/blogs/top100">Technorati Top 100 blogs</a> are multi-authored blogs and most of them are powered by WordPress. Most of you can imagine that if running a successful single author blog can be a daunting task then how difficult it will be to manage a blog that has multiple authors. Be it advertising, blog metrics or logging activity there are various factors that a webmaster has to look into and with help of these plugins, it&#8217;ll only become easier -</p>
<h3>Must Install Plugins for Multi-Author Blogs</h3>
<p><b>1. <a href="http://wordpress.org/extend/plugins/author-advertising-plugin/">Author Advertising Plugin</a></b> &#8211; This plugin allows blog admins to create a revenue sharing program utilising one of the many advertising programs out there i.e Yahoo, Google Adsense, Amazon, Allposters etc. It can also be used as a banner manager, author photo/website widgets etc.</p>
<p><b>2. <a href="http://wordpress.org/extend/plugins/members/">Members</a></b> &#8211; Members is a plugin that extends your control over your blog. It&#8217;s a user, role, and content management plugin that was created to make WordPress a more powerful CMS. The plugin is created with a components-based system — you only have to use the features you want. The foundation of the plugin is its extensive role and capability management system. This is the backbone of all the current features and planned future features.</p>
<p>
<img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/03/new-roles.jpg" width="480" height="226" alt="new-roles.jpg" /></p>
<p><b>3. <a href="http://wordpress.org/extend/plugins/blog-metrics/">Blog Metrics</a></b> &#8211; This plugin displays number of posts per month, average number of words per post and various other metrics in the dashboard. The reports are generated of overall blog statistics and is extremely useful in multi-author blogs as the reports are generated for individual authors as well.</p>
<p><b>4. <a href="http://wordpress.org/extend/plugins/co-authors-plus/">Co-Authors Plus</a></b> -Allows multiple authors to be assigned to a Post or Page via the search-as-you-type inputs. Co-authored posts appear on a co-author&#8217;s posts page and feed. New template tags allow listing of co-authors. Editors and Administrators may assign co-authors to a post. Additionally, co-authors may edit the posts they are associated with, and co-authors who are contributors may only edit posts if they have not been published (as is usual).</p>
<p><b>5. <a href="http://colorlightstudio.com/2008/03/14/wordpress-plugin-author-exposed/">Author Exposed</a></b> &#8211; Author Exposed is a simple WordPress plugin that allows your visitors easy and elegant way to see more details about the post author. This plugin pulls the author&#8217;s details from the profile and is linked to a hidden layer (div). By clicking on the author link the layer pop’s up with author info gathered from the profile page, plus gravatar photo, if author email is assigned with one.</p>
<p>
<img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/03/author-exposed.jpg" width="480" height="264" alt="author-exposed.jpg" /></p>
<p><b>6. <a href="http://www.zirona.com/blog/software/quick-notes-on-the-wp-dashboard/">Quick Notes On WP Dashboard</a></b> &#8211; If you blog with multiple persons, you can leave a message for the others. In the plugin file, you can determine, what capabilities a user must have to read the notes, and what capabilities he must have to write/modify them. By default, Authors and higher can write, and every registered user can read. Great Add-on for true collaboration.</p>
<p><b>7. <a href="http://buddypress.org/">BuddyPress</a></b> &#8211; BuddyPress makes the whole WordPress as a social networking site. It literally adds Facebook like features in a WordPress install. It&#8217;s a great plugin for a blog with multiple authors.</p>
<p><b>8. <a href="http://www.ossec.net/main/wpsyslog2">WordPress to Syslog</a><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/03/Welcome-to-the-Home-of-OSSEC.jpg" width="279" height="71" alt="Welcome to the Home of OSSEC.jpg" style="float:right; margin-right:5px; margin-bottom:5px;" /></b> &#8211; WPsyslog2 is a global log plugin for WordPress. It keeps track of all system events and log them to syslog. It tracks events such as new posts, new profiles, new users, failed logins, logins, logouts, etc. It also tracks the latest vulnerabilities and alerts if any of them are triggered, becoming very useful when integrated with a log analysis tool, like <a href="http://www.ossec.net/">OSSEC HIDS</a>.</p>
<p><b>9. <a href="http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html">Future Calendar</a></b> &#8211; It adds a simple month-by-month calendar that shows all the months you have future posts for (and the current month no matter what), it highlights the days you have posts for, and as an added bonus if you click a day the Post Timestamp boxes change to that day, month and year (although it doesn’t check the edit timestamp box to avoid accidental changes).</p>
<p><b>10. <a href="http://wordpress.org/extend/plugins/user-photo/">User Photo</a></b> &#8211; Allows a user to associate a profile photo with their account through their &#8220;Your Profile&#8221; page. Admins may add a user profile photo by accessing the &#8220;Edit User&#8221; page. Uploaded images are resized to fit the dimensions specified on the options page; a thumbnail image correspondingly is also generated. User photos may be displayed within a post or a comment to help identify the author.</p>
<p><b>11. <a href="http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/">Post by Author</a></b> &#8211; This plugin will show the last X posts by the current author either at the bottom of every post, or where you manually specify in each post. Using the built-in options page, you can choose the number of posts to show, set the header text, choose to show the post dates, select the format of the date, and choose whether or not to include the current post in the list.</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2010. |
<a href="http://blogdesignstudio.com/wordpress-plugins/11-must-install-plugins-for-multi-authored-wordpress-blogs/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/11-must-install-plugins-for-multi-authored-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Best plugins to fight comment spam for WordPress!</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/best-plugins-to-fight-comment-spam-for-wordpress/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/best-plugins-to-fight-comment-spam-for-wordpress/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 18:03:57 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/wordpress-plugins/best-plugins-to-fight-comment-spam-for-wordpress/</guid>
		<description><![CDATA[Spam In Blogs I am sure, I don&#8217;t need to explain anything about Spam over here. Blog spam is nothing new and there have been already many articles written about it. However, I still get questions like &#8220;What is the best strategy to avoid spam comments?&#8221; Just to kick start things, I would like to [...]]]></description>
			<content:encoded><![CDATA[<h3>Spam In Blogs</h3>
<p>I am sure, I don&#8217;t need to explain anything about Spam over here. Blog spam is nothing new and there have been already many articles written about it. However, I still get questions like &#8220;What is the best strategy to avoid spam comments?&#8221; Just to kick start things, I would like to mention the definition that has been given in everybody&#8217;s favorite website i.e. WikiPedia -</p>
<blockquote><p>Spam in blogs (also called simply blog spam or comment spam) is a form of spamdexing. It is done by automatically posting random comments or promoting commercial services to blogs, wikis, guestbooks, or other publicly accessible online discussion boards. Any web application that accepts and displays hyperlinks submitted by visitors may be a target.</p></blockquote>
<h3>How to fight comment spam</h3>
<p>There are various plugins although in my four years of experience as professional blogger, I&#8217;ve come across only handful of plugins that have done wonderful job for me. They have been shared by lots of experienced bloggers over and over again and here I am, who would like to share it with you one more time!</p>
<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/01/akismet.jpg" alt="akismet.jpg" width="450" height="125" /></p>
<p><strong>1. <a href="http://wordpress.org/extend/plugins/akismet/">Akismet</a></strong> &#8211; This wonderful service from Automattic has been consistently helping thousands of bloggers in fighting blog spam. Not only it is available for WordPress, it has been <a href="http://akismet.com/development/">extended for various other platforms like Movable Type, Drupal etc</a>. There is no reason, why I would not suggest this plugin to any person who is using WordPress.</p>
<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/01/WP-SpamFree.jpg" alt="WP-SpamFree.jpg" width="476" height="151" /></p>
<p><strong>2. <a href="http://wordpress.org/extend/plugins/wp-spamfree/">WP-Spam Free</a></strong> &#8211; <a href="http://www.hybrid6.com/webgeek/plugins/wp-spamfree">Scott Allen</a> has rightly described it as an <strong>Extremely Powerful Anti-Spam Plugin</strong>! Its so powerful that it literally makes your blog secure from all the comment spam. Although, this plugin is infamous for using extra resources from server. If you have a high traffic blog and get lots of spam comments, then there is no reason why you shouldn&#8217;t be using this plugin. Personally, its my favorite among all the plugins that I&#8217;m listing over here.</p>
<p><strong>3. <a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/">SI CAPTCHA Anti-Spam</a></strong> &#8211; Another wonderful plugin for fighting spam on blogs. It not only helps to fight blog comment spam. It also can be extended to fight automated registrations and automated contact form submissions. This plugin uses a familiar trick of fighting comment spam i.e. CAPTCHA verification. It has lots of configuration options and if you don&#8217;t want to rely on automatic anti-spam plugins like Akismet &amp; WP-Spam Free then this plugin will easily serve the purpose for you. [<a href="http://www.642weather.com/weather/scripts-wordpress-captcha.php">Plugin Homepage</a>]</p>
<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/01/stop-bad-behavior.jpg" alt="stop-bad-behavior.jpg" width="245" height="165" /><br />
<strong>[Photo Credit - <a href="http://scoopdog.wordpress.com/2009/06/18/agencies-behaving-badly/">ScoopDog</a>]</strong><br />
<strong>4. <a href="http://wordpress.org/extend/plugins/bad-behavior/">Bad Behavior</a></strong> &#8211; This wonderful script has been developed to fight against spam bots. It&#8217;s not specific to WordPress and is available for other content management systems. Its pretty light on servers and has been made available on plethora of CMSes. It has done a wonderful job in keeping this blog spam free from long time and will continue to do so!</p>
<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2010/01/recaptcha.jpg" alt="recaptcha.jpg" width="476" height="147" /><br />
<strong>5. <a href="http://recaptcha.net/">reCAPTCHA</a></strong> &#8211; reCAPTCHA is a service that is used by thousands of popular websites to fight spam bots. The service can be easily integrated in a WordPress blog with the help of <a href="http://wordpress.org/extend/plugins/wp-recaptcha/">this plugin</a>. I like this service/plugin because it definitely has proven its effectiveness to fight the spam bots and also because it helps in digitizing various books. Here&#8217;s what they have to say about digitizing the books part -</p>
<blockquote><p>While the world is in the process of digitizing books, sometimes certain words cannot be read. reCAPTCHA uses a combination of these words, further distorts them, and then constructs a CAPTCHA image. After a ceratin percentage of users solve the &#8216;uknown&#8217; word the same way it is assumed that it is the correct spelling of the word. This helps digitize books, giving users a reason to solve reCAPTCHA forms.</p></blockquote>
<p>I hope that you&#8217;ll find these plugins useful enough (just the way I have) to keep you blog spam free!</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2010. |
<a href="http://blogdesignstudio.com/wordpress-plugins/best-plugins-to-fight-comment-spam-for-wordpress/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/best-plugins-to-fight-comment-spam-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>WordPress App Store is live &#8211; Not the official one though!</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/wordpress-app-store-is-live-not-the-official-one-though/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/wordpress-app-store-is-live-not-the-official-one-though/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 10:50:22 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Premium]]></category>
		<category><![CDATA[Store]]></category>
		<category><![CDATA[wp.mu]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/wordpress-plugins/wordpress-app-store-is-live-not-the-official-one-though/</guid>
		<description><![CDATA[WordPress is the best blogging platform and there is no doubt about that, other than that it is also becoming the first choice CMS (content management system) for corporates too. One of the major reason for the same is that WordPress is pretty simple and even though it has got less inbuilt features, there are [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/wp-content/uploads/2009/11/wp-plugins.jpg" width="366" height="92" alt="wp-plugins.jpg" /></p>
<p><b>WordPress is the best blogging platform</b> and there is no doubt about that, other than that it is also <b>becoming the first choice CMS (content management system)</b> for corporates too. One of the major reason for the same is that WordPress is pretty simple and even though it has got less inbuilt features, there are thousands of plugins that are available for free and extend the it to match the existing CMS. It&#8217;s simplicity attracts thousands of developers and is one of the fastest growing CMS at the moment.</p>
<p><span id="more-1019"></span>Because of this simplicity offered by WordPress, there are many developers who create high quality plugins, however many plugin authors develop the plugin whose code quality is not up to the mark and thus causes issue. We at <b>Blog Design Studio</b> have faced many issues while integrating various plugins in our themes and we always felt the need of a repository that has listed only high quality plugins. I&#8217;m sure that the team and <b><a href="http://www.incsub.com/">Incsub</a></b> must have faced the same problem and thus in order to address this issue, they&#8217;ve launched an app store called <a href="http://www.wpplugins.com/">WP Plugins</a>.<br />
<b><br /></b><b>WordPress plugin developers</b> can upload their plugins on this <b>WordPress powered site</b> and allows them to sell them to users. Plugin authors get the option of selling the plugins for one time fee or as subscription based offer that gives users the access for support and future upgrades.</p>
<h3>My opinion about WP Plugins</h3>
<p>There has been a wonderful conversation going on at the <a href="http://www.techcrunch.com/2009/11/12/wp-plugins/">TechCrunch&#8217;s post about this App Store</a>, where there are mixed reactions for this particular service. There are some hard core fans (open-source fans) who didn&#8217;t like the idea of this App Store, however if I were to give my opinion, I would say this idea is fantastic as this particular option allows plugin developers to develop high quality plugins without worrying about marketing, selling options. Other than that, users will also be able to access high quality plugins at one single place. It definitely is a win-win situation for everyone, however, the idea will only flourish or will be helpful for users only if there will be enough plugin developers who&#8217;d sign up for this initiative and not launch their own app stores in future.</p>
<p>Although, I do agree that they should mention that they aren&#8217;t affiliated with WordPress! There are some people who just don&#8217;t get it by looking at the site and seeing no logo of Automattic.</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2009. |
<a href="http://blogdesignstudio.com/wordpress-plugins/wordpress-app-store-is-live-not-the-official-one-though/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/wordpress-app-store-is-live-not-the-official-one-though/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finally my posts will be error free!</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/finally-my-posts-will-be-error-free/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/finally-my-posts-will-be-error-free/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 15:59:05 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/?p=676</guid>
		<description><![CDATA[I know when it comes to English, I&#8217;m not the best person to bank upon &#8211; heck you can&#8217;t bank on me when it comes to even Hindi. I know that I constantly make mistakes while writing English and the worst part has been that I don&#8217;t try hard enough to improve it. Hopefully, now [...]]]></description>
			<content:encoded><![CDATA[<p>I know when it comes to English, I&#8217;m not the best person to bank upon &#8211; heck you can&#8217;t bank on me when it comes to even Hindi. I know that I constantly make mistakes while writing English and the worst part has been that I don&#8217;t try hard enough to improve it. Hopefully, now I won&#8217;t have to do that either &#8211; <strong>as Automattic Team has recently bought this cool company that does proof reading of your posts and that too for free</strong>!</p>
<p><span id="more-676"></span></p>
<p>The company&#8217;s name is <strong><a href="http://afterthedeadline.com/" target="_blank">After The DeadLine</a></strong> and as I said earlier that this service/plugin actually proof reads your blog posts and tells you if you&#8217;ve made spelling or grammatical mistakes or not. After The DeadLine has been already integrated in WordPress.com &amp; is available<a href="http://www.afterthedeadline.com/download.slp?platform=Wordpress" target="_blank"> as a free plugin for WordPress.org users</a>.</p>
<p>The bad thing about it is that &#8211; I deliberately made few grammatical mistakes while writing this blog posts and it couldn&#8217;t pick up even a single one, although the good thing is that this plugin is intelligent enough and <a href="http://en.blog.wordpress.com/2009/09/08/atd-wpcom/" target="_blank">as announced by Matt</a> &#8211; it will learn as more and more people will start using it.</p>
<p>I would suggest that bloggers should install this plugin and use it before publishing their posts as not only this will help bloggers like me (who don&#8217;t have English as part of their culture). <strong>Of course, proof reading of posts is possible if people use expensive software like MS Word or Apple Pages, however not everyone can afford those software</strong>, so I&#8217;m sure that this free plugin will surely help them in improving their writing style and will ensure that there will be far less errors in their blog posts.</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2009. |
<a href="http://blogdesignstudio.com/wordpress-plugins/finally-my-posts-will-be-error-free/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/finally-my-posts-will-be-error-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.2 released; bbPress as plugin for WordPress?</title>
		<link>http://blogdesignstudio.com/wordpress-plugins/wordpress-2-8-2-released-bbpress-as-plugin-for-wordpress/</link>
		<comments>http://blogdesignstudio.com/wordpress-plugins/wordpress-2-8-2-released-bbpress-as-plugin-for-wordpress/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 13:11:00 +0000</pubDate>
		<dc:creator>mayank</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[bbPress]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogdesignstudio.com/wordpress-plugins/wordpress-2-8-2-released-bbpress-as-plugin-for-wordpress/</guid>
		<description><![CDATA[I&#8217;ve upgraded our blog to WordPress 2.8.2 without any glitches and issues. I used the core update feature of WordPress, after I noticed that due to one XSS vulnerability one could get redirected from the admin dashboard to URL mentioned in the comment forms. I would strongly suggest everyone to update their WordPress installation as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve upgraded our blog to <b><a href="http://wordpress.org/development/2009/07/wordpress-2-8-2/">WordPress 2.8.2</a></b> without any glitches and issues. I used the core update feature of WordPress, after I noticed that due to one XSS vulnerability one could get redirected from the admin dashboard to URL mentioned in the comment forms. I would strongly suggest everyone to update their WordPress installation as it hardly takes a minute to upgrade.</p>
<p><span id="more-654"></span>
<p>Apart from that, <a href="http://blogdesignstudio.com/blogging-tips/jeff-chandler-wordpress-guru-shares-tips-with-us/">Jeff Chandler</a> posted the idea of having bbPress as WordPress plugin. I would definitely love to see a bbPress plugin for WordPress or a <b>bbPress lite plugin with WordPress</b>. The plugin should allow bloggers to create small forums along with the blog and should allow those forums posts to be displayed in the blog as blog posts based on the blogger&#8217;s discretion. There are few other bloggers who appreciated the idea; however, <a href="http://www.chipbennett.net/">Chip Bennett</a> and few others are not happy with the idea as this kind of plugin will make database heavier.</p>
<p>What are your thoughts about having bbPress Lite as a plugin for WordPress? Do you think it&#8217;ll make life easier for those who are not technically sound &#8211; I&#8217;m sure we can have many ideas floating around this topic.</p>
<p>Note &#8211; There is no plugin in the making and this was just an idea that came in Jeff&#8217;s mind and I just think that it&#8217;s a wonderful idea. May be <a href="http://www.movabletype.org/">Movable Type community</a> would be interested in such kind of suggestion.</p>
<hr />
<strong>Download Free Ebook - <a href="http://blogdesignstudio.blogdesignstudio.netdna-cdn.com/make-money-online.pdf">Tips and Tricks to Make Money Online</a></strong>
<p><small>© mayank for <a href="http://blogdesignstudio.com">Blog Design Studio</a>, 2009. |
<a href="http://blogdesignstudio.com/wordpress-plugins/wordpress-2-8-2-released-bbpress-as-plugin-for-wordpress/">Permalink</a>
</small></p>
ef0928f877b54b28a148e59b6100f865]]></content:encoded>
			<wfw:commentRss>http://blogdesignstudio.com/wordpress-plugins/wordpress-2-8-2-released-bbpress-as-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

