<?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>Quick Online Tips (QOT) &#187; Domain Hosting</title>
	<atom:link href="http://www.quickonlinetips.com/archives/category/domain-hosting/feed/" rel="self" type="application/rss+xml" />
	<link rel="hub"  href="http://quickonlinetips.superfeedr.com/" xmlns="http://www.w3.org/2005/Atom" />
        <link>http://www.quickonlinetips.com</link>
	<description>Technology News, Blogging Tips, Guestblogging, Social Media</description>
	<lastBuildDate>Sat, 26 May 2012 06:56:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to Hide PHP Version in Site HTTP Headers</title>
		<link>http://www.quickonlinetips.com/archives/2012/05/hide-php-version-in-site-headers/</link>
		<comments>http://www.quickonlinetips.com/archives/2012/05/hide-php-version-in-site-headers/#comments</comments>
		<pubDate>Sat, 26 May 2012 06:50:47 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=26435</guid>
		<description><![CDATA[You must hide PHP version of your server in site headers for better site security. It is essential that you keep your PHP version updated...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/security/" title="View all posts in Security" rel="category tag">Security</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2012/05/hide-php-version-in-site-headers/&t=How to Hide PHP Version in Site HTTP Headers" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=How to Hide PHP Version in Site HTTP Headers - http://www.quickonlinetips.com/archives/?p=26435 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>You must hide PHP version of your server in site headers for better site security. It is essential that you keep your PHP version updated on your server as newer versions help to fix security bugs, besides getting new features. I found that even after you <a href="http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/">turn off server signature</a> to hide server details and your Apache version, the X-Powered by PHP version still appears in the site headers.</p>
<p>For example, if you simply <a href="http://www.whatsmyip.org/http-response-headers/" target="_blank">check site headers</a> of some site, you will get X-powered-By: PHP/5.3.10</p>
<p><img class="alignnone size-full wp-image-26526" title="hide-php" src="http://www.quickonlinetips.com/archives/wp-content/uploads/hide-php.png" alt="hide php version" width="351" height="76" /></p>
<p>While you thought only you could <a href="http://www.quickonlinetips.com/archives/2009/04/find-server-php-version/">find PHP version</a> of your server, or needed a <a href="http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/">PHP version plugin</a>, now you see how easy it is for anyone to see your server details. And hackers can easily find out <em>known</em> security holes of that version and attack your server.</p>
<h3>Hide PHP version</h3>
<p>So how to hide PHP version. Servers display the PHP version by default due to <a href="http://www.php.net/manual/en/ini.core.php#ini.expose-php" target="_blank">expose_php</a>, a core PHP.ini configuration directive. So you need to turn it off.</p>
<ul>
<li>Login to your server via FTP. I use <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> FTP Client.</li>
<li>Find <strong>php.ini</strong> file on your server. Usually the global php.ini is located in <em>/usr/local/lib/php.ini</em> (but can vary depending on your server configuration and PHP installation. Check your hosting level for access and permissions)</li>
<li>Save a backup copy of your php.ini file (in case something goes wrong, restore it)</li>
<li>php.ini is a simple text file and can be edited in any text editor like Notepad. Add the line<br />
<em style="color: #ff0000;">expose_php = off</em></li>
<li>Save the php.ini file and upload to same location (do not save as .txt).</li>
</ul>
<p>Now check your site headers check and you will find the entry of X-powered-by: PHP/[ version] will disappear. This is helpful as it does not expose your old PHP version on the server to known security holes and prevents hackers from getting secure server information.</p>
<p><span style="color: #ff0000;"><strong>NOTE</strong></span>: It&#8217;s a bad idea to mess with your php.ini file. If you don&#8217;t have sufficient technical expertise, and can&#8217;t fix it yourself, ask your web hosting service support to fix it for you easily.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2007/01/security-update-everyone-knows-your-wordpress-version/" >Security Update: Hide Your WordPress Version!</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/04/find-server-php-version/" >How to Find PHP Version of Hosting Server</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2006/02/how-to-hide-remove-blogger-navbar/" >How to Hide, Disable, Remove Blogger Navbar</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2007/04/want-to-hide-your-feedburner-feed-count/" >How to Hide Your Feedburner Feed Count</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2012/05/hide-php-version-in-site-headers/" title="How to Hide PHP Version in Site HTTP Headers">How to Hide PHP Version in Site HTTP Headers</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2012/05/hide-php-version-in-site-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn Off Server Signature for Better Server Security</title>
		<link>http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/</link>
		<comments>http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/#comments</comments>
		<pubDate>Fri, 18 May 2012 06:54:33 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=26375</guid>
		<description><![CDATA[Do you turn off server signature for better site security? Just like you turned off the visibility of your WordPress version, why do you want...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/security/" title="View all posts in Security" rel="category tag">Security</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/search-engine-optimization/" title="View all posts in SEO" rel="category tag">SEO</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/&t=Turn Off Server Signature for Better Server Security" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Turn Off Server Signature for Better Server Security - http://www.quickonlinetips.com/archives/?p=26375 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>Do you turn off server signature for better site security? Just like you turned off the visibility of your WordPress version, why do you want hackers to know about your server signature which clearly displays your private server details like your Apache version.</p>
<h3>Server Signature</h3>
<p>It is very easy for anyone to view your Apache versions and other installed critical software on your server, and if you don&#8217;t upgrade your server software like Apache to the latest versions, and fail to fix security issues which these upgrades fix, then you don&#8217;t want anyone online to be aware about your server details. Any simple online tool will show <a href="http://www.whatsmyip.org/http-response-headers/" target="_blank">HTTP site headers</a> of any site. This is a sample site I checked.</p>
<p><img class="alignnone size-full wp-image-26385" title="server-signature-on" src="http://www.quickonlinetips.com/archives/wp-content/uploads/server-signature-on.png" alt="server signature on" width="404" height="81" /></p>
<p>As you can see it is very easy to see all the server details, and hackers can get a good idea about servers which haven&#8217;t been upgraded to the latest software versions, which means to say that your server is not adequately patched with security fixes and is prone to hacking.</p>
<h3>Turn off server signature</h3>
<p>So if you want to quickly check if your site hosting server is revealing your server signature to the world, simply use this site to <a href="http://www.seositecheckup.com/server_signature-url-quickonlinetips.com.htm" rel="nofollow" target="_blank">check server signature</a>  and you can find out if your server signature is off. It is a good idea to turn off your server signature for better site security.</p>
<p><img class="alignnone size-full wp-image-26389" title="check-server-signature" src="http://www.quickonlinetips.com/archives/wp-content/uploads/check-server-signature.png" alt="check server signature" width="402" height="114" /></p>
<p>How do you turn off server signature? Well we got our <a href="http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/">amazing hosting service</a> provider <a href="http://www.quickonlinetips.com/archives/tag/knownhost/">Knownhost</a> to fix the issue. Our hosting service fixed the issue after we sent them an support request quickly. Probably if you are an expert in managing servers (like many amazing QOT readers!), you can fix it yourself.</p>
<p>They informed me that they added the following values in the Apache configuration file to switch off the Server Signature.<br />
<em>ServerSignature Off</em><br />
<em>ServerTokens ProductOnly</em></p>
<p>If you login to WHM  &gt; Service Configuration &gt; Apache Configuration</p>
<p><img class="alignnone size-full wp-image-26431" title="server-signature-options" src="http://www.quickonlinetips.com/archives/wp-content/uploads/server-signature-options.png" alt="server signature options" width="443" height="152" border="1" /></p>
<p>Now with the server signature off, see how your HTTP site headers will look like.if</p>
<p><img class="alignnone size-full wp-image-26386" title="server-signature-off" src="http://www.quickonlinetips.com/archives/wp-content/uploads/server-signature-off.png" alt="server signature off" width="299" height="77" /></p>
<p>I just browsed the server details of several top websites, surprisingly which are running on very old software versions! So what are you waiting for, if  went ahead to <a href="http://www.quickonlinetips.com/archives/2007/01/security-update-everyone-knows-your-wordpress-version/">hide WordPress version</a>, then you should go ahead and switch off server signature right now for better server security and site safety.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2006/04/feedburner-feed-email-signature-animator/" >Feedburner Feed Email Signature Animator</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2010/02/how-to-turn-off-google-buzz/" >How to Turn Off Google Buzz</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2011/02/display-latest-tweets-in-email-signature/" >How to Display Latest Tweets in Your Email Signature</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2012/04/apple-unboxing-perfume/" >Apple MacBook Pro Unboxing Scent Becomes Signature Perfume</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/" title="Turn Off Server Signature for Better Server Security">Turn Off Server Signature for Better Server Security</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2012/05/turn-off-server-signature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Ends Search Traffic to Parked Domain Names</title>
		<link>http://www.quickonlinetips.com/archives/2011/12/google-traffic-ends-parked-domain-names/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/12/google-traffic-ends-parked-domain-names/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 12:08:54 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=22418</guid>
		<description><![CDATA[A new Google algorithm update heralds the end of Google traffic to parked domain names. Many domainers and webmasters usually park hundreds of keyword rich...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/search-engine-optimization/" title="View all posts in SEO" rel="category tag">SEO</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/12/google-traffic-ends-parked-domain-names/&t=Google Ends Search Traffic to Parked Domain Names" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Google Ends Search Traffic to Parked Domain Names - http://www.quickonlinetips.com/archives/?p=22418 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>A new Google algorithm update heralds the end of Google traffic to<strong> parked domain names</strong>. Many domainers and webmasters usually park hundreds of keyword rich domain names and monetize them through advertising programs like GoDaddy Cash Parking and Google Adsense for Domains.</p>
<p>Google Search has revealed that this <a href="http://insidesearch.blogspot.com/2011/12/search-quality-highlights-new-monthly.html">new update</a> brings in a new classifier which will affect parked domain traffic.</p>
<blockquote><p><strong>New “parked domain” classifier:</strong> This is a new algorithm for automatically detecting parked domains. Parked domains are placeholder sites that are seldom useful and often filled with ads. They typically don’t have valuable content for our users, so in most cases we prefer <strong><em>not to show them</em></strong>.</p></blockquote>
<p>A <strong>parked domain name</strong> displays a temporary web page when people type your domain name in a web browser. People usually park domain names till they decide to create a website, find a hosting provider, or simply to hold and sell domain names later. Till then most decide to make money online with the page, which might draw some Google traffic at least.</p>
<p><img class="alignnone size-full wp-image-22430" title="godaddy-cashparking1" src="http://www.quickonlinetips.com/archives/wp-content/uploads/godaddy-cashparking1.png" alt="godaddy cashparking " width="400" height="318" /></p>
<p>If you look around at parked domain names, typically they are keyword rich for targeting specific traffic and have no useful content. Moreover, while the domain is parked, domain owners decide to install advertising programs, which also brings in advertising revenue on the side. Since the parked domain page is full of ads only, there is a high chance the visitor who reaches such a page will click through and make money for the domain owner.</p>
<p>Many domain name registrars offer domain parking monetization services. <a href="http://www.quickonlinetips.com/archives/2006/06/godaddy-cashparking-earn-money-from-parked-domain-names/">GoDaddy Cash Parking</a> is a service from Godaddy domain registrar, which displays ads on parked domains and domain owners can earn 60-80% of the ad revenue. They charge $4-$5 per month for the basic plan service. <a href="http://www.quickonlinetips.com/archives/2006/04/google-adsense-for-parked-domain-names/">Google Adsense for Domains</a> is another free popular program by Google, where domain owners can display Adsense ads on their parked domain names to earn free money.</p>
<p><em>Now Google is set to change all that</em> &#8230; and parked domain names will get much lower search engine traffic it seems. This will seriously affect all domain parking income for people who target this monetization strategy.  What are your thoughts?</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2006/04/google-adsense-for-parked-domain-names/" >Google Adsense for Parked Domain Names</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2006/06/godaddy-cashparking-earn-money-from-parked-domain-names/" >GoDaddy CashParking: Earn Money from Parked Domain Names</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/01/buy-in-domain-names-from-godaddy/" >Now Buy .IN Domain Names from Godaddy</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2006/03/free-5-info-domain-names-at-11-web-hosting/" >Free 5 .info Domain Names Deal</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/12/google-traffic-ends-parked-domain-names/" title="Google Ends Search Traffic to Parked Domain Names">Google Ends Search Traffic to Parked Domain Names</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/12/google-traffic-ends-parked-domain-names/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Google Offers Free Domain Name, Free Hosting to India Businesses</title>
		<link>http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 18:16:38 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=22112</guid>
		<description><![CDATA[Google India has partnered with Hostgator India to offer free .in domain names and free hosting for business websites in India.  Named ‘India Get Your Business...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/india/" title="View all posts in India" rel="category tag">India</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/tips/" title="View all posts in Tips" rel="category tag">Tips</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/&t=Google Offers Free Domain Name, Free Hosting to India Businesses" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Google Offers Free Domain Name, Free Hosting to India Businesses - http://www.quickonlinetips.com/archives/?p=22112 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>Google India has <a href="http://googleindia.blogspot.com/2011/11/google-offers-free-websites-to-indian.html" target="_blank">partnered</a> with Hostgator India to offer free .in domain names and free hosting for business websites in India.  Named ‘<strong><a href="http://www.indiagetonline.in/" target="_blank">India Get Your Business Online</a></strong>’, this pioneering program offers free websites, domain and hosting services to small medium businesses (SMBs) in India.</p>
<h3>Free Domain Name Hosting to India SMBs</h3>
<p><img src="http://www.quickonlinetips.com/archives/wp-content/uploads/getting-business-online.png" alt="India business online" title="getting-business-online" width="227" height="170" class="alignright size-full wp-image-22116" />Their goal is host 500,000 small medium businesses in India in next three years through this program. They offer Indian businesses a free, easy-to-build professional website (within 15 minutes), with free .in domain name and hosting for one year, free email addresses (Google Apps account) and free 365 days support. HostGator will also offer free support in creating, hosting and managing the website for 1 year via its toll free call centers 1800-266-3000. They also offer a free coupon of Rs. 2500 INR for Adwords advertising to promote your site.</p>
<p><iframe src="http://www.youtube.com/embed/LQuutGqI3MA" frameborder="0" width="500" height="284"></iframe></p>
<p>What is surprising is that though India has appox 8 million small medium businesses, only about 5% have a website! If you own a small business in India, this is a good offer for SMBs to get their brand online for free. You can always cancel and decide to continue to maintain your brand presence after a year for a fee.</p>
<p>They have also posted some success story videos of sites using the service</p>
<p><iframe width="500" height="284" src="http://www.youtube.com/embed/7HCxdqr0FQ4" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="500" height="284" src="http://www.youtube.com/embed/qL7_APwRDRQ" frameborder="0" allowfullscreen></iframe></p>
<p>See for yourself what <a href="http://www.vijashiviinternational.in/" target="_blank" rel="nofollow">vijashiviinternational.in</a> or <a href="http://www.khoslaprinters.in/" rel="nofollow" target="_blank">khoslaprinters.in</a> look like.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2007/10/dreamhost-offers-free-web-hosting-for-lunarpages-users/" >Dreamhost Offers Free Web Hosting for Lunarpages Users</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2007/03/free-dreamhost-domain-transfers-and-hosting-for-registerfly-refugees/" >Free Dreamhost Domain Transfers and Hosting for Registerfly Refugees</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/04/free-geocities-hosting/" >Free Domain, Free Hosting Deal for Geocities Users!</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2005/02/secrets-of-domain-masking-how-it-works-for-you/" >Secrets of Using Domain Masking with Free Web Hosting</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/" title="Google Offers Free Domain Name, Free Hosting to India Businesses">Google Offers Free Domain Name, Free Hosting to India Businesses</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2 Years on KnownHost VPS Hosting [Review]</title>
		<link>http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 08:20:11 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[Knownhost]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=14030</guid>
		<description><![CDATA[QOT has been hosted on Knownhost VPS hosting for the last 2 years, and I assure you it has been a great hosting experience. A...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/about/" title="View all posts in Site News" rel="category tag">Site News</a> &raquo; <a href="http://www.quickonlinetips.com/archives/tag/knownhost/" rel="tag">Knownhost</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/&t=2 Years on KnownHost VPS Hosting [Review]" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=2 Years on KnownHost VPS Hosting [Review] - http://www.quickonlinetips.com/archives/?p=14030 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>QOT has been hosted on <a rel="nofollow"  href="http://www.quickonlinetips.com/go/knownhost.php">Knownhost</a> VPS hosting for the last 2 years, and I assure you it has been a great hosting experience. A Knownhost review was in order to share with you some reasons why we love Knownhost hosting and recommend it to you .…</p>
<p><img class="alignnone size-full wp-image-20002" title="knownhost" src="http://www.quickonlinetips.com/archives/wp-content/uploads/knownhost.png" alt="knownhost VPS hosting" width="144" height="106" align="right" />We switched from <a href="http://www.quickonlinetips.com/archives/2009/06/dreamhost-to-knownhost-vps-hosting/">shared hosting to VPS hosting</a> 2 years back. Many QOT readers recommended some powerful VPS hosting options, and many were very skeptical about Knownhost. Well QOT on Knownhost has been really worthwile. Remember to choose the <a href="http://www.quickonlinetips.com/archives/2009/06/knownhost-managed-vps-hosting-package/">right hosting package</a></p>
<h3>Why Knownhost VPS Hosting?</h3>
<p><strong>1. Super quick response time (24&#215;7)</strong> &#8211; Webhosting issues occur with any hosting service and it is unavoidable. But what is important is that the technical support is responsive quickly to your site and hosting issues. When you send in a support request, you instantly get a automated ticket number, but then every hosting does that. So here is the amazing part &#8211; whenever I have emailed Knownhost, they have ALWAYS replied back within 5-20 minutes, 24&#215;7, even on Sundays and holidays. Ever since the day we joined we have been amazed by the <a href="http://www.quickonlinetips.com/archives/2009/06/knownhost-tech-support/">amazing tech support</a> and though many people speculated it was true for new customers, it has lasted these years.</p>
<p><strong>2. They know their stuff</strong> &#8211; What is the use of quick response if your hosting support is inexperienced and they can’t figure what you are talking about. I am sure all of us have had a chance to get that from customer support &#8211; if they cant figure out what we are talking about, how will they fix the issue and will keep recommending unrelated fixes to buy time? Well I have never seen more knowledgeable support than Knownhost. They always respond in minutes, they always seems to understand what problem I am suggesting, and always have a solution for it in minutes. I have had a chance to get support from several different support team members, and all of them were brilliant.</p>
<p><strong>3. They manage everything</strong> – The good part about managed VPS hosting is that there is someone to manage your server 24&#215;7. Most bloggers have limited knowledge about the intricacies of hosting and running servers. I am glad I took managed hosting, and they have really helped and guided me all along the way. Getting managed VPS hosting is highly recommended so that you can concentrate more on developing content rather than fixing server errors.</p>
<p><strong>4. They are courteous and never laugh at you</strong> - what use is it if you explain technical stuff to me in all geeky mumbo jumbo. I am a curious customer and keep questioning them about technical details, which would seem really elementary stuff, yet they have never scoffed at my request and always clearly explained me in the most courteous way.</p>
<p><strong>5. You can fix stuff yourself next time</strong> &#8211; This is the good reason – whatever the problem is, they explain clearly with all details what they did to fix your server issues / hosting problem, so it becomes a learning experience, such that you can deal with the issue next time yourself. This has been of amazing help and has helped me gain confidence in dealing with several common hosting issues myself. I learnt new things like setting <a href="http://www.quickonlinetips.com/archives/2009/06/how-to-set-private-nameservers-on-domain-names/">private nameservers</a> and power of <a href="http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/">CSF-LFD</a>.</p>
<p><strong>6. Excellent uptime</strong> – VPS hosting has ensured that our site has maintained excellent uptime. We monitor our site using <a href="http://www.montastic.com/">Montastic</a>, <a href="http://www.pingdom.com/">Pingdom</a> and they have always reported excellent uptime. My VS3 plan has me covered for all traffic spikes.</p>
<p><strong>7. Free Upgrades</strong> - Over the last few months, Knownhost <a href="http://www.quickonlinetips.com/archives/2010/12/knownhost-upgrades-ram-disk-space-bandwidth-of-all-vps-servers/">automatically upgraded</a> the memory and storage of all plans too. Now that was a cool bonus.  The current packages are bigger and better. They <a href="http://www.quickonlinetips.com/archives/2009/12/knownhost-hosting-free-ram-disk-bandwidth-upgrade/">upgraded hosting in 2009</a>  also, so we have a double powerful package for free in 2 years.</p>
<p><strong>8. Regular Backup</strong> &#8211;  They have regular full backups for your entire server, so when <a href="http://www.quickonlinetips.com/archives/2010/07/qot-hacked/">QOT was hacked</a>, they managed to restore the server to the original state quickly. Now we have <a href="http://www.quickonlinetips.com/archives/2011/03/vaultpress-secure-wordpress-backup-review/">Vaultpress</a> also to maintain regular wordpress and database backups.</p>
<p>QOT is now over 2 years on Knownhost VPS hosting, and if you are looking for reliable hosting, try <strong><a rel="nofollow"  href="http://www.quickonlinetips.com/go/knownhost.php">Knownhost VPS hosting</a>.</strong></p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2009/12/knownhost-hosting-free-ram-disk-bandwidth-upgrade/" >Knownhost Hosting Offers Free RAM, Disk, Bandwidth Upgrade</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/07/knownhost-vps-hositng-lifetime-discount-coupon/" >Lifetime Hosting Discount Coupon Code for Knownhost VPS</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/06/dreamhost-to-knownhost-vps-hosting/" >Migrated from Dreamhost to Knownhost VPS Hosting</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/06/knownhost-tech-support/" >KnownHost VPS Hosting Offers Best Tech Support Ever</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/" title="2 Years on KnownHost VPS Hosting [Review]">2 Years on KnownHost VPS Hosting [Review]</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/07/knownhost-vps-hosting-review/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Find Your WordPress PHP, MySQL Versions Now</title>
		<link>http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 18:13:05 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=19837</guid>
		<description><![CDATA[WordPress Bloggers must find the PHP version and MySQL version of their hosting server now.  The WordPress minimum requirements have changed and if your hosting...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/blogging/wordpress/" title="View all posts in WordPress" rel="category tag">WordPress</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/&t=Find Your WordPress PHP, MySQL Versions Now" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Find Your WordPress PHP, MySQL Versions Now - http://www.quickonlinetips.com/archives/?p=19837 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>WordPress Bloggers must find the PHP version and MySQL version of their hosting server now.  The WordPress minimum requirements have changed and if your hosting server PHP and MySQL version is outdated, upon upgrade to WordPress 3.2, your site may not work.</p>
<h3>PHP, MySQL Versions in WordPress</h3>
<p>The minimum requirements for WordPress 3.1 (current version) are PHP 4.3 and MySQL 4.1.2. But the The <a href="http://wordpress.org/about/requirements/">minimum requirements</a> for <a href="http://codex.wordpress.org/Version_3.2">WordPress 3.2</a> (which is coming very soon) is<strong> PHP 5.2.4 and MySQL 5.0</strong>. So though most web hosting services would have updated their server, you need to be sure and not get stuck during update.</p>
<p>The easiest way is to install the <a href="http://wordpress.org/extend/plugins/health-check/" target="_blank">Health Check Plugin</a> &#8211; Its a simple WordPress plugin which will check checks PHP and MySQL versions of your server and compare them with WordPress 3.2 requirements.</p>
<p>We installed it and got an this response.</p>
<p><img class="alignnone size-full wp-image-19838" title="php-check" src="http://www.quickonlinetips.com/archives/wp-content/uploads/php-check.png" alt="php mysql check" width="500" height="97" /></p>
<p>The response suggests excellent &#8211;  we are running on PHP 5.2.16 which better than required 5.2.4.</p>
<p>I suggest you also check your PHP and MySQL version and contact your webhosting if your server falls short. Of course, if your hosting provider cannot upgrade your PHP and MySQL, its time to find a new web hosting for your WordPress blog.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2007/01/wordpress-21-will-require-mysql-40-database/" >WordPress 2.1 Will Require MySQL 4.0 Database</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2005/09/find-old-versions-of-popular-software/" >Find Old Versions of Popular Software</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2008/10/google-warns-old-wordpress-versions/" >Google Warns Bloggers Hosting Old WordPress Versions</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/06/daily-backup-wordpress-blog-mysql-database/" >How to Create Daily Backups of WordPress MySQL Database</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/" title="Find Your WordPress PHP, MySQL Versions Now">Find Your WordPress PHP, MySQL Versions Now</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/07/find-wordpress-php-mysql-versions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Register Your .Brand Top Level Domain for $185,000</title>
		<link>http://www.quickonlinetips.com/archives/2011/06/register-your-brand-top-level-domain/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/06/register-your-brand-top-level-domain/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 17:39:18 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=19690</guid>
		<description><![CDATA[ICANN has announced that now brands can register their own .brand generic top-level domains (gTLDs) for $185,000 and the process will start soon. This is...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/06/register-your-brand-top-level-domain/&t=Register Your .Brand Top Level Domain for $185,000" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Register Your .Brand Top Level Domain for $185,000 - http://www.quickonlinetips.com/archives/?p=19690 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>ICANN has <a href="http://www.icann.org/en/announcements/announcement-20jun11-en.htm">announced</a> that now brands can register their own<strong> .brand generic top-level domains</strong> (<a href="http://en.wikipedia.org/wiki/Generic_top-level_domain">gTLDs</a>) for $185,000 and the process will start soon. This is the biggest change in the domain name system till now and will change the way we view domains and brands.</p>
<p>The current popular generic top level domains are limited like .com, .net, .org and many more. Applicants for their own .brand domains will need to pay <strong>$185,000 </strong>to process their application and if all goes as expected after a few long months of review, we might see many new gTLDs. Its expensive but its for a purpose so that only big brands will be able to afford it and protect their trademarks, while creating a unique web identity. You can read all the details in the <a href="http://www.icann.org/en/topics/new-gtlds/rfp-clean-30may11-en.pdf">gTLD Applicant Guidebook</a> (.pdf)</p>
<p>Applications for new gTLDs will be accepted by ICANN from<strong> 12 January 2012 to 12 April 2012</strong>. I guess all brands will again be lining up to register their own trademarks and protect it from cybersquatters.</p>
<p>So the new domains might look like in this in near future &#8230;</p>
<p><img class="alignnone size-full wp-image-19694" title="icann-domain-names" src="http://www.quickonlinetips.com/archives/wp-content/uploads/icann-domain-names.png" alt="icann new domain names" width="500" height="597" /></p>
<p><em>Infographic by <a href="http://www.labnol.org">labnol.org</a> under CC license.</em></p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2008/02/register-asia-domain-names-landrush-open/" >Register .Asia Domain Names: Landrush Open</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2008/03/me-domain-names-from-montenegro/" >Register .ME Domain Names from Montenegro</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2008/07/register-me-domain-names/" >Register .ME Domain Names: Now Open to Public</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2010/03/register-co-domain-names/" >Pre-Register .CO Domain Names</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/06/register-your-brand-top-level-domain/" title="Register Your .Brand Top Level Domain for $185,000">Register Your .Brand Top Level Domain for $185,000</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/06/register-your-brand-top-level-domain/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Now Buy Hostgator India Hosting</title>
		<link>http://www.quickonlinetips.com/archives/2011/05/buy-hostgator-india-hosting/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/05/buy-hostgator-india-hosting/#comments</comments>
		<pubDate>Tue, 24 May 2011 07:13:13 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[India]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=18544</guid>
		<description><![CDATA[Hostgator India has launched hosting operations on Indian servers, and promises the same world class hosting services as its US operations.  HostGator is one of...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/india/" title="View all posts in India" rel="category tag">India</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/05/buy-hostgator-india-hosting/&t=Now Buy Hostgator India Hosting" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Now Buy Hostgator India Hosting - http://www.quickonlinetips.com/archives/?p=18544 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p><a href="http://www.quickonlinetips.com/go/hostgator.php" rel="nofollow">Hostgator</a> India has launched hosting operations on Indian servers, and promises the same world class hosting services as its US operations.  HostGator is one of the 10 largest hosting companies in the world and HostGator India accounts can now be bought at <a href="http://www.hostgator.in" rel="nofollow" target="_blank">hostgator.in</a>.</p>
<p><img class="alignleft size-full wp-image-18547" title="hostgator-india" src="http://www.quickonlinetips.com/archives/wp-content/uploads/hostgator-india.jpg" alt="hostgator india" width="120" height="133" />This is a big step as big hosting companies recognize the importance of millions of India based sites and the need to diversify their hosting business into India. We got an email from Hostgator offering a free 7 day test / trial account of their shared HostGator India accounts. You can email them to get a beta testing account. This was possibly sent out to current HostGator clients with a billing address in India only.</p>
<h3><strong>India Site Owners Advantage</strong></h3>
<p>HostGator India will now host your site on servers in India. They have already started an India office at Nashik, Maharashtra which provides 24&#215;7 technical hosting and billing support. This will benefit Indian webmasters and small hosting resellers as their primary working hours will be in India time and you can physically visit the office if needed.</p>
<p>Additionally the latency to the Indian servers from within India and Asia is very low, so you get quick access times leading to quick loading admin/cpanel, faster loading sites with quicker site response time for visitors, without the need for a CDN for your primary Asian traffic.</p>
<h3>Hostgator India Plans</h3>
<p>The hosting plans and server pricing on hostgator.in are exactly same as US site hostgator.com. However, you will have to pay service tax @ 10.30% extra as required by Indian tax laws.</p>
<p>Right now don&#8217;t be surprised to see hosting plans in USD or lack of payment mode by local banks and credit cards, as they will all be integrated soon enough. The wait is over for Hostgator customers in India.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2011/11/google-hostgator-india-free-domain-name-hosting/" >Google Offers Free Domain Name, Free Hosting to India Businesses</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2008/01/hostgator-employee-referral-program-earn-2500/" >Hostgator Employee Referral Program: Earn $2500</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/06/dreamhost-to-knownhost-vps-hosting/" >Migrated from Dreamhost to Knownhost VPS Hosting</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2007/02/dreamhost-hosting-power-outage-5-hours-downtime-planned/" >Dreamhost Hosting Power Outage : 5 Hours Downtime Planned</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/05/buy-hostgator-india-hosting/" title="Now Buy Hostgator India Hosting">Now Buy Hostgator India Hosting</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/05/buy-hostgator-india-hosting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Is CSF-LFD Choking Your Site Traffic?</title>
		<link>http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 15:30:31 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=18144</guid>
		<description><![CDATA[Webmasters should check if ConfigServer Security &#38; Firewall (csf) and Login Failure Daemon (lfd) are choking and throttling your site traffic? Most web hosting setups run ConfigServer...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/how-to/" title="View all posts in Tutorials" rel="category tag">Tutorials</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/&t=Is CSF-LFD Choking Your Site Traffic?" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Is CSF-LFD Choking Your Site Traffic? - http://www.quickonlinetips.com/archives/?p=18144 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p>Webmasters should check if <a href="http://www.configserver.com/cp/csf.html">ConfigServer Security &amp; Firewall</a> (csf) and Login Failure Daemon (lfd) are choking and throttling your site traffic? Most web hosting setups run ConfigServer Security &amp; Firewall (CSF) &#8211; a very popular, highly recommended and excellent firewall, login/intrusion detection and security application for Linux servers.</p>
<p>Add to it the power of Login Failure Daemon (lfd), a process that scans the latest log file entries for login attempts against your server that continually fail within a short period of time  and blocks offending IP&#8217;s quickly &#8211; and you have a very powerful tool against hackers. We also use ConfigServer Security Firewall (CSF) on our <a href="http://www.quickonlinetips.com/archives/tag/knownhost/">Knownhost</a> web hosting, and believe me it is so simple to block your site traffic and if you are not alerted, you might never know.</p>
<h3>CSF ConfigServer Security &amp; Firewall Settings</h3>
<p>After <a href="http://www.quickonlinetips.com/archives/2010/07/qot-hacked/">our hacking episode</a>, we got more aware and learned a lot about the WHM and server settings. An important setting is Connection Tracking Limit or CT_Limit. If you have root access, you can login to your <em>WHM &gt; Plugins &gt; ConfigServer Security &amp; Firewall &gt; Firewall Configuration</em></p>
<p><em><img class="alignnone size-full wp-image-18146" title="csf-config" src="http://www.quickonlinetips.com/archives/wp-content/uploads/csf-config.png" border="1" alt="csf configuration" width="486" height="79" /></em></p>
<p>Then browse the long list of options and look for CT_Limit. Check what your <strong>CT_Lmit</strong> looks like.</p>
<p><img class="alignnone size-full wp-image-18145" title="ct-limit" src="http://www.quickonlinetips.com/archives/wp-content/uploads/ct-limit.png" border="1" alt="ct limit csf" width="302" height="48" /></p>
<p><strong>If the limit is set to 0, then the feature is disabled. </strong>BTW this is the default setting. But if a value of lets says 50 is there, it means that if the total number of connections is greater than 50 &#8211; the offending IP address is blocked. Now this IP may not necessarily be offending. If you have a high traffic site, you may want to keep higher limits.</p>
<p>In their own words</p>
<blockquote><p><strong>Connection Tracking. </strong>This option enables tracking of all connections from IP addresses to the server. If the total number of connections is greater than this value then the offending IP address is blocked. This can be used to help# prevent some types of DOS attack. Care should be taken with this option. It&#8217;s entirely possible that you will see false-positives. Some protocols can be connection hungry, e.g. FTP, IMAPD and HTTP so it could be quite easy to trigger, especially with a lot of closed connections in TIME_WAIT. However, for a server that is prone to DOS attacks this may be very useful. <strong>A reasonable setting for this option might be around 300.</strong></p></blockquote>
<p>Though CSF itself suggests a value of 300, but most web hosts will keep it low. This helps to prevent DOS attacks on a server and is very useful. Now what is great is that when an IP is blocked, CSF will send you email alerts with subjects like &#8211;  <strong>lfd on host.domain.com: IP (source) blocked with too many connections</strong></p>
<p>When we had put a limit of 50, our email inbox was full of hundreds of these alerts everyday. Hundreds of IP addresses were getting blocked and many complained later they were valid users and the site was unavailable to them.</p>
<p><img class="alignnone size-full wp-image-18148" title="lfd-block" src="http://www.quickonlinetips.com/archives/wp-content/uploads/lfd-block.png" border="1" alt="LFD block" width="500" height="137" /></p>
<p>And then the email reveals which IP is blocked and cannnot connect to your site. Fortunately this a <strong>temporary block</strong>.</p>
<p>Morever, whenever the CSF-LFD tried to block these IPs, there were high resource usage alerts on the web server. Remember raising the limit too much does not serve the purpose for which it was intended. For high traffic blogs, maybe you need to keep the limits higher. So change the CT_Limit and restart CSF to set the new limits.</p>
<p>Now remember it is easy to disable these email alerts. So if your hosting has set you at a very low CT_limit and you don&#8217;t get alerts, you have no idea  how many valid IP addresses may be getting blocked reducing your site traffic. Shared hosting users never have root access and can never see the settings, while VPS hosting packages and above have root access / WHM access and can check their ConfigServer Security Firewall (CSF) settings.</p>
<p><em><strong>NOTE:</strong> I am not an expert in server management, csf, lfd and server security. The above views represent what we noted as a webmaster and which might be useful information to you. Manipulation of CSF-LFD settings can make your site unusable very easily. Seek professional help from hosting technical support before messing up your settings. </em></p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2010/10/free-traffic-technique/" >Attract Big Site Traffic With This Little Used (FREE) Traffic Technique</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2008/03/yahoo-buzz-publishers-get-highest-site-traffic-ever/" >Yahoo! Buzz Publishers Get Highest Site Traffic Ever!</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2010/02/drive-massive-youtube-traffic/" >How to Drive Massive Youtube Traffic to Your Site</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2011/08/new-google-sitelinks-format/" >New Google Sitelinks Will Actually Increase Your Site Traffic</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/" title="Is CSF-LFD Choking Your Site Traffic?">Is CSF-LFD Choking Your Site Traffic?</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/04/configserver-security-firewall-csf-lfd-choking-site-traffic/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dreamhost Gets Dedicated Server Hosting Starting $69/Month</title>
		<link>http://www.quickonlinetips.com/archives/2011/03/dreamhost-dedicated-server-hosting/</link>
		<comments>http://www.quickonlinetips.com/archives/2011/03/dreamhost-dedicated-server-hosting/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 10:45:17 +0000</pubDate>
		<dc:creator>QuickOnlineTips</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>

		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/?p=18001</guid>
		<description><![CDATA[Dreamhost has relaunched its dedicated server hosting services and current Dreamhost customers can buy dedicated hosting right now and upgrade their hosting services easily for...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickonlinetips.com/" rel="nofollow">Home</a> &gt; <a href="http://www.quickonlinetips.com/archives/category/domain-hosting/" title="View all posts in Domain Hosting" rel="category tag">Domain Hosting</a></p><p><a href="https://www.facebook.com/sharer/sharer.php?u=http://www.quickonlinetips.com/archives/2011/03/dreamhost-dedicated-server-hosting/&t=Dreamhost Gets Dedicated Server Hosting Starting $69/Month" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/fbshare.png" border="0" alt="Facebook Share"></a>&nbsp;<a href="https://twitter.com/intent/tweet?text=Dreamhost Gets Dedicated Server Hosting Starting $69/Month - http://www.quickonlinetips.com/archives/?p=18001 via @qot" target="_blank"><img src="http://www.quickonlinetips.com/media/rss/tweetit.png" border="0" alt="Twitter Share"></a><p><a href="http://www.quickonlinetips.com/archives/tag/dreamhost/" class="broken_link" rel="nofollow">Dreamhost</a> has <a href="http://blog.dreamhost.com/2011/03/22/return-of-the-dedi/">relaunched</a> its <strong>dedicated server hosting </strong>services and current Dreamhost customers can buy dedicated hosting right now and upgrade their hosting services easily for as low as $69/month.</p>
<p>Dreamhost had stopped dedicated server hosting to promote their unique Dreamhost VPS hosting services, which enabled you to pay for the just the server resources you use. Now dedicated hosting is back and they have lined up some cheap dedicated hosting packages.</p>
<h3>Dreamhost Dedicated Server Hosting</h3>
<p>Dedicated Hosting is the recommended hosting solution for heavily-trafficked websites, CPU-intensive applications, or complex databases. Dreamhost dedicated hosting is available in <a href="http://www.dreamhost.com/hosting-dedicated.html">3 packages</a> &#8211; Half Moon, Full Moon and Blue Moon.</p>
<p><img class="alignnone size-full wp-image-18005" title="dreamhost-dedicated" src="http://www.quickonlinetips.com/archives/wp-content/uploads/dreamhost-dedicated.png" alt="Dreamhost dedicated hosting" width="500" height="159" /></p>
<p>Buy a <strong>half moon dedicated server</strong> for just $69 / month and you can get the configuration of 2 core, 2 GB RAM, 500GB SATA hard drive, Debian Lenny (5.0 – Stable), One dedicated IP address, managed backup, unlimited bandwidth, 4-hour SLA and a waived set up fee of $99! They promise 24&#215;7 technical support access, 4-hour hardware replacement guarantee policy, full root access, and automatic managed backups of your entire site with no back-up storage capacity limit.</p>
<p>In 2006, this site <a href="http://www.quickonlinetips.com/archives/2006/09/6-months-on-wordpress-was-shifting-from-blogger-worth-it/">migrated from Blogger</a>, and we were also on Dreamhost shared hosting. In 2009,  Then we migrated from <a href="http://www.quickonlinetips.com/archives/2009/06/dreamhost-to-knownhost-vps-hosting/">Dreamhost to Knownhost VPS hosting</a>, and considering we pay over $50 for a <a href="http://www.quickonlinetips.com/archives/tag/knownhost/">Knownhost</a> VS 3 package + cpanel &#8211; getting a cheap dedicated server for $69 seems like a good deal.</p>
After reading this article, readers liked these articles
<ul>
		<li><a href="http://www.quickonlinetips.com/archives/2008/11/shared-virtual-dedicated-hosting/" >Understanding Shared, Virtual and Dedicated Hosting</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2009/06/dreamhost-to-knownhost-vps-hosting/" >Migrated from Dreamhost to Knownhost VPS Hosting</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2007/02/dreamhost-planned-outage-network-server-errors-persist/" >Dreamhost Planned Outage : Network Server Errors Persist</a></li>
		<li><a href="http://www.quickonlinetips.com/archives/2007/08/dreamhost-ps-private-servers-linux-vserver-premium-hosting/" >DreamHost PS Private Servers: Linux-VServer Premium Hosting</a></li>
	</ul>
<p>Original Article: <a href="http://www.quickonlinetips.com/archives/2011/03/dreamhost-dedicated-server-hosting/" title="Dreamhost Gets Dedicated Server Hosting Starting $69/Month">Dreamhost Gets Dedicated Server Hosting Starting $69/Month</a></p><p>Copyright 2012. <a href="http://www.quickonlinetips.com/" title="Quick Online Tips">Quick Online Tips</a>. All Rights Reserved.</p><p><a href="http://www.amazon.com/gp/product/B0051VVOB2/ref=as_li_ss_tl?ie=UTF8&tag=quickonlineti-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0051VVOB2" rel="nofollow" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/kindle/associates/kindle-fire-300x250.jpg" border="0"></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.quickonlinetips.com/archives/2011/03/dreamhost-dedicated-server-hosting/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.quickonlinetips.com/archives/category/domain-hosting/feed/ ) in 1.82257 seconds, on May 26th, 2012 at 8:48 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 26th, 2012 at 6:48 pm UTC -->
