<?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>Programming Ideas, Logics, Tips and Tricks &#187; plugin</title>
	<atom:link href="http://www.sajithmr.me/tag/plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 15:44:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Gtranslate &#8211; Firefox Plugin</title>
		<link>http://www.sajithmr.me/gtranslate-firefox-plugin</link>
		<comments>http://www.sajithmr.me/gtranslate-firefox-plugin#comments</comments>
		<pubDate>Thu, 30 Sep 2010 11:04:09 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[translate]]></category>
		<category><![CDATA[translator]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/gtranslate-firefox-plugin/</guid>
		<description><![CDATA[Those who use google translator very frequently and those who like firefox, can use this plugin to translate any language string to any language just by a right click. By default it is auto-detect to english which is most of the people want. This plugin helped me to develop my recent project in Portuguese language. [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both"><a href="http://www.sajithmr.me/wp-content/uploads/2010/09/mozilla-firefox.png" class="image-link"><img class="linked-to-original" src="http://www.sajithmr.me/wp-content/uploads/2010/09/mozilla-firefox-thumb.png" height="348" align="left" width="311" style=" display: inline; float: left; margin: 0 10px 10px 0;" /></a><br />Those who use google translator very frequently and those who like firefox, can use this <a href="https://addons.mozilla.org/en-US/firefox/addon/918/" target="_blank">plugin</a> to translate any language string to any language just by a right click. </p>
<p style="clear: both">By default it is auto-detect to english which is most of the people want. This plugin helped me to develop my recent project in Portuguese language. </p>
<p style="clear: both">Make it simple</p>
<p>&#8211; Sajith</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/gtranslate-firefox-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBar &#8211; Jquery Bar</title>
		<link>http://www.sajithmr.me/jbar-jquery-bar</link>
		<comments>http://www.sajithmr.me/jbar-jquery-bar#comments</comments>
		<pubDate>Sun, 27 Dec 2009 11:47:33 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[jbar]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=545</guid>
		<description><![CDATA[Flash messages or notification messages are very essential part of every update/edit or delete operations. We either use ajax update messages like &#8220;You account has been updated&#8221; or &#8220;Your photo has been successfully deleted&#8221; Here, a new plugin of jQuery can be used to display the flash messages like twitter. (see twitter&#8217;s settings page) I [...]]]></description>
			<content:encoded><![CDATA[<p>Flash messages or notification messages are very essential part of every update/edit or delete operations. We either use ajax update messages like &#8220;You account has been updated&#8221; or &#8220;Your photo has been successfully deleted&#8221;</p>
<p>Here, a new plugin of jQuery can be used to display the flash messages like twitter. (see twitter&#8217;s settings page)</p>
<p>I added some more functions to this plugin to display the notification in different context, say information, warning or error message. The function show_flash(&#8216;message here&#8217;); can be used for this purpose. Second parameter is the type of message. For example, show_flash(&#8216;Error in deleting file&#8217;, &#8216;error&#8217;) OR  show_flash(&#8216;Email address entered is invalid&#8217;, &#8216;warning&#8217;)</p>
<p>If you use sessions to save flash message , for example in codeigniter $this-&gt;session-&gt;set_flashdata(&#8216;message&#8217;,'hello&#8217;); you can use this plugin to display them by adding a php code in the footer  (or header) of every page</p>
<p>&lt;?php if($this-&gt;session-&gt;flashdata(&#8216;message&#8217;) != &#8221; )  : ?&gt;</p>
<p>&lt;script&gt;show_flash(&#8216;&lt;?= $this-&gt;session-&gt;flashdata(&#8216;message&#8217;) ?&gt;&#8217;)&lt;/script&gt;</p>
<p>&lt;?php endif; ?&gt;</p>
<p>Here you can download the full source code:  <a href="http://www.sajithmr.me/downloads/jbar.zip">http://www.sajithmr.me/downloads/jbar.zip</a></p>
<p><img class="alignnone size-large wp-image-566" title="Screen shot 2009-12-27 at 11.30.12" src="http://www.sajithmr.me/wp-content/uploads/2009/12/Screen-shot-2009-12-27-at-11.30.12-1024x182.png" alt="Screen shot 2009-12-27 at 11.30.12" width="717" height="127" /></p>
<p>Thanks</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/jbar-jquery-bar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fancy box</title>
		<link>http://www.sajithmr.me/fancy-box</link>
		<comments>http://www.sajithmr.me/fancy-box#comments</comments>
		<pubDate>Sun, 08 Nov 2009 16:58:16 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[fancybox]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=471</guid>
		<description><![CDATA[Finally I found a good light-box which really matches the name &#8220;Light box&#8221; in FancyBox.  It is a jQuery based light window. It has very less features while compare with any other light box, but simple to use. Compatible with all browsers. Go here to find it : http://fancybox.net/ You need to add the below [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I found a good light-box which really matches the name &#8220;Light box&#8221; in FancyBox.  It is a jQuery based light window. It has very less features while compare with any other light box, but simple to use. Compatible with all browsers.</p>
<p><img class="alignnone size-medium wp-image-472" title="bg_logo" src="http://www.sajithmr.me/wp-content/uploads/2009/11/bg_logo-300x81.gif" alt="bg_logo" width="300" height="81" /></p>
<p>Go here to find it : <a href="http://fancybox.net/" target="_blank">http://fancybox.net/</a></p>
<p>You need to add the below javascript in addition to the jquery js file.</p>
<p><code>&lt;script type="text/javascript" src="path-to-file/jquery.fancybox.js"&gt;&lt;/script&gt; </code></p>
<p>To create a link to open in fancybox, call the function fancybox. For example, if you have a link pointing an image &lt;a href=&#8221;myimage.gif&#8221; id=&#8221;imglink&#8221; /&gt;</p>
<p>Call</p>
<p>&lt;script&gt;</p>
<p>$(&#8220;#imglink&#8221;).fancybox();</p>
<p>&lt;/script&gt;</p>
<p>The window automatically resize with image. If you put <strong>title</strong> attribute, it shows the title below with the light window.</p>
<p>Instead of image, you can point a file. If you need to open that file in iframe, use <span style="color: #008000;"><strong>class</strong></span>=<span style="color: #3366ff;"><em><strong>&#8220;iframe&#8221;</strong></em></span></p>
<p>Visit<a href="http://fancybox.net/howto" target="_blank"> http://fancybox.net/howto</a> for more usability.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/fancy-box/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firephp</title>
		<link>http://www.sajithmr.me/firephp</link>
		<comments>http://www.sajithmr.me/firephp#comments</comments>
		<pubDate>Mon, 17 Aug 2009 22:45:46 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firephp]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=452</guid>
		<description><![CDATA[We like firebug , We like PHP , if so, We also begin to  like FirePHP !!! Using firephp , you can debug your php code. Firephp is a firefox plugin which works on firebug console. In our php life, we know we can use echo function to print or debug the value of a [...]]]></description>
			<content:encoded><![CDATA[<p>We like firebug , We like PHP , if so, We also begin to  like FirePHP !!!</p>
<p>Using firephp , you can debug your php code. Firephp is a firefox plugin which works on firebug console.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/08/firebug-extlist-firephp.png"><img class="alignnone size-full wp-image-453" title="firebug-extlist-firephp" src="http://www.sajithmr.com/wp-content/uploads/2009/08/firebug-extlist-firephp.png" alt="" width="422" height="457" /></a></p>
<p>In our php life, we know we can use echo function to print or debug the value of a variable and we usually do that. But if there is any header function such as image manipulation, redirection etc, if you use echo or print either it leads into unwanted results or we get the common error, cannot modify header information headers already sent  !!!</p>
<p>The one solution for this is, writing the variable value into a log file and check the log file after execution. But the advantage of fire php is, you can log messages, or value of a variable and can see through firebug console.</p>
<p>For example:</p>
<p>&lt;?php $fire_php-&gt;log(&#8216;Enter into function&#8217;); ?&gt;</p>
<p>&lt;?php $fire_php-&gt;log($result); ?&gt;</p>
<p>You can also categorize your error as warning or error . eg:</p>
<p>&lt;?php $fire_php-&gt;warn(&#8216;Variable value is not set&#8217;)?&gt; or</p>
<p>&lt;?php $fire_php-&gt;error(&#8216;No parameter passed&#8217;) ?&gt;</p>
<p>For more go to: <a style="text-decoration: none;" href="http://www.firephp.org/">http://www.firephp.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/firephp/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin &#8211; Warning Before Closing</title>
		<link>http://www.sajithmr.me/wordpress-plugin-warning-before-closing</link>
		<comments>http://www.sajithmr.me/wordpress-plugin-warning-before-closing#comments</comments>
		<pubDate>Wed, 29 Oct 2008 15:08:09 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[option]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[warning]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=332</guid>
		<description><![CDATA[Today i published my new wordpress plugin, which control user navigation. The plugin name is &#8220;Close Warning&#8221;. It prompts the user a confirmation message before they close the browser window or tab. After that a lightweight window popup jumps up with your preset announcement or message  (in richtext format) The Advantages &#62;&#62; You can avoid [...]]]></description>
			<content:encoded><![CDATA[<p>Today i published my new wordpress plugin, which control user navigation. The plugin name is &#8220;Close Warning&#8221;.</p>
<p>It prompts the user a confirmation message before they close the browser window or tab. After that a lightweight window popup jumps up with your preset announcement or message  (in richtext format)</p>
<p>The Advantages &gt;&gt;</p>
<ol>
<li>You can avoid the accidental close of browser window</li>
<li>You can tell or mention any message or offers before they navigate away from your website</li>
<li>It works not only on closing, but in any type of external navigation (Internal navigation is screened out from this warning)</li>
<li>Since it is built on lightweight window support, your message or warning appears very eye-catchy</li>
</ol>
<p>You can download the plugin from : <a title="Warning Before Closing" href="http://www.sajithmr.com/downloads/onclose-warning.zip" target="_self">http://www.sajithmr.com/downloads/onclose-warning.zip</a></p>
<div id="attachment_333" class="wp-caption alignnone" style="width: 510px"><a href="http://www.sajithmr.com/wp-content/uploads/2008/10/areusyre.jpg"><img class="size-full wp-image-333" title="Screen Shot - Warning before close" src="http://www.sajithmr.com/wp-content/uploads/2008/10/areusyre.jpg" alt="Screen Shot - Warning before close" width="500" height="314" /></a><p class="wp-caption-text">Screen Shot - Warning before close</p></div>
<p>From the setting page, you can set your rich text message or warning / offer . See the screen shot:</p>
<div id="attachment_334" class="wp-caption alignnone" style="width: 430px"><a href="http://www.sajithmr.com/wp-content/uploads/2008/10/optionpage.jpg"><img class="size-full wp-image-334" title="Warning Before Closing" src="http://www.sajithmr.com/wp-content/uploads/2008/10/optionpage.jpg" alt="Warning Before Closing" width="420" height="304" /></a><p class="wp-caption-text">Warning Before Closing</p></div>
<p>Please feel free to mail me regarding any clarification and upgrade to admin@sajithmr.com</p>
<p>Regards</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/wordpress-plugin-warning-before-closing/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Bypass your browser download to any accelerator (Flashgot)</title>
		<link>http://www.sajithmr.me/bypass-your-browser-download-to-any-accelerator-flashgot</link>
		<comments>http://www.sajithmr.me/bypass-your-browser-download-to-any-accelerator-flashgot#comments</comments>
		<pubDate>Mon, 27 Oct 2008 05:33:04 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[accelerator]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[high speed]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/bypass-your-browser-download-to-any-accelerator-flashgot/</guid>
		<description><![CDATA[When ever we click on a downloadable file , our browser pop up a download window popup and ask us where to save. That download option does not have any other options like , limit the speed, scheduled download, download by split parts etc like what download accelerator like flashget does. In some cases we [...]]]></description>
			<content:encoded><![CDATA[<p>When ever we click on a downloadable file , our browser pop up a download window popup and ask us where to save. That download option does not have any other options like , limit the speed, scheduled download, download by split parts etc like what download accelerator like flashget does. In some cases we drag the link  (or click on download by flashget from context menu) to flashget for download using accelerator . But this is not possible in all the cases. Most of the downloads are not via direct link to the file, instead it points a dynamic web page (php or something), and it pops up the download option. Or sometimes there will be captcha to fill for download. In this case dragging to a accelerator is not possible.</p>
<p>The plugin which helped to do this is Mozilla&#8217;s <a href="https://addons.mozilla.org/en-US/firefox/addon/220" target="_blank">FlashGot </a>.What this plugin does is , it adds one more option for bypass the download from mozilla browser to some other accelerator say flashget.</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/10/flashgot.JPG" alt="FlashGot mozilla plugin" /></p>
<p>Might be some of you waiting  for such a solution for a long time , rite ?</p>
<p>Regards</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/bypass-your-browser-download-to-any-accelerator-flashgot/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress post via email</title>
		<link>http://www.sajithmr.me/wordpress-post-via-email</link>
		<comments>http://www.sajithmr.me/wordpress-post-via-email#comments</comments>
		<pubDate>Mon, 18 Aug 2008 18:13:28 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[attachement]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[trigger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/wordpress-post-via-email/</guid>
		<description><![CDATA[If you know this feature already , skip this article. But i have to ask a single question at the end of this section . For wordpress version less than 2.3 , Go to Options  &#62;  writing, and  for greater than 2.3, Go to settings &#62; writing What you have to do is create an [...]]]></description>
			<content:encoded><![CDATA[<p>If you know this feature already , skip this article. But i have to ask a single question at the end of this section .</p>
<p>For wordpress version less than 2.3 , Go to <strong>Options</strong>  &gt;  <strong>writing</strong>, and  for greater than 2.3, Go to <strong>settings</strong> &gt; <strong>writing</strong></p>
<p>What you have to do is create an email account with pop3 support</p>
<p>You can see the heading &#8220;Post via e-mail&#8221; there.</p>
<p>Enter your email server (by replacing mail.example.com)</p>
<p>Enter your pop3 port. (110 by default)</p>
<p>Enter your email login and password.</p>
<p>Choose a category to for the email entry posts</p>
<p>Finally Press update option Button</p>
<p>What you have done above is only the settings. For grabbing or pulling the content from email, you need to call/trigger an url.</p>
<p>That url is: http://yourblogdomain/wordpressinstalldir/wp-mail.php<code></code></p>
<p>Either you can call it manually. Or you can set up a cron job for that url by call the url using wget or like functions</p>
<p>Another simple mechanism to call this email trigger is use a hidden iframe in your blog template. (anywhere)</p>
<p>&lt;iframe width=&#8221;0&#8243; height=&#8221;0&#8243;  style=&#8221;display:none&#8221;  src=&#8221;http://yourblogdomain/wordpressinstalldir/wp-mail.php<a href="http://yourblogdomain/wordpressinstalldir/wp-mail.php" class="external free" title="http://yourblogdomain/wordpressinstalldir/wp-mail.php"></a>&#8220;&gt;&lt;/iframe&gt;</p>
<p>The problem with this email posting is , it <strong>strips all the html tags</strong> before entering into wordpress database.</p>
<p>The is <strong>no way</strong> to find the<strong> attachments from an email</strong>.</p>
<p>So I decided to start a <strong>wordpress plugin</strong> which does the above missing properties. If there is any &#8216;working&#8217; plugin available, please let me know, so that  I can avoid the re-inventing of wheel .</p>
<p>Thanks</p>
<p>Sajith M.R</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/wordpress-post-via-email/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Pagerank Update</title>
		<link>http://www.sajithmr.me/pagerank-update</link>
		<comments>http://www.sajithmr.me/pagerank-update#comments</comments>
		<pubDate>Mon, 28 Jul 2008 17:44:31 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[webworld]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[pr]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/pagerank-update/</guid>
		<description><![CDATA[Google Pagerank is updated this week. www.sajithmr.com page rank is still 3. But most of the posts got 3 and 4. Those who are waiting to see the page rank update,  use this website: http://www.googleneedle.com If you use google toolbar in your browser , the result may be shown as cached. The Google Needle will [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/07/pagerankgrey.jpg" /></p>
<p>Google Pagerank is updated this week. www.sajithmr.com page rank is still 3. But most of the posts got 3 and 4. Those who are waiting to see the page rank update,  use this website:</p>
<p><a href="http://www.googleneedle.com" title="Google Page Rank Checker" target="_blank">http://www.googleneedle.com</a></p>
<p><a href="http://www.googleneedle.com" title="Google Page Rank Checker" target="_blank"><img src="http://googleneedle.com/images/logo.jpg" width="300" height="71" /></a></p>
<p>If you use google toolbar in your browser , the result may be shown as cached. The <a href="http://www.googleneedle.com" title="Google Page Rank Checker" target="_blank">Google Needle</a> will give you live/current page rank. Check your each post or website pages there. If you have better page rank for your wordpress blog, use my<a href="http://wordpress.org/extend/plugins/show-my-pagerank/" target="_blank"> page rank plugin</a> to show the rank to your readers with a very cute designed page rank bar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/pagerank-update/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Show WordPress Currently Reading Posts</title>
		<link>http://www.sajithmr.me/show-wordpress-currently-reading-posts</link>
		<comments>http://www.sajithmr.me/show-wordpress-currently-reading-posts#comments</comments>
		<pubDate>Sat, 12 Jul 2008 09:36:47 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[currently]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sexy]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[watching]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/show-wordpress-currently-reading-posts/</guid>
		<description><![CDATA[After the success of my previous wordpress plugins , Announcement, Show My Page Rank, Sexy Rating, Add to this , Stumble Reviews, I created one more interesting plugin, called Currently Reading Posts Plugin. Whenever a visitor visits your website, he can see what are the posts currently reading by other visitors. It is like youtube&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p> <font size="12">A</font>fter the success of my previous wordpress plugins , <a href="http://wordpress.org/extend/plugins/announcement/" title="Wordpress Announcement Plugin" target="_blank">Announcement</a>, <a href="http://wordpress.org/extend/plugins/show-my-pagerank/" title="Wordpress Page Rank Plugin" target="_blank">Show My Page Rank</a>, <a href="http://wordpress.org/extend/plugins/sexyrate/" title="Sexy Rating Plugin" target="_blank">Sexy Rating</a>, <a href="http://wordpress.org/extend/plugins/addtothis/" title="Social Bookmarking Plugin" target="_blank">Add to this</a> , <a href="http://wordpress.org/extend/plugins/stumble-reviews/" title="Stumble Review Plugin" target="_blank">Stumble Reviews</a>, I created one more interesting plugin, called Currently Reading Posts Plugin.</p>
<p>Whenever a visitor visits your website, he can see what are the posts currently reading by other visitors. It is like youtube&#8217;s currently watching videos.</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/07/cw.jpg" alt="Wordpress Currently Watching Plugin" /></p>
<p>You can see its current working at the top right corner of this website.</p>
<p>Download the plugin for here: <a href="http://www.sajithmr.com/downloads/CurrentlyWatching.zip" title="Currently Watching Plugin">http://www.sajithmr.com/downloads/CurrentlyWatching.zip</a></p>
<p>Go to Admin &gt; Plugins &gt; and activate the plugin.</p>
<p>Paste this code: &lt;?php wp_show_currently_watching() ?&gt; by editing your template / theme . (I placed the code in header.php file)</p>
<p>It is implemented with ajax support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/show-wordpress-currently-reading-posts/feed</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>WordPress Announcement &#8211; Plugin</title>
		<link>http://www.sajithmr.me/wordpress-announcement-plugin</link>
		<comments>http://www.sajithmr.me/wordpress-announcement-plugin#comments</comments>
		<pubDate>Tue, 24 Jun 2008 09:20:36 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/wordpress-announcement-plugin/</guid>
		<description><![CDATA[Do you wanna inform any important news or message to your readers ? Here is a simple plugin, WordPress Announcement Plugin. Download the plugin from : http://downloads.wordpress.org/plugin/announcement.zip Go to Admin &#62; Plugin &#62; and activate announcement plugin. After that, go to options and select Announcement. By default the plugin will be inactive. You have to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/06/announce1.jpg" alt="Wordpress Announcement Plugin" style="margin: 10px; float: left" /></p>
<p>Do you wanna inform any important news or message to your readers ? Here is a simple plugin, WordPress Announcement Plugin.</p>
<p>Download the plugin from : <a href="http://downloads.wordpress.org/plugin/announcement.zip" target="_blank">http://downloads.wordpress.org/plugin/announcement.zip</a><a href="http://www.sajithmr.com/downloads/announcement.zip"></a></p>
<p>Go to Admin &gt; Plugin &gt; and activate announcement plugin. After that, go to options and select Announcement. By default the plugin will be inactive. You have to set your announcement and activate the  announcement by checking &#8216;Active&#8217; checkbox.</p>
<blockquote><p> Never Forgot to Run the Announcement. By Default the Announcement will be inactive</p></blockquote>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/06/option.jpg" /></p>
<p>Enough !!! You visitors can now see your announcement. It will be displayed <strong>only one time</strong> for a particular  user .</p>
<p><strong><font color="#ff6600">(If you want to see the announcement again, for testing purpose, Clear browser cookies, or atleast cookies from your blog. Otherwise you have to wait another 24 hours to play the announcement again) </font></strong></p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/06/screenshot-1.png" /></p>
<p>The plugin is created with cute design and animation. It will never interrupt your blog reader.</p>
<p>Regards</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/wordpress-announcement-plugin/feed</wfw:commentRss>
		<slash:comments>78</slash:comments>
		</item>
	</channel>
</rss>

