<?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>TechCats &#187; Tips &amp; Tricks</title>
	<atom:link href="http://www.techcats.net/category/wordpress/tips-tricks/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techcats.net</link>
	<description>Technology &#124; Blogging &#124; Make Money Online &#124; Tips &#124; Tricks &#124; WordPress &#124;</description>
	<lastBuildDate>Fri, 07 May 2010 04:58:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Fetch First Image of Your Post as Thumbnail in WordPress</title>
		<link>http://www.techcats.net/how-to-fetch-first-image-of-your-post-as-thumbnail-in-wordpress.html</link>
		<comments>http://www.techcats.net/how-to-fetch-first-image-of-your-post-as-thumbnail-in-wordpress.html#comments</comments>
		<pubDate>Wed, 21 Apr 2010 05:30:46 +0000</pubDate>
		<dc:creator>Smashingeeks</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Fetch Thumbnails]]></category>
		<category><![CDATA[Thumbnails Generator]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=1856</guid>
		<description><![CDATA[The Latest WordPress Themes comes with feature of generating thumbnails with your desired width and height. But those wordpress themes which does not allows you to place thumbnails on Post Page and Category Archives, for these themes , there are many methods of generating thumbnails. The most used method is generating thumbnails via Custom Fields [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">The Latest WordPress Themes comes with feature of generating thumbnails with your desired width and height. But those wordpress themes which does not allows you to place thumbnails on Post Page and Category Archives, for these themes , there are many methods of generating thumbnails. The most used method is generating thumbnails via Custom Fields provided in WordPress. Other is creating function in order to generate thumbnails. This post is a tutorial which allows your theme to generate thumbnails as the First Image of your Post. Just follow the following steps.</p>
<p style="text-align: justify;"><a href="http://www.techcats.net/wp-content/uploads/2010/04/post-thumbnails.jpg"><img class="aligncenter size-full wp-image-1862" title="thumbnail generator for wordpress blogs" src="http://www.techcats.net/wp-content/uploads/2010/04/post-thumbnails.jpg" alt="thumbnail generator for wordpress blogs" width="548" height="365" /></a></p>
<ul style="text-align: justify;">
<li>Open the file named <strong>functions.php</strong> from your WordPress Themes Directory in your favorite text editor. If you does not have functions.php in your WordPress Theme, then create one and include that file in the Theme.</li>
</ul>
<ul style="text-align: justify;">
<li>Open the file and after it, just <strong>paste</strong> the following sort of code into the functions.php file and save it after pasting the code.</li>
</ul>
<blockquote>
<pre style="text-align: justify;">//Custom Thumbnail

require_once(ABSPATH .'/wp-admin/includes/image.php');
require_once(ABSPATH .'/wp-admin/includes/media.php');
define("TFE_ALIGN","right");
define("TFE_SIZE","160");
define("TFE_MAXSIZE","no");
define("TFE_SPACE","5");
define("TFE_LINK","yes");
define("TFE_CLASS","imgtfe");
define("TFE_CREATETH","no");
define("TFE_TITLE","no"); 

add_filter("get_the_excerpt", "putThumbnailForExcerpts");

function putThumbnailForExcerpts($excerpt){
 if(is_single()) return;
 global $wp_query, $wpdb;
 $id = $wp_query-&gt;post-&gt;ID;
 if(!TFE_SIZE)
 $tfesize=get_option("thumbnail_size_w");
 else
 $tfesize=TFE_SIZE;
 $files = get_children("post_parent=$id&amp;post_type=attachment&amp;post_mime_type=image");
 if($files){
 $keys = array_keys($files);
 $num=$keys[0];
 $thumb=wp_get_attachment_thumb_url($num);
 echo "&lt;img src=$thumb width=150 align=right&gt;";
 }*/
 $content = $wpdb-&gt;get_var('select post_content from '.$wpdb-&gt;prefix.'posts where id='.$id);
 $pos = stripos($content,"&lt;img");
 if($pos!==false){
 $content=substr($content,$pos,stripos($content,"&gt;",$pos));
 $pos = stripos($content,"src=")+4;
 $stopchar=" ";
 if("".substr($content,$pos,1)=='"'){
 $stopchar = '"';
 $pos++;
 }
 if("".substr($content,$pos,1)=="'"){
 $stopchar = "'";
 $pos++;
 }
 $img1 = "";
 do{
 $char = substr($content,$pos++,1);
 if($char != $stopchar)
 $img1 .= $char;
 }while(($char != $stopchar) &amp;&amp; ($pos &lt; strlen($content)));
 $tit = "";
 if(stripos($content,"title=")!==false){
 $pos = stripos($content,"title=")+6;
 $stopchar="|";
 if("".substr($content,$pos,1)=='"'){
 $stopchar = '"';
 $pos++;
 }
 if("".substr($content,$pos,1)=="'"){
 $stopchar = "'";
 $pos++;
 }
 do{
 $char = substr($content,$pos++,1);
 if($char != $stopchar)
 $tit .= $char;
 }while(($char != $stopchar) &amp;&amp; ($pos &lt; strlen($content)));
 }
 $alt = "";
 if(stripos($content,"alt=")!==false){
 $tit1="";
 $pos = stripos($content,"alt=")+4;
 $stopchar="|";
 if("".substr($content,$pos,1)=='"'){
 $stopchar = '"';
 $pos++;
 }
 if("".substr($content,$pos,1)=="'"){
 $stopchar = "'";
 $pos++;
 }
 do{
 $char = substr($content,$pos++,1);
 if($char != $stopchar)
 $alt .= $char;
 }while(($char != $stopchar) &amp;&amp; ($pos &lt; strlen($content)));
 }
 if($alt!="")
 $tit1=$alt;
 else if($tit!="")
 $tit1=$tit;
 else
 $tit1="";
 $img2 = str_replace(".jpg","-".get_option("thumbnail_size_w")."x".get_option("thumbnail_size_h").".jpg",$img1);
 $img2 = str_replace(".png","-".get_option("thumbnail_size_w")."x".get_option("thumbnail_size_h").".png",$img2);
 $img2 = str_replace(".gif","-".get_option("thumbnail_size_w")."x".get_option("thumbnail_size_h").".gif",$img2);
 if(!file_exists(realpath(".")."/".substr($img2,stripos($img2,"wp-content"))) &amp;&amp; (TFE_CREATETH=="yes")){
 if(get_option("thumbnail_size_w")&gt;0)
 image_make_intermediate_size( realpath(".")."/".substr($img1,stripos($img1,"wp-content")), get_option("thumbnail_size_w"),get_option("thumbnail_size_h"),true);
 else
 image_make_intermediate_size( realpath(".")."/".substr($img1,stripos($img1,"wp-content")), TFE_SIZE,TFE_SIZE,true);
 $img2 = str_replace(".jpg","-".TFE_SIZE."x".TFE_SIZE.".jpg",$img1);
 $img2 = str_replace(".png","-".TFE_SIZE."x".TFE_SIZE.".png",$img2);
 $img2 = str_replace(".gif","-".TFE_SIZE."x".TFE_SIZE.".gif",$img2);
 }
 if (file_exists(realpath(".")."/".substr($img2,stripos($img2,"wp-content")))){
 $condsize = "width";
 if(TFE_MAXSIZE=="yes" &amp;&amp; (get_option("thumbnail_size_h") &gt; get_option("thumbnail_size_w"))){
 $condsize = "height";
 if(!TFE_SIZE)
 $tfesize=get_option("thumbnail_size_h");
 }
 echo (TFE_LINK=="yes"?"&lt;a href=".get_permalink($id)."&gt;":"")."&lt;img src=".$img2." hspace=".TFE_SPACE." align=".TFE_ALIGN." $condsize=".$tfesize." ".(TFE_TITLE=="yes"?"alt='".$tit1."' title='".$tit1."'":"")." border=0&gt;".(TFE_LINK=="yes"?"&lt;/a&gt;":"");
 }
 else {
 $condsize = "width";
 if ((TFE_MAXSIZE=="yes") &amp;&amp; extension_loaded('gd') &amp;&amp; function_exists('gd_info')) {
 $im = imagecreatefromjpeg(realpath(".")."/".substr($img1,stripos($img1,"wp-content")));
 if(imagesx($im)&lt;imagesy($im))
 $condsize = "height";
 }
 echo (TFE_LINK=="yes"?"&lt;a href=".get_permalink($id)."&gt;":"")."&lt;img src=".$img1." hspace=".TFE_SPACE." align=".TFE_ALIGN." $condsize=".$tfesize." ".(TFE_TITLE=="yes"?"alt='".$tit1."' title='".$tit1."'":"")." border=0&gt;".(TFE_LINK=="yes"?"&lt;/a&gt;":"");
 }
 }
 return $img.$excerpt;
}
?&gt;</pre>
</blockquote>
<ul style="text-align: justify;">
<li>Above is a function which creates the thumbnails and displays them in Post And Category Pages. This function <strong>automatically re sizes</strong> the Images for the Thumbnails. You can also <strong>change the height and width</strong> of the thumbnails by changing the values to your desired in the initial part of the code. You can also change the position of the thumbnails by using values <strong>Left </strong>or <strong>Right.<br />
</strong></li>
</ul>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-fetch-first-image-of-your-post-as-thumbnail-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How To Check The Subscription box Checked Permanently in Subscribe To Comments Plugin</title>
		<link>http://www.techcats.net/how-to-check-the-subscription-box-checked-permanently-in-subscribe-to-comments-plugin.html</link>
		<comments>http://www.techcats.net/how-to-check-the-subscription-box-checked-permanently-in-subscribe-to-comments-plugin.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 05:30:51 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Plugin Hacks]]></category>
		<category><![CDATA[Subscribe To Comments]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=1321</guid>
		<description><![CDATA[Subscribe to comments is the best wordpress plugin which helps in engaging users with the comment feeds and allows them to participate in the discussions actively. In the earlier versions, there is an option to check subscribe to comments checkbox permanently, which is no more available in the recent versions. Couple of my readers asked [...]


Related posts:<ol><li><a href='http://www.techcats.net/thank-your-commentators-with-thank-me-later-plugin.html' rel='bookmark' title='Permanent Link: Thank Your Commentators with Thank Me Later Plugin'>Thank Your Commentators with Thank Me Later Plugin</a></li>
<li><a href='http://www.techcats.net/monthly-roundup-january-2010.html' rel='bookmark' title='Permanent Link: Monthly Roundup &#8211; January 2010'>Monthly Roundup &#8211; January 2010</a></li>
<li><a href='http://www.techcats.net/check-out-my-exclusive-interview-by-devang-at-speakbindas.html' rel='bookmark' title='Permanent Link: Check Out My Exclusive Interview by Devang At SpeakBindas'>Check Out My Exclusive Interview by Devang At SpeakBindas</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/subscribe-to-comments/" target="_blank">Subscribe to comments</a> is the best wordpress plugin which helps in <a href="http://www.techcats.net/how-to-get-more-comments-on-your-blog.html" target="_blank">engaging users with the comment </a>feeds and allows them to participate in the discussions actively. In the earlier versions, there is an option to check subscribe to comments checkbox permanently, which is no more available in the recent versions. Couple of my readers asked me about how do I manage to set the subscription box checked permanently at TechCats. I think it is better if I share the code lines which I have changed to set the checkbox checked permanently.<span id="more-1321"></span><img class="aligncenter size-full wp-image-1323" title="checkbox" src="http://www.techcats.net/wp-content/uploads/2010/01/checkbox-1.jpg" alt="Check-box-checkbox" width="296" height="350" /></p>
<ul>
<li>Log in to your WordPress &#8211;&gt; DashBoard &#8211;&gt; Plugins &#8211;&gt; Editor &#8211;&gt; Subscribe to comments</li>
</ul>
<ul>
<li>Select subscribe-to-comments/subscribe-to-comments.php</li>
</ul>
<ul>
<li>Search for following code</li>
</ul>
<blockquote><p>&lt;input name=&#8221;subscribe&#8221; value=&#8221;subscribe&#8221; style=&#8221;width: auto;&#8221; &lt;?php if ( $checked_status ) echo &#8216;checked=&#8221;checked&#8221; &#8216;; ?&gt;/&gt;</p></blockquote>
<ul>
<li>In addition, replace that with the following code</li>
</ul>
<blockquote><p>&lt;input name=&#8221;subscribe&#8221; value=&#8221;subscribe&#8221;  checked style=&#8221;width: auto;&#8221; &lt;?php if ( $checked_status ) echo &#8216;checked=&#8221;checked&#8221; &#8216;; ?&gt;/&gt;</p></blockquote>
<ul>
<li>Save the changes and subscribe to comments will be checked permanently.<img class="aligncenter size-full wp-image-1322" title="how-to-Check-subscribe-to-comments-checkbox-permanently" src="http://www.techcats.net/wp-content/uploads/2010/01/how-to-Check-subscribe-to-comments-checkbox-permanently.png" alt="how to Check subscribe to comments checkbox permanently How To Check The Subscription box Checked Permanently in Subscribe To Comments Plugin" width="540" height="374" /></li>
</ul>
<p style="text-align: justify;"><em><strong>Ask me if u have any doubts in configuring this. Feel free to <a href="http://www.techcats.net/contact-us" target="_blank">Contact Us</a> if you have any questions related to blogging&#8230;? I love to solve questions.</strong></em></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/thank-your-commentators-with-thank-me-later-plugin.html' rel='bookmark' title='Permanent Link: Thank Your Commentators with Thank Me Later Plugin'>Thank Your Commentators with Thank Me Later Plugin</a></li>
<li><a href='http://www.techcats.net/monthly-roundup-january-2010.html' rel='bookmark' title='Permanent Link: Monthly Roundup &#8211; January 2010'>Monthly Roundup &#8211; January 2010</a></li>
<li><a href='http://www.techcats.net/check-out-my-exclusive-interview-by-devang-at-speakbindas.html' rel='bookmark' title='Permanent Link: Check Out My Exclusive Interview by Devang At SpeakBindas'>Check Out My Exclusive Interview by Devang At SpeakBindas</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-check-the-subscription-box-checked-permanently-in-subscribe-to-comments-plugin.html/feed</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>5 Important SEO Customizations You Need To Do For Your WordPress Blog</title>
		<link>http://www.techcats.net/5-important-seo-customizations-you-need-to-do-for-your-wordpress-blog.html</link>
		<comments>http://www.techcats.net/5-important-seo-customizations-you-need-to-do-for-your-wordpress-blog.html#comments</comments>
		<pubDate>Sat, 02 Jan 2010 05:30:12 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=919</guid>
		<description><![CDATA[Search Engine Optimization (SEO) is the most important thing for every blog to be successful. Although referral traffic helps a blog in stand in the blogosphere organic traffic determines the blog’s success. Every blogger (including me) works on SEO and to get major share of organic traffic. WordPress blogs also requires some optimization to get [...]


Related posts:<ol><li><a href='http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html' rel='bookmark' title='Permanent Link: Understand The Structure Of WordPress Permalinks &#038; Make Them SEO Friendly'>Understand The Structure Of WordPress Permalinks &#038; Make Them SEO Friendly</a></li>
<li><a href='http://www.techcats.net/top-8-must-have-plug-ins-after-you-setup-wordpress-blog.html' rel='bookmark' title='Permanent Link: Top 8 Must Have Plug-ins after you Setup WordPress Blog'>Top 8 Must Have Plug-ins after you Setup WordPress Blog</a></li>
<li><a href='http://www.techcats.net/4-useful-essential-seo-wordpress-plugins.html' rel='bookmark' title='Permanent Link: 4 Useful &amp; Essential SEO WordPress Plugins'>4 Useful &amp; Essential SEO WordPress Plugins</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><strong><img class="alignright size-medium wp-image-920" title="seo" src="http://www.techcats.net/wp-content/uploads/2009/12/seo-200x154.jpg" alt="search-engine-optimization" width="200" height="154" />Search Engine Optimization (SEO)</strong> is the most important thing for every blog to be successful. Although referral traffic helps a blog in stand in the blogosphere organic traffic determines the blog’s success. Every blogger (including me) works on SEO and to get major share of organic traffic. WordPress blogs also requires some optimization to get maximum share from search engines.<span id="more-919"></span></p>
<p style="text-align: justify;"><strong>Meta Description: </strong>Meta description is the first area crawled by the search engines and I recommend you to use a long description to your blog stuffed with keywords not more the 160 words. These were buzz like <a href="http://www.techcats.net/services" target="_blank">Meta keywords</a> were no longer considered in SEO but there is no official announcement on that so go ahead and stuff every possible keyword for your blog in Meta description.</p>
<p style="text-align: justify;"><strong>Proper URL Structure:</strong> I have written a detailed post on <a href="http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html" target="_blank">Understanding The structure of Permalinks Make Them SEO Friendly</a>, it  helps you to determine the importance of permalinks.</p>
<p style="text-align: justify;"><strong>Sitemap Generator:</strong> Create Sitemap and allow search engines to crawl the sitemap maximizes the exposure of your blog. I suggest you to use <a href="http://www.techcats.net/top-8-must-have-plug-ins-after-you-setup-wordpress-blog.html" target="_blank">Google XML Sitemap Generator</a> help you in creating the XML sitemaps and ping them to the search engines.</p>
<p style="text-align: justify;"><strong>Keywords:</strong> Although Keywords were very important to drive traffic but using short keywords like “wordpress” “blogging” SEO” doesn’t make sense and help you in driving traffic instead I suggest you to use long keywords like “wordpress SEO blogging to get traffic” will help you rank top in SERP results.</p>
<p style="text-align: justify;"><strong>Robots.txt:</strong> Configuring the robots.txt is the most important thing and common mistake done by most of the bloggers. Configuring the blog according to search engines won’t complete your work, at the same time you have to allow access and restrict them at particular locations from crawling. I recommend to you to use a custom robots.txt for your blog. You check out the robots.txt sample at <a rel="nofollow" target="_blank" href="../robots.txt">http://www.techcats.net/robots.txt</a></p>
<p style="text-align: justify;"><strong>Let us know about more SEO tips and customizations that will enhance the blogging traffic. <img src='http://www.techcats.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="5 Important SEO Customizations You Need To Do For Your Wordpress Blog" /><br />
</strong></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html' rel='bookmark' title='Permanent Link: Understand The Structure Of WordPress Permalinks &#038; Make Them SEO Friendly'>Understand The Structure Of WordPress Permalinks &#038; Make Them SEO Friendly</a></li>
<li><a href='http://www.techcats.net/top-8-must-have-plug-ins-after-you-setup-wordpress-blog.html' rel='bookmark' title='Permanent Link: Top 8 Must Have Plug-ins after you Setup WordPress Blog'>Top 8 Must Have Plug-ins after you Setup WordPress Blog</a></li>
<li><a href='http://www.techcats.net/4-useful-essential-seo-wordpress-plugins.html' rel='bookmark' title='Permanent Link: 4 Useful &amp; Essential SEO WordPress Plugins'>4 Useful &amp; Essential SEO WordPress Plugins</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/5-important-seo-customizations-you-need-to-do-for-your-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>67</slash:comments>
		</item>
		<item>
		<title>Understand The Structure Of WordPress Permalinks &amp; Make Them SEO Friendly</title>
		<link>http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html</link>
		<comments>http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html#comments</comments>
		<pubDate>Thu, 31 Dec 2009 04:30:30 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=894</guid>
		<description><![CDATA[WordPress by default is 60-70% Search Engine Optimized blogging platform and the rest should be customized to make it complete SEO friendly. Permalinks were the first most things which should be customized and also it is the most essential and very important thing to make the blog SEO friendly. Customizing permalinks helps in driving good [...]


Related posts:<ol><li><a href='http://www.techcats.net/5-important-seo-customizations-you-need-to-do-for-your-wordpress-blog.html' rel='bookmark' title='Permanent Link: 5 Important SEO Customizations You Need To Do For Your WordPress Blog'>5 Important SEO Customizations You Need To Do For Your WordPress Blog</a></li>
<li><a href='http://www.techcats.net/top-8-must-have-plug-ins-after-you-setup-wordpress-blog.html' rel='bookmark' title='Permanent Link: Top 8 Must Have Plug-ins after you Setup WordPress Blog'>Top 8 Must Have Plug-ins after you Setup WordPress Blog</a></li>
<li><a href='http://www.techcats.net/how-to-fetch-first-image-of-your-post-as-thumbnail-in-wordpress.html' rel='bookmark' title='Permanent Link: How To Fetch First Image of Your Post as Thumbnail in WordPress'>How To Fetch First Image of Your Post as Thumbnail in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><img class="alignright size-full wp-image-895" title="Wordpress-permalinks-for-better-seo" src="http://www.techcats.net/wp-content/uploads/2009/12/Wordpress-permalinks-for-better-seo.jpg" alt="Wordpress permalinks for better seo Understand The Structure Of WordPress Permalinks & Make Them SEO Friendly" width="160" height="120" />WordPress by default is 60-70% Search Engine Optimized blogging platform and the rest should be customized to make it complete SEO friendly. Permalinks were the first most things which should be customized and also it is the most essential and very important thing to make the blog SEO friendly. Customizing permalinks helps in driving good organic traffic to the blog and the plugins like All in SEO or themes like Thesis helps in making things much better.<span id="more-894"></span></p>
<p style="text-align: justify;"><strong>What is Permalink?</strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;">Permalink is nothing but the URL of the website page. The default URL structure for wordpress blog is “<a href="http://www.techcats.net/download-free-12-month-complimentary-trial-of-mcafee-antivirus.html" target="_blank">http://www.techcats.net/p=102</a>” and if you check the URL of my blog it will be like “<a href="http://www.techcats.net/how-commenting-will-increase-drive-more-traffic-to-your-blog.html" target="_blank">http://www.techcats.net/name-of-the-post.html</a>”. A <em>custom permalink structure </em>lets you define which variables you want to see in your permalinks.</p>
<p style="text-align: justify;">Here are the default custom structures you can choose from:</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%year%</strong> displays 4-digit year (e.g. 2009)<strong> </strong></p>
<p style="text-align: justify;"><strong>%monthnum%</strong> displays month in 2 digit number format (e.g. 03 for March)</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%day% </strong>displays day in 2 digit number format (e.g. 17)</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%hour%</strong> displays 2 digit time in 24 hour (e.g. 18 for 6 p.m.)</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%minute%</strong> displays minutes in 2 digit format (e.g.  07 for 7 minutes)</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%second%</strong> displays seconds in 2 digit format (e.g.  08 for 8 seconds)</p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>%postname%</strong> displays the name of the post separated by hyphens (e.g. for a post with title “this is my first post” it displays “this-is-my-first-post”)</p>
<p style="text-align: justify;"><strong>%category%</strong> It displays the name of the category (e.g. for a post under category “permalink” it displays “permalink”)</p>
<p style="text-align: justify;"><strong>%author%</strong> It displays the name of the post author (e.g. for a posted by me (Rajesh Kanuri) it displays like “rajesh-kanuri”)</p>
<p style="text-align: justify;">For example if you want your permalink to show the category, and post name, you have to select the Custom Structure in the Customize Permalink Structure page and type the following tags in the text box and save the changes.</p>
<p style="text-align: justify;"><strong>/%category%/%postname%/</strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;">Then a post named “How to install Google Chrome OS” Under the category Google, will display like this: “<a href="http://www.techcats.net/how-to-install-google-chrome-os.html" target="_self">http://<em>www.techcats.net/google/how-to-install-google-chrome-os/</em></a>”</p>
<p style="text-align: justify;"><strong>Note</strong>: Make sure that you include the slashes before, between and at the end of the tags,to ensure that wordpress creates correct and working permalinks.</p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/5-important-seo-customizations-you-need-to-do-for-your-wordpress-blog.html' rel='bookmark' title='Permanent Link: 5 Important SEO Customizations You Need To Do For Your WordPress Blog'>5 Important SEO Customizations You Need To Do For Your WordPress Blog</a></li>
<li><a href='http://www.techcats.net/top-8-must-have-plug-ins-after-you-setup-wordpress-blog.html' rel='bookmark' title='Permanent Link: Top 8 Must Have Plug-ins after you Setup WordPress Blog'>Top 8 Must Have Plug-ins after you Setup WordPress Blog</a></li>
<li><a href='http://www.techcats.net/how-to-fetch-first-image-of-your-post-as-thumbnail-in-wordpress.html' rel='bookmark' title='Permanent Link: How To Fetch First Image of Your Post as Thumbnail in WordPress'>How To Fetch First Image of Your Post as Thumbnail in WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/understand-the-structure-of-wordpress-permalinks-make-them-seo-friendly.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>How To Solve Missed Schedule Error In WordPress 2.9</title>
		<link>http://www.techcats.net/how-to-solve-missed-schedule-error-in-wordpress-2-9.html</link>
		<comments>http://www.techcats.net/how-to-solve-missed-schedule-error-in-wordpress-2-9.html#comments</comments>
		<pubDate>Sun, 20 Dec 2009 06:05:18 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Fix]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=1070</guid>
		<description><![CDATA[WordPress 2.9 is released and has loads of interesting features in wordpress 2.9 but also the problems started arising in the latest. One such problem is “Missed Schedule” this arises for those who have the habit of scheduling the posts. This is a peculiar problem raised in wordpress 2.9. Although this problem is there in [...]


Related posts:<ol><li><a href='http://www.techcats.net/wordpress-2-9-1-released-download-update-now-to-fix-17-bugs.html' rel='bookmark' title='Permanent Link: WordPress 2.9.1 Released &#8211; Download &#038; Update Now To Fix 17 Bugs'>WordPress 2.9.1 Released &#8211; Download &#038; Update Now To Fix 17 Bugs</a></li>
<li><a href='http://www.techcats.net/how-to-upgrade-wordpress-updates-plugins-automatically-from-dashboard.html' rel='bookmark' title='Permanent Link: How To Upgrade WordPress Updates &#038; Plugins Automatically From DashBoard'>How To Upgrade WordPress Updates &#038; Plugins Automatically From DashBoard</a></li>
<li><a href='http://www.techcats.net/how-to-stop-control-spam-comments-in-wordpress-blogs.html' rel='bookmark' title='Permanent Link: How To Stop &#038; Control Spam Comments in WordPress Blogs'>How To Stop &#038; Control Spam Comments in WordPress Blogs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.techcats.net/how-to-solve-missed-schedule-error-in-wordpress-2-9.html" title="Permanent link to How To Solve Missed Schedule Error In WordPress 2.9"><img class="post_image alignright frame" src="http://www.techcats.net/wp-content/uploads/2009/10/wordpresslogo_thumb.jpg" width="244" height="64" alt="Post image for How To Solve Missed Schedule Error In WordPress 2.9" title="How To Solve Missed Schedule Error In Wordpress 2.9" /></a>
</p><p style="text-align: justify;"><a href="http://www.techcats.net/download-wordpress-2-9-release-candidate-1.html" target="_blank"><img class="alignright size-full wp-image-359" title="wordpresslogo_thumb.jpg" src="http://www.techcats.net/wp-content/uploads/2009/10/wordpresslogo_thumb.jpg" alt="wordpresslogo thumb How To Solve Missed Schedule Error In Wordpress 2.9"  />WordPress 2.9</a> is released and has loads of <a href="http://www.techcats.net/what%e2%80%99s-new-in-wordpress-2-9-complete-upcoming-features-list.html" target="_blank">interesting features in wordpress 2.9</a> but also the problems started arising in the latest. One such problem is “Missed Schedule” this arises for those who have the habit of scheduling the posts. This is a peculiar problem raised in wordpress 2.9.<span id="more-1070"></span></p>
<p style="text-align: justify;">Although this problem is there in earlier versions of wordpress this becomes the habit in WordPress latest version.</p>
<p style="text-align: justify;">This have found a quick and temporary recommended solution, which is using a plugin named “<a rel="nofollow" target="_blank" href="http://blog.5ubliminal.com/posts/missed-schedule-future-posts-scheduled-mias-wordpress-plugin/" target="_blank">Missed in Action</a>” Using this plugin ensures that you the posts will be published according to the schedule.</p>
<p style="text-align: justify;">Hope wordpress will find the permanent solution which helps in rectifying the problem. Will update with the latest fix. Mean while let me know if you find any permanent fix to solve this problem.</p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/wordpress-2-9-1-released-download-update-now-to-fix-17-bugs.html' rel='bookmark' title='Permanent Link: WordPress 2.9.1 Released &#8211; Download &#038; Update Now To Fix 17 Bugs'>WordPress 2.9.1 Released &#8211; Download &#038; Update Now To Fix 17 Bugs</a></li>
<li><a href='http://www.techcats.net/how-to-upgrade-wordpress-updates-plugins-automatically-from-dashboard.html' rel='bookmark' title='Permanent Link: How To Upgrade WordPress Updates &#038; Plugins Automatically From DashBoard'>How To Upgrade WordPress Updates &#038; Plugins Automatically From DashBoard</a></li>
<li><a href='http://www.techcats.net/how-to-stop-control-spam-comments-in-wordpress-blogs.html' rel='bookmark' title='Permanent Link: How To Stop &#038; Control Spam Comments in WordPress Blogs'>How To Stop &#038; Control Spam Comments in WordPress Blogs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-solve-missed-schedule-error-in-wordpress-2-9.html/feed</wfw:commentRss>
		<slash:comments>86</slash:comments>
		</item>
		<item>
		<title>How To Edit Images Using Inbuilt Features of WordPress 2.9?</title>
		<link>http://www.techcats.net/how-to-edit-images-using-inbuilt-features-of-wordpress-2-9.html</link>
		<comments>http://www.techcats.net/how-to-edit-images-using-inbuilt-features-of-wordpress-2-9.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 04:30:21 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Wordpress 2.9]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=1048</guid>
		<description><![CDATA[WordPress 2.9 was all set to release this weekend (as per the official announcement do not blame me guys if it gets late ) just released ( Checkout how to update WP from Dashboard safely) and it has loads of new features which include trash, gallery, image editing and lots more. You can check full [...]


Related posts:<ol><li><a href='http://www.techcats.net/what%e2%80%99s-new-in-wordpress-2-9-complete-upcoming-features-list.html' rel='bookmark' title='Permanent Link: What’s New in WordPress 2.9? Complete Upcoming Features List'>What’s New in WordPress 2.9? Complete Upcoming Features List</a></li>
<li><a href='http://www.techcats.net/edit-share-organize-store-photo%e2%80%99s-online-using-photoshop.html' rel='bookmark' title='Permanent Link: Edit, Share, Organize &#038; Store Photo’s Online Using Photoshop'>Edit, Share, Organize &#038; Store Photo’s Online Using Photoshop</a></li>
<li><a href='http://www.techcats.net/mashable-style-wordpress-plugin-to-drag-drop-images.html' rel='bookmark' title='Permanent Link: Mashable Style WordPress Plugin to Drag &#038; Drop Images'>Mashable Style WordPress Plugin to Drag &#038; Drop Images</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.techcats.net/how-to-edit-images-using-inbuilt-features-of-wordpress-2-9.html" title="Permanent link to How To Edit Images Using Inbuilt Features of WordPress 2.9?"><img class="post_image alignright frame" src="http://www.techcats.net/wp-content/uploads/2009/12/wordpress-logo.jpg" width="160" height="151" alt="Post image for How To Edit Images Using Inbuilt Features of WordPress 2.9?" title="How To Edit Images Using Inbuilt Features of Wordpress 2.9?" /></a>
</p><p style="text-align: justify;"><a href="http://www.techcats.net/download-wordpress-2-9-release-candidate-1.html" target="_blank"><img class="alignright size-full wp-image-1057" title="wordpress-logo" src="http://www.techcats.net/wp-content/uploads/2009/12/wordpress-logo.jpg" alt="wordpress logo How To Edit Images Using Inbuilt Features of Wordpress 2.9?" width="139" height="132" />WordPress 2.9</a> was <span style="text-decoration: line-through;">all set to release this weekend (as per the official announcement do not blame me guys if it gets late <img src='http://www.techcats.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="How To Edit Images Using Inbuilt Features of Wordpress 2.9?" /> </span>) just released ( Checkout <a href="http://www.techcats.net/how-to-upgrade-wordpress-updates-plugins-automatically-from-dashboard.html" target="_blank">how to update WP from Dashboard safely</a>) and it has loads of new features which include trash, gallery, image editing and lots more. You can check <a href="http://www.techcats.net/what%e2%80%99s-new-in-wordpress-2-9-complete-upcoming-features-list.html" target="_blank">full features of wordpress 2.9</a> in my earlier post. In this post, I would like to discuss about the unique and entirely new features of the wordpress, which deals with image editing.<span id="more-1048"></span></p>
<p style="text-align: justify;">Previously once after you upload the image the default screen deals with the alt text, size of the image, alignment and linking options. In wordpress 2.9 there is a brand new option named “<strong>Edit Image</strong>”</p>
<p style="text-align: justify;"><img class="alignright size-full wp-image-1049" title="image editing options when you click on edit image in wordpress 2.9" src="http://www.techcats.net/wp-content/uploads/2009/12/image-editing-options-when-you-click-on-edit-image-in-wordpress-2.9.png" alt="image editing options when you click on edit image in wordpress 2.9" width="605" height="527" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">Click on Edit Image to resize the image, adjust the aspect ratio, cropping, rotating, scaling and lot more features to play with which I will elaborate more in this post. The following screenshot helps you in identifying the features included.</p>
<p style="text-align: justify;"><img class="alignright size-full wp-image-1050" title="Image options after you upload image to the gallery in wordpress 2.9" src="http://www.techcats.net/wp-content/uploads/2009/12/Image-options-after-you-upload-image-to-the-gallery-in-wordpress-2.9.png" alt="Image options after you upload image to the gallery in wordpress 2.9" width="585" height="553" /></p>
<h2 style="text-align: justify;">How To Crop the image?</h2>
<p style="text-align: justify;">After you enter the editing options of the image, just click and drag on the image to select the portion of the image and click on save to save the selection.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1052" title="drag and select the image to crop the screen" src="http://www.techcats.net/wp-content/uploads/2009/12/drag-and-select-the-image-to-crop-the-screen1.png" alt="drag and select the image to crop the screen" width="407" height="268" /></p>
<h2 style="text-align: justify;">How To Rotate the images?</h2>
<p style="text-align: justify;">It works as simple as paint program just click on various rotate options to make the image rotate and save the final selection. You can also invert the images for mirroring.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1053" title="Various Rotate Options available in WordPress 2.9" src="http://www.techcats.net/wp-content/uploads/2009/12/Various-Rotate-Options-available-in-Wordpress-2.9.JPG" alt="Various Rotate Options available in WordPress 2.9" width="385" height="336" /></p>
<h2 style="text-align: justify;">How To Scale Image?</h2>
<p style="text-align: justify;">Click on Scale image and enter the dimensions of the desired output and save the image.<img class="aligncenter size-full wp-image-1054" title="scale image in wordpress" src="http://www.techcats.net/wp-content/uploads/2009/12/scale-image-in-wordpress.png" alt="scale image in wordpress" width="277" height="185" /></p>
<p style="text-align: justify;">Christmas started sparkling and earlier we came up with the collection of <a href="http://www.techcats.net/best-handpicked-wordpress-blog-themes-for-this-christmas-season.html" target="_blank">Themes</a> &amp; <a href="http://www.techcats.net/wordpress-plugins-to-celebrate-christmas-on-your-blog.html" target="_blank">Plugins</a> for your WordPress blog, which helps you in making over your blog this festive season.</p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/what%e2%80%99s-new-in-wordpress-2-9-complete-upcoming-features-list.html' rel='bookmark' title='Permanent Link: What’s New in WordPress 2.9? Complete Upcoming Features List'>What’s New in WordPress 2.9? Complete Upcoming Features List</a></li>
<li><a href='http://www.techcats.net/edit-share-organize-store-photo%e2%80%99s-online-using-photoshop.html' rel='bookmark' title='Permanent Link: Edit, Share, Organize &#038; Store Photo’s Online Using Photoshop'>Edit, Share, Organize &#038; Store Photo’s Online Using Photoshop</a></li>
<li><a href='http://www.techcats.net/mashable-style-wordpress-plugin-to-drag-drop-images.html' rel='bookmark' title='Permanent Link: Mashable Style WordPress Plugin to Drag &#038; Drop Images'>Mashable Style WordPress Plugin to Drag &#038; Drop Images</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-edit-images-using-inbuilt-features-of-wordpress-2-9.html/feed</wfw:commentRss>
		<slash:comments>58</slash:comments>
		</item>
		<item>
		<title>How To Add Snow Effect For Christmas In Blogger (BlogSpot) Blogs</title>
		<link>http://www.techcats.net/how-to-add-snow-effect-for-christmas-in-blogger-blogspot-blogs.html</link>
		<comments>http://www.techcats.net/how-to-add-snow-effect-for-christmas-in-blogger-blogspot-blogs.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 04:30:01 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Christmas]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=1015</guid>
		<description><![CDATA[Christmas is just 10 days away and everyone is in festival mood. TechCats brought up with loads of WordPress Themes &#38; Plugins to make over your wordpress blogs but for those who blog at blogger will definitely miss the fun as they cannot use the Plugins. I checked over the web to get snowflakes on [...]


Related posts:<ol><li><a href='http://www.techcats.net/wordpress-plugins-to-celebrate-christmas-on-your-blog.html' rel='bookmark' title='Permanent Link: WordPress Plugins To Celebrate Christmas On Your Blog'>WordPress Plugins To Celebrate Christmas On Your Blog</a></li>
<li><a href='http://www.techcats.net/blogspot-comes-up-with-pages-in-blogger-draft.html' rel='bookmark' title='Permanent Link: BlogSpot Comes Up With Pages in Blogger Draft'>BlogSpot Comes Up With Pages in Blogger Draft</a></li>
<li><a href='http://www.techcats.net/what-is-the-best-platform-for-blogging-wordpress-vs-blogspot.html' rel='bookmark' title='Permanent Link: What is The Best Platform For Blogging? WordPress Vs Blogspot'>What is The Best Platform For Blogging? WordPress Vs Blogspot</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><img class="alignright size-medium wp-image-1016" title="christmas-tree-snow-effect" src="http://www.techcats.net/wp-content/uploads/2009/12/christmas-tree-snow-effect-200x200.jpg" alt="christmas tree snow effect 200x200 How To Add Snow Effect For Christmas In Blogger (BlogSpot) Blogs" width="112" height="112" />Christmas is just 10 days away and everyone is in festival mood. TechCats brought up with loads of <a href="http://www.techcats.net/best-handpicked-wordpress-blog-themes-for-this-christmas-season.html" target="_blank">WordPress Themes</a> &amp; <a href="http://www.techcats.net/wordpress-plugins-to-celebrate-christmas-on-your-blog.html" target="_blank">Plugins</a> to make over your wordpress blogs but for those who blog at blogger will definitely miss the fun as they cannot use the Plugins. I checked over the web to get snowflakes on the blogger blogs. Credits to the code author Kurt Grigg.<span id="more-1015"></span></p>
<p style="text-align: justify;">Adding snowflake is fun and best way to decorate your blog for this Christmas. Here is the simple hack to get snowflakes in your BlogSpot blog, follow the steps to get that in action at your blog.</p>
<ol>
<li>Download the java script snow.js (Right click on snow.js and click on “save as” to download the java script).</li>
<li>Upload and host the java files to the webserver.</li>
<li>To know how to upload java files for with unlimted checkout this <a rel="nofollow" target="_blank" href="http://www.bloggertricks.com/2009/09/how-to-use-blogger-to-upload-your.html" target="_blank">article</a>.</li>
<li>Add the following code in the  section of your template page.    <script src="snow.js" type="text/javascript"> </script></li>
</ol>
<blockquote style="text-align: justify;"><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;<strong>snow.js</strong>&#8220;&gt; &lt;/script&gt;</p></blockquote>
<p style="text-align: justify;">Check out the <a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/dynamicindex3/snowdemo.htm" target="_blank">demo</a> to see the snowflake working in action. I hope that you will love this and decorate your blog with this widget.</p>
<p style="text-align: justify;">Visit <a rel="nofollow" target="_blank" href="http://btemplates.com/tag/christmas/" target="_blank">btemplates</a> for loads of templates  for your blogger blog.</p>
<p style="text-align: justify;">It is the best time to move your blogspot blogs to <a href="http://www.techcats.net/services" target="_blank">migrate to self hosted wordpress</a> as most of the hosting companies comes up with fabulous offers. <a href="http://www.techcats.net/contact-us" target="_blank">Contact Us</a> for best deals on Web Hosting. We recommend <a href="http://www.techcats.net/recommended/HostMonster/" target="_blank">HostMonster</a> (Read our <a href="http://www.techcats.net/techcats-host-provider-hostmonster-review-it-rocks.html" target="_blank">review on HostMonster</a>), <a href="http://www.techcats.net/recommended/BlueHost/" target="_blank">BlueHost</a> &amp; <a href="http://www.techcats.net/recommended/HostGator/" target="_blank">HostGator</a>.</p>
<p style="text-align: justify;"><a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/dynamicindex3/snownoimages_dev.htm" target="_blank">Code Credits</a></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/wordpress-plugins-to-celebrate-christmas-on-your-blog.html' rel='bookmark' title='Permanent Link: WordPress Plugins To Celebrate Christmas On Your Blog'>WordPress Plugins To Celebrate Christmas On Your Blog</a></li>
<li><a href='http://www.techcats.net/blogspot-comes-up-with-pages-in-blogger-draft.html' rel='bookmark' title='Permanent Link: BlogSpot Comes Up With Pages in Blogger Draft'>BlogSpot Comes Up With Pages in Blogger Draft</a></li>
<li><a href='http://www.techcats.net/what-is-the-best-platform-for-blogging-wordpress-vs-blogspot.html' rel='bookmark' title='Permanent Link: What is The Best Platform For Blogging? WordPress Vs Blogspot'>What is The Best Platform For Blogging? WordPress Vs Blogspot</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-add-snow-effect-for-christmas-in-blogger-blogspot-blogs.html/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>How Commenting Will Increase &amp; Drive More Traffic To Your Blog</title>
		<link>http://www.techcats.net/how-commenting-will-increase-drive-more-traffic-to-your-blog.html</link>
		<comments>http://www.techcats.net/how-commenting-will-increase-drive-more-traffic-to-your-blog.html#comments</comments>
		<pubDate>Thu, 26 Nov 2009 04:30:46 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=765</guid>
		<description><![CDATA[If you have checked the Best ways to get Instant Traffic to your blog, commenting is one among them and drives you a good traffic and also lets you to maintain good relationships with fellow bloggers. It has been 2 months I have started TechCats and now we are in position of 100+ unique visits [...]


Related posts:<ol><li><a href='http://www.techcats.net/how-to-get-instant-traffic-to-your-blog.html' rel='bookmark' title='Permanent Link: How To Get Instant Traffic to Your Blog'>How To Get Instant Traffic to Your Blog</a></li>
<li><a href='http://www.techcats.net/things-to-keep-in-mind-while-commenting.html' rel='bookmark' title='Permanent Link: Things To keep In Mind While Commenting'>Things To keep In Mind While Commenting</a></li>
<li><a href='http://www.techcats.net/how-to-promote-blog-website.html' rel='bookmark' title='Permanent Link: How To Promote Blog/Website?'>How To Promote Blog/Website?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><img class="alignright size-full wp-image-768" title="How commenting will increase Blog Traffic" src="http://www.techcats.net/wp-content/uploads/2009/11/How-commenting-will-increase-Blog-Traffic.JPG" alt="How commenting will increase Blog Traffic" width="316" height="117" />If you have checked the <a rel="nofollow" target="_blank" href="../how-to-get-instant-traffic-to-your-blog.html">Best ways to get Instant Traffic to your blog</a>, commenting is one among them and drives you a good traffic and also lets you to maintain good relationships with fellow bloggers. It has been 2 months I have started <a rel="nofollow" target="_blank" href="../">TechCats</a> and now we are in position of 100+ unique visits per day, 200-300 page views and <a href="http://www.techcats.net/new-changes-in-alexa-dashboard.html" target="_blank">Alexa Rank</a> close to 150k, these all happened because of the continuous efforts to make at least one post per day and also commenting on other blogs.<span id="more-765"></span></p>
<p style="text-align: justify;"><strong>How Commenting will help you in driving Traffic?</strong></p>
<p style="text-align: justify;">This is the first question that will arise in premature blogger who just started their blogging (even I am one among them when I started blogging lolz <img src='http://www.techcats.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="How Commenting Will Increase & Drive More Traffic To Your Blog" />  ) and here is the live example with screenshot, This will make you understand better of what I am saying.<img class="aligncenter size-full wp-image-766" title="Traffic sources for techcats" src="http://www.techcats.net/wp-content/uploads/2009/11/Traffic-sources-for-techcats.JPG" alt="Traffic sources for techcats" width="421" height="196" /></p>
<p style="text-align: justify;">If you check the sources that drive traffic to <a href="http://www.techcats.net/" target="_blank">my blog</a> you can notice that more than 50% of the traffic is from referring sites and this all happened because of continuous commenting on other blogs and it also left me a blogger friends like Harsh Agarwal, Sandesh, Pavan, Ankit Puri, Ramkumar, Shivaraj, Gabe and many more to name.</p>
<p style="text-align: justify;"><strong>Stay tuned by <a rel="nofollow" target="_blank" href="http://feeds2.feedburner.com/TechCats" target="_blank">Subscribing to my Posts</a> and following me on twitter (@<a rel="nofollow" target="_blank" href="http://twitter.com/rajkanuri" target="_blank">rajkanuri</a>) to know how to make your blog commentators as your loyal readers.</strong></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/how-to-get-instant-traffic-to-your-blog.html' rel='bookmark' title='Permanent Link: How To Get Instant Traffic to Your Blog'>How To Get Instant Traffic to Your Blog</a></li>
<li><a href='http://www.techcats.net/things-to-keep-in-mind-while-commenting.html' rel='bookmark' title='Permanent Link: Things To keep In Mind While Commenting'>Things To keep In Mind While Commenting</a></li>
<li><a href='http://www.techcats.net/how-to-promote-blog-website.html' rel='bookmark' title='Permanent Link: How To Promote Blog/Website?'>How To Promote Blog/Website?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-commenting-will-increase-drive-more-traffic-to-your-blog.html/feed</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
		<item>
		<title>TechCats Host Provider &#8220;HostMonster&#8221; Review: It Rocks</title>
		<link>http://www.techcats.net/techcats-host-provider-hostmonster-review-it-rocks.html</link>
		<comments>http://www.techcats.net/techcats-host-provider-hostmonster-review-it-rocks.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 08:30:48 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[HostMonster]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.techcats.net/?p=660</guid>
		<description><![CDATA[HostMonster is one of the oldest company which provides web hosting services to its customers since 1996 and now it hosts more than 600,000 sites where our TechCats is one among them. HostMonster has strong track record of happy customers and almost 99.99%  positive feedback from its customers, This puts Hostmonster up there with the [...]


Related posts:<ol><li><a href='http://www.techcats.net/how-to-install-wordpress-blog-using-simple-scripts-one-click-installer-in-hostmonster.html' rel='bookmark' title='Permanent Link: How To Install WordPress Blog Using Simple Scripts One Click Installer in HostMonster'>How To Install WordPress Blog Using Simple Scripts One Click Installer in HostMonster</a></li>
<li><a href='http://www.techcats.net/january-coupon-code-of-godaddy-to-save-30-on-domains.html' rel='bookmark' title='Permanent Link: January Coupon Code of GoDaddy To Save 30% on Domains'>January Coupon Code of GoDaddy To Save 30% on Domains</a></li>
<li><a href='http://www.techcats.net/hostgator-20-off-coupon-code-for-april-2010.html' rel='bookmark' title='Permanent Link: HostGator 20% Off Coupon Code For April 2010'>HostGator 20% Off Coupon Code For April 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a rel="nofollow" target="_blank" href="http://www.hostmonster.com/track/techcats/homepage"><img class="alignright size-full wp-image-664" title="hostmonster logo" src="http://www.techcats.net/wp-content/uploads/2009/11/hostmonster-logo.JPG" alt="hostmonster logo" width="155" height="127" /></a><a href="http://www.techcats.net/recommended/HostMonster/" target="_blank">HostMonster</a> is one of the oldest company which provides web hosting services to its customers since 1996 and now it hosts more than 600,000 sites where our <a href="http://www.techcats.net/" target="_blank">TechCats</a> is one among them. HostMonster has strong track record of happy customers and almost 99.99%  positive feedback from its customers, This puts Hostmonster up there with the longer running web hosting providers unlike others they are not going to disappear overnight and leave sleepless nights for you and moreover it is sister concern company to BlueHost.<span id="more-660"></span></p>
<p style="text-align: justify;"><strong>Plans &amp; Features</strong></p>
<p style="text-align: justify;">Currently <a rel="nofollow" target="_blank" href="../recommended/HostMonster/" target="_blank">HostMonster</a> is offering its services for just $5.95 per month, The best of the plan is it includes UNLIMITED storage space, UNLIMITED data transfer , UNLIMITED Domains and Sub-Domains. Here is the list of some of the unique and outstanding features provided with the HostMonster.<img class="aligncenter size-full wp-image-661" title="HostMonster Features" src="http://www.techcats.net/wp-content/uploads/2009/11/HostMonster-Features.JPG" alt="HostMonster Features" width="246" height="235" /></p>
<p style="text-align: justify;">You may also check complete list of  features at <a rel="nofollow" target="_blank" href="http://www.hostmonster.com/track/techcats/tellmemore?page=tell_me_more.html" target="_blank">HostMonster</a></p>
<p style="text-align: justify;"><strong>Datacenter</strong></p>
<p style="text-align: justify;"><a rel="nofollow" target="_blank" href="../recommended/HostMonster/" target="_blank">HostMonster</a> uses the latest technologies in hosting and uses high performance Processors like Quad core 2-3 range Servers to provide best priority service to your web sites, 24 hours power backup to make sure that your website is running 24&#215;365 in the event of a power cut, More over it even has mirrored storage backups, this allows your sites to be served quickly and reliably.</p>
<p style="text-align: justify;"><strong>Control Panel &amp; Scripting Support</strong></p>
<p style="text-align: justify;"><a rel="nofollow" target="_blank" href="../recommended/HostMonster/" target="_blank">HostMonster</a> uses cPanel, which is proved to be user friendly and is the market leader in web administration Dashboard. You can check out the large base of articles available on its usage made available at Knowledge Base by HostMonster. Cpanel includes SimpleScripts which has over 50 scripts for installation, which minimizes the  work of user during configuration.</p>
<p style="text-align: justify;"><strong>Customer Support</strong></p>
<p style="text-align: justify;">The best and most important thing that made me attracted to HostMonster is its excellent <a rel="nofollow" target="_blank" href="http://www.hostmonster.com/track/techcats/help?page=cgi/help" target="_blank">customer support</a>. They provide a separate and dedicated customer care team (not virtual agents) available 24/7 through LIVE CHAT (yes what you read is correct it is LIVE CHAT) with less than 2 minutes hold time, Toll Free Telephone support, User Guides for Answers to most FAQ’s. If you are not satisfied or still require support you can also raise a ticket for support. I have the best personal experience with the support when I requested to change my account settings, So I will rate 100 for the support.</p>
<p style="text-align: justify;"><strong>Conclusion</strong></p>
<p style="text-align: justify;">Considering all these features we recommend <a rel="nofollow" target="_blank" href="../recommended/HostMonster/" target="_blank">HostMonster</a> without any 2nd thought for all those who were looking for an affordable web hosting solution which is completely packed and reliable. We are Proud to say that TechCats is Hosted on <a rel="nofollow" target="_blank" href="../recommended/HostMonster/" target="_blank">HOSTMONSTER</a><a rel="nofollow" target="_blank" href="http://www.hostmonster.com/track/techcats/homepage" target="_blank"></a>.</p>
<p style="text-align: justify;"><em><strong>Stay Tuned by <a rel="nofollow" target="_blank" href="http://feeds2.feedburner.com/TechCats" target="_blank">Subscribing to our Feeds</a> or follow us on twitter(@<a rel="nofollow" target="_blank" href="http://twitter.com/rajkanuri" target="_blank">rajkanuri</a>) to receive coupon codes and promotional offers.</strong></em></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/how-to-install-wordpress-blog-using-simple-scripts-one-click-installer-in-hostmonster.html' rel='bookmark' title='Permanent Link: How To Install WordPress Blog Using Simple Scripts One Click Installer in HostMonster'>How To Install WordPress Blog Using Simple Scripts One Click Installer in HostMonster</a></li>
<li><a href='http://www.techcats.net/january-coupon-code-of-godaddy-to-save-30-on-domains.html' rel='bookmark' title='Permanent Link: January Coupon Code of GoDaddy To Save 30% on Domains'>January Coupon Code of GoDaddy To Save 30% on Domains</a></li>
<li><a href='http://www.techcats.net/hostgator-20-off-coupon-code-for-april-2010.html' rel='bookmark' title='Permanent Link: HostGator 20% Off Coupon Code For April 2010'>HostGator 20% Off Coupon Code For April 2010</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/techcats-host-provider-hostmonster-review-it-rocks.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How to Send Auto Responses to New Twitter Followers</title>
		<link>http://www.techcats.net/how-to-send-auto-responses-to-new-twitter-followers.html</link>
		<comments>http://www.techcats.net/how-to-send-auto-responses-to-new-twitter-followers.html#comments</comments>
		<pubDate>Mon, 16 Nov 2009 11:27:41 +0000</pubDate>
		<dc:creator>Rajesh Kanuri</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.techcats.net/how-to-send-auto-responses-to-new-twitter-followers.html</guid>
		<description><![CDATA[As I am new to twitter and social media, I really don’t know that we can send automated personalized messages to the users after following on twitter until I got a welcome message from ShoutMeLoud Harsh after following him at twitter. This made me write a guide so that you can send a personalized welcome [...]


Related posts:<ol><li><a href='http://www.techcats.net/how-to-increase-twitter-followers.html' rel='bookmark' title='Permanent Link: How to Increase Twitter Followers'>How to Increase Twitter Followers</a></li>
<li><a href='http://www.techcats.net/best-sources-available-to-send-sms-for-free-in-india.html' rel='bookmark' title='Permanent Link: Best Sources Available To Send SMS For Free in India'>Best Sources Available To Send SMS For Free in India</a></li>
<li><a href='http://www.techcats.net/do-favour-to-your-horny-friends-send-some-rubber.html' rel='bookmark' title='Permanent Link: Do Favour to Your Horny Friends Send Some Rubber'>Do Favour to Your Horny Friends Send Some Rubber</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://www.techcats.net/wp-content/uploads/2009/11/8.png"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px;" title="8" src="http://www.techcats.net/wp-content/uploads/2009/11/8_thumb.png" border="0" alt="8 thumb How to Send Auto Responses to New Twitter Followers" width="128" height="128" align="right" /></a> As I am new to twitter and social media, I really don’t know that we can send automated personalized messages to the users after following on twitter until I got a welcome message from ShoutMeLoud Harsh after following him at twitter. This made me write a guide so that you can send a personalized welcome message like “Thank You for following”. This kind of messages helps in building relationship with your new twitter followers.</p>
<div style="text-align: justify;"><span id="more-659"></span></div>
<p style="text-align: justify;">All the things you need to activate this unique feature are Twitter Account, and TweetLater Account.</p>
<blockquote style="text-align: justify;"><p><strong>How It Works and How to configure this?</strong></p></blockquote>
<ul style="text-align: justify;">
<li>
<div>First login to your Twitter account and navigate to Notices which is under settings Tab.</div>
</li>
<li>
<div>Check the box &#8220;Email when someone starts following me.&#8221; And save the settings.<a href="http://www.techcats.net/wp-content/uploads/2009/11/TwitterAccountSettings.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="Twitter Account Settings" src="http://www.techcats.net/wp-content/uploads/2009/11/TwitterAccountSettings_thumb.jpg" border="0" alt="Twitter Account Settings" width="543" height="228" /></a></div>
</li>
</ul>
<ul style="text-align: justify;">
<li>
<div>Now Login to your TweetLater account or create one you don’t have one.</div>
</li>
<li>
<div>Navigate to “Add Account” which is under Account tab.<a href="http://www.techcats.net/wp-content/uploads/2009/11/Tweetlateraccountsettings.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="Tweetlater account settings" src="http://www.techcats.net/wp-content/uploads/2009/11/Tweetlateraccountsettings_thumb.jpg" border="0" alt="Tweetlater account settings" width="411" height="340" /></a></div>
</li>
<li>
<div>Select Twitter &amp; Continue and now enter your twitter username and password.</div>
</li>
<li>
<div>Check &#8220;Automatically send a welcome message to new followers.&#8221; and enter your personal message which you would like to send to your new followers.<a href="http://www.techcats.net/wp-content/uploads/2009/11/Twwetlatersettingtosendautomatedmessgaes.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="Twwetlater setting to send automated messgaes" src="http://www.techcats.net/wp-content/uploads/2009/11/Twwetlatersettingtosendautomatedmessgaes_thumb.jpg" border="0" alt="Twwetlater setting to send automated messgaes" width="557" height="170" /></a></div>
</li>
<li>
<div>Save the settings to activate the changes.</div>
</li>
</ul>
<p style="text-align: justify;"><strong><em>For more tips on Twitter </em><a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/Techcats" target="_blank"><em>Subscribe to our Feeds</em></a><em> or follow us on Twitter (@</em><a rel="nofollow" target="_blank" href="http://twitter.com/rajkanuri" target="_blank"><em>rajkanuri</em></a><em>)</em></strong></p>


<p>Related posts:<ol><li><a href='http://www.techcats.net/how-to-increase-twitter-followers.html' rel='bookmark' title='Permanent Link: How to Increase Twitter Followers'>How to Increase Twitter Followers</a></li>
<li><a href='http://www.techcats.net/best-sources-available-to-send-sms-for-free-in-india.html' rel='bookmark' title='Permanent Link: Best Sources Available To Send SMS For Free in India'>Best Sources Available To Send SMS For Free in India</a></li>
<li><a href='http://www.techcats.net/do-favour-to-your-horny-friends-send-some-rubber.html' rel='bookmark' title='Permanent Link: Do Favour to Your Horny Friends Send Some Rubber'>Do Favour to Your Horny Friends Send Some Rubber</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techcats.net/how-to-send-auto-responses-to-new-twitter-followers.html/feed</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
