<?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>Waikhom.com &#187; Web Development</title>
	<atom:link href="http://www.waikhom.com/cat/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.waikhom.com</link>
	<description>Gadgets, Plugins, PC tools and utilities</description>
	<lastBuildDate>Sat, 14 Jan 2012 07:17:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to automate file upload in Internet Explorer using Selenium?</title>
		<link>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium</link>
		<comments>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:36:38 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1215</guid>
		<description><![CDATA[Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly [...]]]></description>
			<content:encoded><![CDATA[<p>Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly associated with Internet Explorer e.g. capturing Screenshot, file upload, etc. Here I’ll be talking about automating the file upload feature in Internet Explorer using Selenium.</p>
<p>In Firefox, you can automate file upload by simple using the “selenium.type” method over the file selector.</p>
<pre>Selenium.type("/input[@name=image_file]");</pre>
<p>However, the type method doesn’t work in Internet explorer because of security restrictions. Internet Explorer doesn’t allow you to change the value of file inputs through JavaScript. So, I did a little research on how I can automate the process in Internet Explorer. There seems to be a few solutions to this problem but none of them really solved mine because all of the solutions are for those who are not using selenium RC or are not using RC server in a remote machine. In my case, selenium RC is located in a remote machine and all my java classes in a separate controller machine. This makes it difficult to invoke autoit scripts as it is mentioned in most of the available solutions. Some of the methods I tried are:</p>
<ol>
<li><a href="http://www.google.com/search?q=selenium.attachFile" target="_blank">Using selenium.attachFIle</a>: Selenium has an api for automating file uploads and is provided as the attachFile method. However, this method is supported in Firefox only and doesn&#8217;t work with Internet Explorer.</li>
<li><a href="http://stackoverflow.com/questions/1707884/selenium-rc-how-to-upload-file-using-attachfile" target="_blank">Using native keys to type in the characters:</a> Selenium RC has apis for generating native keyboard events. This method can be used to automate keyboard events in the OS level and outside the web browser. I also tried this in Internet Explorer, but once I click the browse button and the file selector popups, selenium gets blocked and the keys could not be typed without manual intervention</li>
<li><a href="http://www.testingexcellence.com/how-to-upload-files-using-selenium-and-autoit/" target="_blank">Using AutoIT with Selenium</a>: One most popular method of automating the file upload is to use an autoit script in conjuction with selenium. However this also had it&#8217;s own problem. I couldn&#8217;t invoke the autoit script from my test script as I was running selenium RC in a remote machine. I found another interesting post about this method here &#8211; http://automationtricks.blogspot.com/2010/09/how-to-upload-file-in-selenium.html</li>
</ol>
<h3>THE FIX</h3>
<p>After a series of trials, I could finally automate the file upload scenario in Internet explorer. The fix was to upgrade my selenium from 1.x to 2.x (or webdriver). Unlike selenium 1.x, webdriver is not javascript driven and is not as restricted as javascript driven selenium 1.x. However, upgrading from 1.x to webdriver was a mess because all my test cases were then not working as expected in firefox. So, i did a little hack here to make sure web driver is used only in case of Internet explorer. Given below are the changes I made.</p>
<p>Before:</p>
<pre>DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*iexplore","http://www.example.com");
selenium.start();</pre>
<p>After:</p>
<pre>WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),DesiredCapabilities.internetExplorer());
DefaultSelenium selenium = new WebDriverBackedSelenium(driver,"http://www.example.com"));</pre>
<p>With this code change, we are now using web driver backed selenium, and because of this, the selenium.type method can be used without any security restrictions. As a result, my file upload automation was run successfully. Well, thanks to those guys working on web driver.</p>
<p>In fact, many of the limitations of selenium 1.x have been addressed by web driver and there&#8217;s a properly documented section on migrating selenium 1.x to webdriver. If you are facing any issues with selenium 1.x, you might try upgrading to web driver. More details on the upgrade process are available here &#8211; <a href="http://seleniumhq.org/docs/appendix_migrating_from_rc_to_webdriver.html" target="_blank">migrating from selenium 1.x to web driver</a>. Well, if you find anything interesting, feel free to share it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kontera and slow wordpress</title>
		<link>http://www.waikhom.com/kontera-and-slow-wordpress</link>
		<comments>http://www.waikhom.com/kontera-and-slow-wordpress#comments</comments>
		<pubDate>Mon, 24 Oct 2011 07:38:42 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1147</guid>
		<description><![CDATA[For quite some time, my blog has been slow and I finally got the time to sort this out. Using Firebug, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just [...]]]></description>
			<content:encoded><![CDATA[<p>For quite some time, my blog has been slow and I finally got the time to sort this out. Using <a href="http://getfirebug.com/" title="Get Firebug" target="_blank">Firebug</a>, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just removed the ad code and tried refreshing my page and then &#8230;oorah.. My blog is loading faster than ever before. </p>
<p>But then, what about the bucks I get from kontera? I went to their site and just checked my last quarter earnings and it was pathetic. Who&#8217;s gonna sacrifice the speed of their blog for a few bucks a quarter. Maybe i&#8217;ll try something like infolinks but not kontera. Not anymore. Well, if you have kontera and your blog is taking too much time, removing the kontera ad code is the first thing I&#8217;ll suggest you to do. And after that, you can start looking for &#8220;i like taking time to load&#8221; plugins in firebug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/kontera-and-slow-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to earn money with Squidoo!</title>
		<link>http://www.waikhom.com/how-to-earn-money-with-squidoo</link>
		<comments>http://www.waikhom.com/how-to-earn-money-with-squidoo#comments</comments>
		<pubDate>Thu, 11 Mar 2010 20:14:45 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1030</guid>
		<description><![CDATA[Squidoo is a content publishing platform and community that makes it easy for you to create &#8220;lenses&#8221; online. Lenses are web-pages created by people like us. Earlier Squidoo lenses used to be consisted of only text contents and users used to create static pages for promoting their sites. But now, Squidoo has evolved into a [...]]]></description>
			<content:encoded><![CDATA[<p>Squidoo is a content publishing platform and community that makes it easy for you to create &#8220;lenses&#8221; online. Lenses are web-pages created by people like us. Earlier Squidoo lenses used to be consisted of only text contents and users used to create static pages for promoting their sites. But now, Squidoo has evolved into a new generation platform which has integrated system for users to earn money directly from Squidoo. Squidoo has many features and modules from which users can earn money like amazon, ebay, textlinkads, etc. Today, we&#8217;ll have a look at how you can earn money from your squidoo lenses without even having your own website or ebay account.</p>
<p>I just created a squidoo lens on <a href="http://www.myipproxylist.com">proxy sites</a> just to promote my sites. But I found out that squidoo has lots and lots of stuffs from which you can earn constantly. If you go to the <a href="http://www.squidoo.com/proxy_sites">proxy sites</a> lens on squidoo, you will find out a section which consists of amazon products for sale. When some reader clicks on this sale and buy it, Squidoo earns the commission from amazon and shares its earnings with you. Similarly, there are other  modules like Ebay, donations, etc. which can let you earn commissions when users buy through your lens.</p>
<p>So, how do you earn from squidoo? All you have to do is to have a Paypal account. Create a Squidoo lens on some topic and add the modules amazon, ebay and donations. Now, you can start promoting your squidoo lens by sharing it with your fiends on digg, stumbleupon, twitter, etc. The more visitors you have, the more earnings you will have. So, try it out and start earning online. Well, its all for free, so you don&#8217;t have to worry at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-earn-money-with-squidoo/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Namecheap Coupon Code for January 2009</title>
		<link>http://www.waikhom.com/namecheap-coupon-code-for-january-2009</link>
		<comments>http://www.waikhom.com/namecheap-coupon-code-for-january-2009#comments</comments>
		<pubDate>Thu, 01 Jan 2009 22:11:17 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[free online coupons]]></category>
		<category><![CDATA[namecheap coupons]]></category>
		<category><![CDATA[online coupon codes]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=970</guid>
		<description><![CDATA[Happy New Year to You All! With the coming of 2009, the coupon code of namecheap has changed and you need a new coupon code for buying domains at namecheap.com. So, I&#8217;m bringing you the latest coupon code for namecheap and is for the whole month of January 2009. Well, this coupon will help you [...]]]></description>
			<content:encoded><![CDATA[<p>Happy New Year to You All! With the coming of 2009, the coupon code of namecheap has changed and you need a new coupon code for buying domains at namecheap.com. So, I&#8217;m bringing you the latest coupon code for namecheap and is for the whole month of January 2009. Well, this coupon will help you buy your domains at a reduced price of $8.81 instead of its original price of $9.69. The coupon code for January is given below:<br />
Coupon code: <strong>HAPPY2009</strong><br />
Expires on: <strong>31st Jan 2009</strong><br />
Hope this helps you guys save your money while buying your domains from namecheap. Enjoy <img src='http://www.waikhom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/namecheap-coupon-code-for-january-2009/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 25 Essential WordPress Plugins for wordpress 2.7</title>
		<link>http://www.waikhom.com/top-25-essential-wordpress-plugins-for-wordpress-27</link>
		<comments>http://www.waikhom.com/top-25-essential-wordpress-plugins-for-wordpress-27#comments</comments>
		<pubDate>Wed, 17 Dec 2008 14:55:35 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=825</guid>
		<description><![CDATA[Top 25 essential wordpress plugins or Top 20 wordpress plugins or wordpress plugins have always been a topic of question for many bloggers using the wordpress platform. At this moment there are around 3550 wordpress plugins out of which you wouldn’t possibly use more than 40 at most. But which 40 plugins will you choose [...]]]></description>
			<content:encoded><![CDATA[<p>Top 25 essential wordpress plugins or Top 20 wordpress plugins or wordpress plugins have always been a topic of question for many bloggers using the wordpress platform. At this moment there are around 3550 wordpress plugins out of which you wouldn’t possibly use more than 40 at most. But which 40 plugins will you choose amongst these numerous plugins will depend on your blog’s nature and topic. However, there are a few plugins which are needed by almost every pro blogger. I know that such lists have been made by a number of bloggers before too but here I’m sharing a list which is much different from those existing ones. Here, I have taken into consideration a number of factors – importance, generality, usefulness, easy to use, functionality, etc. Besides, maybe this list is the first list of wordpress plugins which will all work with wordpress 2.7. So, if you are using wordpress 2.7, you can install these plugins with ease.<span id="more-825"></span></p>
<p>And lastly, I’ve given a very easy way to install these plugins one at a time. No need to download each and every plugin. Just read the instructions given at the bottom of this post and you will be able to install these plugins within 5 minutes.<br />
Now, let’s have a look at the top 25 essential wordpress plugins:</p>
<ol>
<li><strong> Adsense Manager</strong>:  An Ad Manager which saves the codes of all your ad networks like <a href="http://www.adsense.com" target="_blank">Adsense</a>, <a href="http://waikhom.com/out/adbrite" target="_blank">Adbrite</a>, <a href="http://waikhom.com/out/cj" target="_blank">Commission Junction</a>, <a href="http://waikhom.com/out/crispads" target="_blank">CrispAds</a>, <a href="http://waikhom.com/out/shoppingads" target="_blank">ShoppingAds</a>, <a href="http://ypn.yahoo.com" target="_blank">Yahoo! PN</a>, <a href="http://waikhom.com/out/widgetbucks" target="_blank">WidgetBucks</a>, <a href="http://waikhom.com/out/bidvertiser" target="_blank">Bidvertiser</a>, or any HTML code. It is easy to use and adds an ad selector in your blog&#8217;s text editor. The ad codes can be easily called within posts or in template files.</li>
<li><strong>Akismet</strong>: WordPress&#8217;s spam protection plugin. Checks comments to your blog for spams.</li>
<li><strong>All in One SEO Pack</strong>: Adds options for customizing the title, meta description, meta keywords, etc. of your blog or posts or categories or tags pages for SEO.</li>
<li><strong>Feedburner FeedSmith</strong>: Redirects all your RSS subscribers and Links to your feed at feedburner thereby increasing your feedburner rss subscribers&#8217; count.</li>
<li><strong>Get Recent Comments:</strong> Lists recent comments with fully customizable template.</li>
<li><strong>Google XML Sitemaps:</strong> Creates a dynamically created google compliant Sitemap of your blog. Any new post or page created will be automatically added into the sitemap. Good for SEO.</li>
<li><strong>MyAdManager:</strong> Ad manager for selling 125&#215;125 adspaces in your blog with paypal payment form.</li>
<li><strong>My Page Order:</strong> Adds a drag and drop feature for arranging the order of pages in your blog.</li>
<li><strong>NextGEN Gallery:</strong> A highly advanced Gallery. User can add a number of galleries with images which can be easily viewed through its own slideshow widget and picture viewers.</li>
<li><strong>Plugin Central:</strong> A very useful plugin which can directly install any plugin provided its name or link to zip file is known.</li>
<li><strong>Revision Control:</strong> Limit or manage the revisions of your posts.</li>
<li><strong>runPHP:</strong> Allows the user to add a PHP code within the post and run it dynamically.</li>
<li><strong>Simple Tags:</strong> A complete solution for tag management with features like mass tag edit, auto tags, tag suggestion from yahoo, etc.</li>
<li><strong>Subscribe To Comments:</strong> Adds a check option for subscribing to comments in a every post.</li>
<li><strong>Top Commentators Widget:</strong> Displays the top commentators in your blog.</li>
<li><strong>Viper&#8217;s Video Quicktags:</strong> A very useful plugin for integrating youtube, googlevideo and many other video features to your blog.</li>
<li><strong>WordPress.com Stats:</strong> Displays your blog statistics from wordpress.com in real time.</li>
<li><strong>WordPress Automatic Upgrade:</strong> Allows automatic upgrade of your wordpress version.</li>
<li><strong>WordPress Database Backup:</strong> Back up your database and download the backup or configure it to send regular backups of your blog to your email.</li>
<li><strong>WordPress Thread Comment:</strong> Adds a feature of replying to comments made by other people.</li>
<li><strong>WP-PageNavi:</strong> Adds a page navigation to your wordpress blog.</li>
<li><strong>WP-Polls:</strong> Enables you to add polls to your post with WP-Polls.</li>
<li><strong>WP-PostRatings:</strong> Adds a star rating feature into your blog.</li>
<li><strong>WP Super Cache:</strong> Caches the posts and pages into static pages for faster loading.</li>
<li><strong>Yet Another Related Posts Plugin:</strong> Displays a number of posts related to a particular post/page.</li>
</ol>
<p><span style="float:right"><script language="JavaScript" type="text/javascript">
<!--
var bordercolor="000000";
var bgcolor="ffffff";
var linkcolor="005EBF";
var hovercolor="005EBF";
var darkfont="000000";
var lightfont="666666";
var desctext="000000";
var pricefont="000000";
var userid="5010";
var adtype="multi";
var adsize = 32;
var fontfamily = "verdana, tahoma";
var ttz = 1;
var channel = 6261;
var keyword= "make money online, earn money, blogging";
var PID= "";
var PID2= "";
var PID3= "";
var PID4 = "";
var altcontent = "%3Cscript%20type%3D%22text/javascript%22%3E%3C%21--%0Ashoppingads_ad_client%20%3D%20%22ffb0d226da5d91f163ec%22%3B%0Ashoppingads_ad_campaign%20%3D%20%22default%22%3B%0Ashoppingads_ad_width%20%3D%20%22300%22%3B%0Ashoppingads_ad_height%20%3D%20%22250%22%3B%0Ashoppingads_ad_kw%20%3D%20%20%22computers%3Bphones%3Bmp3_players%3Bgadgets%3Blaptops%22%3B%0Ashoppingads_color_border%20%3D%20%20%22FFFFFF%22%3B%0Ashoppingads_color_bg%20%3D%20%20%22FFFFFF%22%3B%0Ashoppingads_color_heading%20%3D%20%20%2200A0E2%22%3B%0Ashoppingads_color_text%20%3D%20%20%22000000%22%3B%0Ashoppingads_color_link%20%3D%20%20%22008000%22%3B%0Ashoppingads_attitude%20%3D%20%22etched%22%3B%0Ashoppingads_options%20%3D%20%20%22n%22%3B%0A--%3E%3C/script%3E%0A%3Cscript%20type%3D%22text/javascript%22%20src%3D%22http%3A//ads.shoppingads.com/pagead/show_sa_ads.js%22%3E%0A%3C/script%3E%0A";
-->
</script>
<script src="http://www.ttzmedia.com/affiliate/ttz_ad.js" language="JavaScript"></script></span>Now, you have the list of the top 25 essential wordpress plugins but would you waste 5 minutes for installing each of these 25 plugins manually? No, you can install these plugins all at once with one easy step. To install the plugins at once, read <a title="How to install many wordpress plugins at once" href="http://waikhom.com/how-to-install-many-wordpress-plugins-at-once-using-plugin-central" target="_blank">How to install many plugins at once</a>. After you have installed Plugin Central, copy and paste the following list of plugin names and urls in the specified field in plugin central&#8217;s options page and your installation of the above plugins will be completed within a few minutes.</p>
<blockquote><p>AdSense Manager<br />
Akismet<br />
All in One SEO Pack<br />
cforms<br />
Get Recent Comments<br />
Google XML Sitemaps<br />
MyAdManager<br />
My Page Order<br />
Revision Control<br />
runPHP<br />
Simple Tags<br />
Subscribe To Comments<br />
Top Commentators Widget<br />
Viper&#8217;s Video Quicktags<br />
WordPress.com Stats<br />
Wordpress Automatic Upgrade<br />
WordPress Database Backup<br />
Wordpress Thread Comment<br />
WP Super Cache<br />
Yet Another Related Posts Plugin</p>
<p>http://downloads.wordpress.org/plugin/nextgen-gallery.zip</p>
<p>http://downloads.wordpress.org/plugin/wp-pagenavi.2.40.zip</p>
<p>http://downloads.wordpress.org/plugin/wp-polls.2.40.zip</p>
<p>http://downloads.wordpress.org/plugin/wp-postratings.1.40.zip</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/top-25-essential-wordpress-plugins-for-wordpress-27/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Install many wordpress plugins at once using plugin central!</title>
		<link>http://www.waikhom.com/how-to-install-many-wordpress-plugins-at-once-using-plugin-central</link>
		<comments>http://www.waikhom.com/how-to-install-many-wordpress-plugins-at-once-using-plugin-central#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:04:56 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[free wordpress plugins]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=880</guid>
		<description><![CDATA[There are many wordpress plugins out there which you might be interested in. But installing them all might be a big problem &#8211; download and then upload and then activate. Today, I&#8217;m here to share a technique which will allow you to install all such wordpress plugins at once. Using the plugin central plugin, you [...]]]></description>
			<content:encoded><![CDATA[<p>There are many wordpress plugins out there which you might be interested in. But installing them all might be a big problem &#8211; download and then upload and then activate. Today, I&#8217;m here to share a technique which will allow you to install all such wordpress plugins at once. Using the plugin central plugin, you can install many wordpress plugins in one simple step provided you know the plugin name or plugin url. And I&#8217;m going to teach you how to do that. But first of all you need to <a href="http://wordpress.org/extend/plugins/Plugin-Central" target="_blank">install the plugin &#8211; Plugin central</a> and activate it (If you don&#8217;t know how to install a wordpress plugin, see <a title="How to install a wordpress plugin" href="http://codex.wordpress.org/Managing_Plugins#Plugin_Installation" target="_blank">how to install a wordpress plugin!</a>). Once you have installed this plugin, you are ready to install the many plugins in a few simple steps:<span id="more-880"></span></p>
<h2>Steps to Install many wordpress plugins at once using plugin central:</h2>
<ol>
<li>Log into your wordpress admin control panel.</li>
<li>Goto Plugins-&gt;Plugin Central.<br />
<img class="alignnone size-full wp-image-881" title="Go to Plugin Central" src="http://waikhom.com/wp-content/uploads/2008/12/plugin_central_option.jpg" alt="Go to Plugin Central" /></li>
<li>In the Plugin Central Options page, enter all the names or urls of the wordpress plugins you want to install int the field provided and click install.<a href="http://waikhom.com/wp-content/uploads/2008/12/plugin_central_install_big.jpg"><img class="alignnone size-full wp-image-882" title="Plugin central Options page" src="http://waikhom.com/wp-content/uploads/2008/12/plugin_central_install.jpg" alt="Plugin central Options page" /></a></li>
<li>Now, goto plugins page and activate all the plugins by using the bulk update feature.</li>
<li>If some plugins can&#8217;t be installed enter their download urls and the plugin will be installed.</li>
</ol>
<p>And that’s it! Any number of plugins can be installed at once by following the above steps. Well, hope that helps. And if there&#8217;s any problem you got there, feel free to leave a comment here. <img src='http://www.waikhom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-install-many-wordpress-plugins-at-once-using-plugin-central/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top proxy keywords with low competition</title>
		<link>http://www.waikhom.com/top-proxy-keywords-with-low-competition</link>
		<comments>http://www.waikhom.com/top-proxy-keywords-with-low-competition#comments</comments>
		<pubDate>Wed, 10 Dec 2008 10:17:34 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[proxy]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=758</guid>
		<description><![CDATA[Making money online with proxy sites is easier if you have a good keyword(s) for which you can optimize your site. The most important reason you should optimize your site for search engines is because search engine traffic is much better than traffic from other sites. Your ads will be clicked more and you will [...]]]></description>
			<content:encoded><![CDATA[<p>Making money online with <a href="http://www.myipproxylist.com">proxy sites</a> is easier if you have a good keyword(s) for which you can optimize your site. The most important reason you should optimize your site for search engines is because search engine traffic is much better than traffic from other sites. Your ads will be clicked more and you will earn more. But if you are running a proxy script and not a proxy related site (e.g. Proxy list, proxy server list etc.), then I recommend not to go for SEO. Because proxies get blocked with time and one day, yours will be too. That day, you will have to start with a new domain but all the efforts you put in your old domain in SEO will be wasted. Now, if you are running a site which gives information about proxies, then the best thing to do is optimize your site with one or more keywords.<span id="more-758"></span></p>
<p>There are many proxy keywords which are searched in hundreds everyday but the problem you will face is that in many of these keywords, high PR websites have topped the list and therefore, it will be hard for you to get a good Search Engine Ranking. So, finally the problem comes down to finding a good keyword(s) for your proxy site. If you choose the proxy keyword wisely, it would be much easier to top in the search engine results page thereby maximizing your revenues.</p>
<p>The search for good keywords is the tough part. Many people are even selling good keywords for high price. This is because searching keywords takes time, skill and many more. But today, I’m going to share some keywords that I searched for my own proxies. Just so you know, I have been searching a lot about proxies and I’m going to use these keywords for optimizing my sites. But the thing is that there are still places and positions in the results that you can occupy – maybe better or worse than mine. Now, let’s see the keywords listed below.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="300" height="250" id="adbrite_300_250" align="right" style="border:1px solid #4c44b2">
	<param name="allowScriptAccess" value="sameDomain" />
	<param name="allowFullScreen" value="false" />
	<param name="movie" value="http://waikhom.com/wp-content/uploads/2008/12/adbrite_300_250.swf00_250.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />	<embed src="http://waikhom.com/wp-content/uploads/2008/12/adbrite_300_250.swf" quality="high" bgcolor="#ffffff" width="300" height="250" name="adbrite_300_250" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<ul>
<li>Proxy sites</li>
<li>Proxys</li>
<li>School proxy</li>
<li>URL Proxy</li>
<li>Proxy bypass</li>
<li>Proxy site</li>
<li>New Proxy</li>
<li>Free proxy server</li>
<li>Free proxy list</li>
<li>Anonymous proxies</li>
<li>Free web proxy</li>
<li>Free anonymous proxy</li>
<li>orkut proxy</li>
<li>proxy host</li>
</ul>
<p>* The above list is arranged in <strong>DESCENDING ORDER of SEARCH VOLUMES</strong> as per details given by Google adwords keyword tool.</p>
<p>** Clicking them will show the Google search page for that keyword.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/top-proxy-keywords-with-low-competition/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Namecheap Coupon Codes for December 2008</title>
		<link>http://www.waikhom.com/namecheap-coupon-codes-for-december-2008</link>
		<comments>http://www.waikhom.com/namecheap-coupon-codes-for-december-2008#comments</comments>
		<pubDate>Thu, 04 Dec 2008 06:55:27 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[free online coupons]]></category>
		<category><![CDATA[namecheap coupons]]></category>
		<category><![CDATA[online coupon codes]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=734</guid>
		<description><![CDATA[November 2008 has started and along with that namecheap’s old coupon code &#8211; FIRSTSNOW won’t be working anymore. You need a new coupon code to buy your domains at reduced prices. Once again, I’m sharing this coupon with you. This coupon will help you buy your domains at a reduced price of $8.41 instead of [...]]]></description>
			<content:encoded><![CDATA[<p>November 2008 has started and along with that namecheap’s old coupon code &#8211; <strong>FIRSTSNOW </strong>won’t be working anymore. You need a new coupon code to buy your domains at reduced prices. Once again, I’m sharing this coupon with you. This coupon will help you buy your domains at a reduced price of $8.41 instead of its original price of $9.29. The coupon code for july is given below:<br />
Coupon code: <strong></strong><strong>THREEKINGS</strong><br />
Expires on: <strong>31st Dec 2008</strong><br />
Hope this helps you guys save your money while buying your domains from namecheap. Cheers <img class="wp-smiley" src="../wp-includes/images/smilies/icon_smile.gif" alt=":)" /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/namecheap-coupon-codes-for-december-2008/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GT White theme for Glype Proxy</title>
		<link>http://www.waikhom.com/gtwhite-theme-for-glype-proxy</link>
		<comments>http://www.waikhom.com/gtwhite-theme-for-glype-proxy#comments</comments>
		<pubDate>Wed, 03 Dec 2008 15:15:41 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[proxy]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=716</guid>
		<description><![CDATA[This theme for glype proxy is a simple but properly optimized proxy theme. This theme has been made with three important factors in mind – speed, revenue and attractiveness. Aimed at higher speed or fast loading, this theme doesn’t contain unnecessary images and code is minimal. The ads are placed in some of the most [...]]]></description>
			<content:encoded><![CDATA[<p>This theme for glype proxy is a simple but properly optimized proxy theme. This theme has been made with three important factors in mind – speed, revenue and attractiveness. Aimed at higher speed or fast loading, this theme doesn’t contain unnecessary images and code is minimal. The ads are placed in some of the most clicked positions and will increase your revenue. Finally, even though the theme has the minimal code you can ever imagine it looks great and is user friendly. This is the first theme I’ve released and there may be some errors and mistakes and I hope you will share those with me.<span id="more-716"></span></p>
<p><a href="http://waikhom.com/out/download-gtwhite">Download This Theme</a> | <a href="http://demo.myspacenewproxy.com" target="_blank">Demo</a><a href="http://waikhom.com/wp-content/uploads/2008/12/gtwhite-snapshot.gif"></p>
<p><a href="http://waikhom.com/wp-content/uploads/2008/12/gtwhite-snapshot.gif"><img src="http://waikhom.com/wp-content/uploads/2008/12/gtwhite-snapshot-600x724.gif" alt="" title="gtwhite-snapshot" width="600" height="724" class="alignnone size-medium wp-image-729" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/gtwhite-theme-for-glype-proxy/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Namecheap Coupon Codes for November 2008</title>
		<link>http://www.waikhom.com/namecheap-coupon-codes-for-november-2008</link>
		<comments>http://www.waikhom.com/namecheap-coupon-codes-for-november-2008#comments</comments>
		<pubDate>Sat, 08 Nov 2008 21:37:03 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[free online coupons]]></category>
		<category><![CDATA[namecheap coupons]]></category>
		<category><![CDATA[online coupon codes]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=302</guid>
		<description><![CDATA[With the coming of november, namecheap’s old coupon code &#8211; INDIANSUMMER won&#8217;t be working anymore. You need a new coupon code to buy your domains at reduced prices. Once again, I’m sharing this coupon with you. This coupon will help you buy your domains at a reduced price of $8.41 instead of its original price [...]]]></description>
			<content:encoded><![CDATA[<p>With the coming of november, namecheap’s old coupon code &#8211; <strong>INDIANSUMMER</strong> won&#8217;t be working anymore. You need a new coupon code to buy your domains at reduced prices. Once again, I’m sharing this coupon with you. This coupon will help you buy your domains at a reduced price of $8.41 instead of its original price of $9.29. The coupon code for November is given below:<br />
Coupon code: <strong>FIRSTSNOW</strong><br />
Expires on: <strong>31st nov 2008</strong><br />
Hope this helps you guys save your money while buying your domains from namecheap. Cheers <img src='http://www.waikhom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/namecheap-coupon-codes-for-november-2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

