<?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>W.H.S.R. &#187; Web Hosting Knowledge</title>
	<atom:link href="http://www.webhostingsecretrevealed.com/category/web-hosting-knowledge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingsecretrevealed.com</link>
	<description>Hosting up a new website? Read our unbiased review and helpful how-to guides on web hosting services.</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:13:51 +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 save time with cron: Basic guide and sample codes</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/how-to-save-time-with-cron-basic-guide-and-sample-codes/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/how-to-save-time-with-cron-basic-guide-and-sample-codes/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 17:13:45 +0000</pubDate>
		<dc:creator>Robert Ludrosky</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3925</guid>
		<description><![CDATA[What is cron? Cron is a Linux/UNIX daemon that is designed to execute a command at a predefined time. Since cron is a daemon, once it is executed it does not require any administration from the user. Cron is controlled by a set of files called “cronfiles”, below is a list of common cron commands. [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>What  is cron?</strong></h2>
<p>  Cron is a Linux/UNIX daemon that is  designed to execute a command at a predefined time. Since cron is a daemon,  once it is executed it does not require any administration from the user. Cron  is controlled by a set of files called “cronfiles”, below is a list of common  cron commands.</p>
<table width="100%" cellpadding="1" cellspacing="0" class="border">
<tr>
<td width="200" bgcolor="#DDDDDD"><strong>      Crontab filename </strong></td>
<td bgcolor="#DDDDDD">
<p><strong>Install filename as your    crontab file.</strong></p>
</td>
</tr>
<tr>
<td width="200" valign="top">
<p>crontab -e</p>
</td>
<td valign="top">
<p>Edit your crontab file.</p>
</td>
</tr>
<tr>
<td width="200" valign="top">
<p>crontab -l</p>
</td>
<td valign="top">
<p>Show your crontab file.</p>
</td>
</tr>
<tr>
<td width="200" valign="top">
<p>crontab -r</p>
</td>
<td valign="top">
<p>Remove your crontab file.</p>
</td>
</tr>
<tr>
<td width="200" valign="top">
<p>MAILTO=user@domain.com</p>
</td>
<td valign="top">
<p>Emails the output to the    specified address.</p>
</td>
</tr>
</table>
<p>Each entry into the crontab file will  consist of the following six fields separated by a space. The order of the  fields along with a brief description of each one is listed below.<br />
minute(s) hour(s) day(s) month(s) weekday(s) command(s)</p>
<table width="100%" class="border" cellpadding="1" cellspacing="0">
<tr>
<td width="100" bgcolor="#dddddd"><strong>      Field</strong></td>
<td width="100" bgcolor="#dddddd">
<p><strong>Value</strong></p>
</td>
<td bgcolor="#dddddd">
<p><strong>Description</strong></p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Minute</p>
</td>
<td width="100" valign="top">
<p>0-59</p>
</td>
<td valign="top">
<p>Defines the exact minute the command will execute.</p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Hour</p>
</td>
<td width="100" valign="top">
<p>0-23</p>
</td>
<td valign="top">
<p>Defines the hour of the day the command will    execute.</p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Day</p>
</td>
<td width="100" valign="top">
<p>1-31</p>
</td>
<td valign="top">
<p>Defines the day of the month the command will    execute.</p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Month</p>
</td>
<td width="100" valign="top">
<p>1-12</p>
</td>
<td valign="top">
<p>Defines the month of the year the command will    execute.</p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Weekday</p>
</td>
<td width="100" valign="top">
<p>0-6</p>
</td>
<td valign="top">
<p>Defines the day of the week the command will    execute.<br />
      Sunday=0,    Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday =    6 </p>
</td>
</tr>
<tr>
<td width="100" valign="top">
<p>Command</p>
</td>
<td width="100" valign="top">
<p>Special</p>
</td>
<td valign="top">
<p>The complete command that will be executed.</p>
</td>
</tr>
</table>
<p>You can also use an * in place of the  numerical character of the first five fields to indicate all legal values. For  example, 0 0 * * 1 command, would run a script on every Monday.<br />
Most of this section is only relevant if you are running scripts from the command  terminal in Linux/UNIX, if you are using a cPanel please view the “How do I run  a cron script from my cPanel” section.</p>
<h2><strong>How can  I save time with cron?</strong></h2>
<p>    There are many ways you can use cron to  save some but to me the most useful tasks you can schedule are running database  and website backup scripts. Both of these jobs can easily be done manually but  they are often over looked. With cron you can set them up once and know it will  get done. </p>
<p>    Below are sample scripts you can use to  setup these jobs with cron.</p>
<p><strong>Automatic  WordPress Database Backups </strong>(Script provided by <a href="http://tamba2.org.uk/wordpress/cron/" target="_blank">T2</a>)</p>
<blockquote>
<p>    #Set the 4 variables<br />
      #Replace what is AFTER the = with the information from your wp-config.php file</p>
<p>      DBNAME=DB_NAME</p>
<p>      DBPASS=DB_PASSWORD</p>
<p>      DBUSER=DB_USER</p>
<p>      #Keep the &quot; around your address<br />
      EMAIL=&quot;you@your_email.com&quot;</p>
<p>      mysqldump &#8211;opt -u $DBUSER -p$DBPASS $DBNAME &gt; backup.sql<br />
      gzip backup.sql<br />
      DATE=`date +%Y%m%d` ; mv backup.sql.gz $DBNAME-backup-$DATE.sql.gz<br />
      echo &#8216;Blog Name:Your mySQL Backup is attached&#8217; | mutt -a $DBNAME-backup-$DATE.sql.gz  $EMAIL -s &quot;MySQL Backup&quot;<br />
      rm $DBNAME-backup-$DATE.sql.gz</p>
</blockquote>
<p><strong>Automated  Website Backups </strong>(Script provided by <a href="https://help.ubuntu.com/8.04/serverguide/C/backup-shellscripts.html" target="_blank">Ubuntu</a>)</p>
<blockquote>
<p>#!/bin/sh</p>
<p>####################################</p>
<p>#</p>
<p># Backup to NFS mount script.</p>
<p>#</p>
<p>####################################</p>
<p># What to backup. </p>
<p>backup_files=&quot;/home /var/spool/mail /etc /root /boot /opt&quot;</p>
<p># Where to backup to.</p>
<p>dest=&quot;/mnt/backup&quot;</p>
<p># Create archive filename.</p>
<p>day=$(date +%A)</p>
<p>hostname=$(hostname -s)</p>
<p>archive_file=&quot;$hostname-$day.tgz&quot;</p>
<p># Print start status message.</p>
<p>echo &quot;Backing up $backup_files to $dest/$archive_file&quot;</p>
<p>date</p>
<p>echo</p>
<p># Backup the files using tar.</p>
<p>tar czf $dest/$archive_file $backup_files</p>
<p># Print end status message.</p>
<p>echo</p>
<p>echo &quot;Backup finished&quot;</p>
<p>date</p>
<p># Long listing of files in $dest to check file sizes.</p>
<p>ls -lh $dest</p>
</blockquote>
<p><strong>&nbsp;</strong></p>
<p>*Disclaimer: We are not a responsible  if the script fails to run correctly or if you set it up incorrectly. If you  have any questions or concerns about the script or how to set it up the best  contact will be your host provider.</p>
<h2><strong>How  do I run a cron script from my cPanel?</strong></h2>
<p>1. Log into you cPanlel</p>
<p>2. Locate the “cron jobs” icon  (This is generally in the advanced section).</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-1.jpg" /></p>
<p>3. Enter your E-Mail address if  you would like a copy of the crop output to be emailed to you.</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-2.jpg" /></p>
<p>4. Choose when you would like your  cron script to run. (Choosing an item from the “Common Settings” dropdown box  will fill in the fields for you.)</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-3.jpg" /></p>
<p>5. Enter the path of the script  you would like to run. (Note: You will need to upload your script file to your  server, for more information please see below &#8211; “How do I upload my script file”  section for details.)</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-4.jpg" /></p>
<p>6. Click “Add New Cron Job”</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-5.jpg" /></p>
<p>7. Your cron job should now be  listed under “Current Cron Jobs”.</p>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-6.jpg" /></p>
<h2><strong>How  do I upload my script file?</strong></h2>
<p><img class="border" src="http://www.webhostingsecretrevealed.com/images/2011/1116-7.jpg" /></p>
<ol>
<li>From your cPanel choose “File  Manager”</li>
<li>Next choose “Home Directory”  then click “Go”</li>
<li>Now choose “Upload”.</li>
<li>Set your File Permissions to 755</li>
<li>Click “Browse”</li>
<li>Browse to the folder that has  your script and click on it, and then click “Open”.</li>
</ol>
<p>Note: Your cPanel may be  setup differently than the one shown above but the overall concepts should  still be the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/how-to-save-time-with-cron-basic-guide-and-sample-codes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Green Hosting Works?</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-green-hosting/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-green-hosting/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 06:21:07 +0000</pubDate>
		<dc:creator>Guest Poster</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3645</guid>
		<description><![CDATA[Image Courtesy: Flickr &#8211; Kumaravel When people look for web hosting services, they consider several parameters like the specifications of the server, the storage space, the processor speed, the bandwidth and performance. There is however another important factor that needs to be considered, but often gets omitted from the list of requirements – that is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingsecretrevealed.com/images/2011/0819-1.jpg" alt="Green Web Hosting" class='border' /></p>
<p><em>Image Courtesy: Flickr &#8211; <a href="http://www.flickr.com/photos/kumaravel/">Kumaravel</a></em></p>
<p>When people look for web hosting  services, they consider several parameters like the specifications of the  server, the storage space, the processor speed, the bandwidth and performance.  There is however another important factor that needs to be considered, but  often gets omitted from the list of requirements – that is – how green the web  hosting service is? When people think of performance, they only think in terms  of computational performance. The ecological effects or green performance is  never really thought about.</p>
<h2><strong>How  Web Hosting Affects the Environment?</strong></h2>
<p>  Now you might wonder how can running a  web hosting company probably affect the environment. Maintaining web hosting  servers requires tremendous amount of energy. First of all, electricity is  required to power up the server computers. In-order to keep these servers cool,  a cooling system is required. These cooling systems themselves run on  electricity and are said to consume almost 50% of the total power needed for  running the set-up. Apart from high power consumption, there is the growing  concern of heat and greenhouse gas emissions from these set-ups, which is  taking a toll on the environment.</p>
<p>You will be surprised to know how every  single activity on the internet can cause an impact to our environment. A  research conducted a couple of years ago has revealed that simply doing 2  Google searches can produce as much carbon dioxide as a boiling kettle, which  is estimated to be about 7g per search. This might seem trivial. However,  considering the global usage of the internet, the total amount of CO2 produced  can be tremendous. Industry analyst, Gartner, has mentioned in a report that  the entire IT industry generates greenhouse gases comparable to that of the  airline industry; which is about 2% of the global carbon dioxide emissions.  Some may argue that web hosting forms only a small subset of the global IT  industry. Plus, as you read on you will find that the steps taken by such hosts  in turning green is more of a counterbalance effort, rather than a real one.  Therefore, considering subscriptions with a green host, will not really make a  big difference. However, it must be noted that a single web server can produce  12.5 tonnes of CO2 in a year. And any eco-friendly effort taken reducing or even  offsetting this, must be encouraged and supported.</p>
<h2><strong>How  do Web Hosting Companies Turn Green?</strong></h2>
<p>  When you think “turning green” you think  “employing natural and renewable energy sources”. So when we say “green  hosting”, the logical conclusion is that the web hosting companies are using  electricity that is generated from natural resources. There is however a slight  variation to this description. Most green web hosting companies merely buy  Green Tags or Renewable Energy Certificates in their eco-friendly efforts. At  this point of time, this is the most feasible green effort that such companies  can put in. Web hosts that actually generate the energy they use on-site, are  very rare.</p>
<h2><strong>What  are Green Tags All About?</strong></h2>
<p>  There are several renewable energy  generators that have been set up for generating energy from natural resources,  like wind, water, sun, bio-gas etc. Some of these generators are tied up with  the main grids that supply electricity to cities and towns. Thus the grid  supplies electricity generated from both regular means (like fuel) as well as  natural resources. The organization in charge of generating electricity from  renewable resources offers a Green Tag or a Renewable Energy Certificate for  every 1000 kWh (kilowatt hour) or 1 MWh (Megawatt hour) of electricity that is  fed into the grid. Any company that buys these certificates is thus  contributing to the eco-friendly generation of power, and is considered ‘green’.  However, the electricity that they consume comes from the grid, which is a  mixture of both renewable energy power and fuel power. While the use of fuel  has been considerably reduced, it is not totally eliminated.</p>
<h2><strong>Other  Ways of Green Contributions</strong></h2>
<p>  There are a few more ways in which web  hosting companies can contribute additionally in their eco-friendly efforts.</p>
<p><strong>Using  energy efficient hardware</strong> – Employing energy  efficient hardware can be a small step towards greener hosting.</p>
<p><strong>Planning</strong> – The carbon footprint produced by servers is not just inherent  during the usage of the hardware and other equipment in a web hosting center.  An important thing to note is that all equipment already have their own  embedded carbon footprints which was produced during their manufacture and  shipping. Moreover, after they get outdated or damaged, their disposal, if not  done the right way can cause environmental hazards. Therefore, a lot of  planning has to go into setting up a web hosting environment. The entire life  cycle of the equipment has to be considered. While the embedded CO2 footprint  is not in the control of the hosting company, their usage and disposal can  definitely be taken care of. First and foremost, it is essential that the  equipment being bought must allow for future expansion, for the integration of  newer and more efficient technologies. Virtualization, for example, saves  energy and its tiered architecture allows for integration of newer  technologies. In case an equipment does get outdated, it must be disposed in an  eco-friendly manner. The “re-use, reduce and recycle” policy can be applied  here. Certain components can be re-used or recycled. Plus, organizations which  undertake the disposal of electronic equipment in a safe, green way must be  contacted.  </p>
<p><strong>Using  eco-friendly coolers</strong> – Energy efficient coolers  with as long a life as possible must be used. High performance liquid coolers  have been found to absorb 4000 times more heat than air coolers, for the same  amount of energy used.</p>
<p><strong>Re-using  the waste </strong>– The heat produced by the web hosting  and data center set-ups can be used for constructive purposes, rather than letting  it escape into the atmosphere. For instance, this heat could be used to warm up  a living space in cold countries.</p>
<h2><strong>How  do you find out if a web hosting company is green or not?</strong></h2>
<p>  Some web hosting companies ‘<a href="http://en.wikipedia.org/wiki/Greenwashing">greenwash</a>’ consumers,  faking their green efforts. Thus consumers need to exercise caution when  choosing a web hosting service. Several web hosts mention in their website  about their environmental-friendly operations. In-order to find trustworthy  green hosting services, you can look for certification or badges (like the  Green Tags). You can as well check online reviews from credible sources to find  out about their green efforts.</p>
<h3><strong>Does  computational performance get affected by employing energy from natural  resources?</strong></h3>
<p>  According to experts in the field, many  green web hosting companies provide all the standard services to their  customers, without any issues. While reviewing web hosts, Jerry himself has  observed that people who subscribe to such <a href="http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-basics-of-green-web-hosting/">green  hosts</a> have full access to their systems at all times. Even server downtimes  are quite comparable to that of the regular web hosting companies. Therefore  performance-wise, website owners and their users will not really notice any  difference.</p>
<p>At present many web hosts have ventured  on the green path. While they may not be 100% eco-friendly, they do their best  to come as close as possible. Many of them have even taken up the  responsibility of planting trees, educating their staff regarding green  practices, re-using and recycling office materials like paper, or even going  paperless, encouraging carpooling among employees and more. While these steps  may seem trivial, they definitely do contribute toward the global green efforts.</p>
<blockquote>
<p><strong>About the author: Trinity Nick</strong></p>
<p>  This article has been compiled by  Trinity Nick, a blogger who is fascinated by technology. She has contributed  several technical articles to various websites. Currently, she is working on a  project on <a href="http://www.minecraftserverhosting.org/">minecraftserverhosting.org</a>.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-green-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Basics Of Green Web Hosting</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-basics-of-green-web-hosting/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-basics-of-green-web-hosting/#comments</comments>
		<pubDate>Fri, 27 May 2011 06:24:31 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3227</guid>
		<description><![CDATA[The Background: Why Green In Hosting Industry? Recently even industries in highly commercialized countries have held meetings regarding the impact of Global Warming. The harmful gases produced from industries in clouds of dark black gases and ashes have caused a lot of ecological disasters. Therefore, industries have been asked to take measures in order to [...]]]></description>
			<content:encoded><![CDATA[<p><b>The Background: Why Green In Hosting Industry?</b><br />
<img src="http://www.webhostingsecretrevealed.com/images/2009/0611-1.jpg" alt="Green Hosting Guides" class="border" /></p>
<p>Recently even industries in highly  commercialized countries have held meetings regarding the impact of Global  Warming. The harmful gases produced from industries in clouds of dark black  gases and ashes have caused a lot of ecological disasters. Therefore, industries  have been asked to take measures in order to reduce the destruction caused by  heavy industrialization world wide. Similarly some web hosting companies have  decided to play their part in preserving the ecosystem. When they join this  cause – they are called “Green Web Hosts”. </p>
<p>  The main concept behind Green Web Hosting  is using renewable resources for energy. Previously fuels and coal were used to  produce electricity (the so-call &#8216;Dirty Power) which industries use at a very  high rate. The normal electricity consumption by industries causes production  of a lot of harmful fuel gases which go into the surrounding environment. These  harmful gases affect all life forms and destroy the ecological balance.</p>
<p>  An increase in air pollution has caused  acid rains, increased air borne diseases and even extinction of some animal  species in various countries. As an attempt to reduce these negative impacts on  our natural environments (and also, to use this as a marketing strategy), web  hosts have decided to use other energy sources.</p>
<p>  These Green web hosting companies  are as good as the regular web hosting  services. In fact, half of the web hosting companies that I reviewed here are  using green energy: <a href="http://www.webhostingsecretrevealed.com/ipage-review/">iPage</a>, <a href="http://www.webhostingsecretrevealed.com/web-hosting-review-hostgator/">Hostgator</a>, <a href="http://www.webhostingsecretrevealed.com/fatcow-review/">FatCow</a>, <a href="http://www.webhostingsecretrevealed.com/hostpapa-review/">Hostpapa</a>, <a href="http://www.webhostingsecretrevealed.com/greengeeks-review/">GreenGeeks</a>, <a href="http://www.webhostingsecretrevealed.com/sitecloud-review/">SiteCloud</a>. All  these Green Web Hosts offer all the standard services to their customers  without any hitches. There are no limitations and people using Green web  hosting services have full access to their accounts all the time. They can  easily make use of the POP accounts, Sub-domains, MySQL, and even use extra FTP  accounts. There are no limitations. Green web hosting have faster operating  systems and their servers are driven by FreeBSD, making them more stable and  reliable. </p>
<p>  One may wonder if there will be more  server-down scenarios as compared to that of the normal web hosting services.  It is in fact better than what most normal web hosting services offer. This is  because they are less prone to over loads and fluctuations being independent  from the main electricity providers. Even if they have power outages they can  quickly revert to reserves.  So they are  targeted toward offering 99.9% uptime service guarantees. Hostgator, for  example, is doing <a href="http://www.webhostingsecretrevealed.com/updates-news/updates-hostgator-uptime-review/">remarkably well in term of server uptime</a>. </p>
<h2>How Hosting Companies Go Green: The Basic Idea</h2>
<p><img src="http://www.webhostingsecretrevealed.com/images/2011/0311-2.jpg" alt="Green Hosting Guides" class="border" /></p>
<p>Green Web Hosts have started using  alternative energy sources such as, solar panels, bio-gas, wind electricity and  hydro-electricity. The benefits of these forms of energy has been a marked  reduction in air pollution and improved climate. This is because using these  alternative sources of energy has reduced carbon emission.</p>
<p>  Web hosting requires non stop working of  servers to provide good and reliable internet services to their clients. Therefore  constant electricity supply is non-negotiable, and it is important to have a  good source of energy. This is why web hosting companies interested in going  green have started installing solar panels to support their servers using solar  energy. Wind mills too have become important for those who choose to use the  wind as a source of carbon free energy. The solar energy and wind energy  sources are almost 90% recycled, however hydro-electricity is not as efficient  as the first two. Nonetheless it has also been adopted my most web hosting  companies in an attempt to preserve the environment. </p>
<p>  These companies need to install these  machineries. In most countries the government has started providing solar  panels for interested companies and industries. All they need to do is inform  the appropriate authorities of their interest in going green. </p>
<h2>  The Real Deal: How Hosting Companies  Actually Go Green</h2>
<div id='right'><img src="http://www.webhostingsecretrevealed.com/images/2009/0611-2.jpg" alt="Hostgator Green Hosting Certs" /></div>
<p>  BUT WAIT! Web hosting companies installing  solar panel and wind mills? This does not sound financial-wise for <a href="http://www.webhostingsecretrevealed.com/ipage-review/">a web host that  sells green hosting at $4.50/mo.</a> </p>
<p>  Okay, this proves that you are actually reading my words. <img src='http://www.webhostingsecretrevealed.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Yes, in fact it is (almost) impossible for a hosting companies to build wind mills and solar panels (think about the extra maintenance cost and the extra technical expertise!).</p>
<p>So how, actually, Green Web Hosting go green?</p>
<p>Short answer: Energy Credits Certificate. These are best explained as non-tangible  commodities which serve as proof that solar panels or solar energy is being  used. A renewing of energy credits certificate is bought for every 1megawatt  per hour of energy generated and returned to the power grid. This means that  any company can generate 100% clean electricity without the hassles to build  wind mills and solar panel (so to say).</p>
<p>  My choice of<a href="http://www.webhostingsecretrevealed.com/best-green-hosting/"> Best Green Hosting</a>, GreenGeeks for example,  replace, with wind power, 3 times the amount of energy used   by their  servers. So if their servers pull 1X of power from the grid;   the company purchase enough wind  energy credits to put back into the   grid 3X of power having been  produced by wind power. For  reference,   figure on your right is the certificate of purchase of 2.3 million MW of   clean, renewable energy of GreenGeeks. That&#8217;s how Green Web Hosting go green. </p>
<h3>  A Few Other Ways To Go Green</h3>
<p>  In case you wonder, yes, there are still  other ways to go green but I don&#8217;t see it being used by any hosting company.  One of the options that I read online is the Cold aisle containment. This  option helps companies minimize the carbon footprints. Leakage of cold air into  the warm air is prevented. This works by reducing the consumption of power by  improving the cooling system. Similarly, the chloride power protection system  is also as a good source of uninterrupted power supply. This is a chemical  mixture which conserved power up to 100% and recycling the resources. Thereby  it is very profitable and economical. </p>
<h3>Green &#8211; A Factor In Web Host Shopping?</h3>
<div id='floatright'><img src="http://www.webhostingsecretrevealed.com/images/2011/0311-1.jpg" alt="Green Hosting - A Must?" /></div>
<p>  The idea of Green Web Hosting  is aimed at convincing internet users that  there are no negative effects on their natural environment. Yes, theoretically,  it does reduce your carbon footprint and perhaps make you feel better, that you  have done some good for the earth.  But in reality, I believe (read:  personal opinions with no fact support) the impact (of  using a Green Web Host) is rather small. Hey, these hosting companies actually  did not reduce &#8216;dirty&#8217; energy consumption directly. These hosting companies are just purchasing  Energy Credits Certificate and offsetting their power consumption. It feels like the same argument of <a href="http://www.ibpa-online.org/membersarea/shownews.aspx?id=2984">Is E-Reading Really Greener?</a>, don&#8217;t you think?</p>
<p>Personally,  I do not take in the &#8216;green factor&#8217; when I am searching for a web host. Rather,  I am more concern with the server uptime, response rate, prices, and so on. If  the web host is green, great; if it is not, I&#8217;ll live with it. There are tons of  better ways to make our earth a better place and I would say going green on web  hosting is not the most effective ways. </p>
<p>But then again, that&#8217;s me. Should you factor &#8216;Green&#8217; in the checklist when shopping for a web host? Well, that&#8217;s up to you! <img src='http://www.webhostingsecretrevealed.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-basics-of-green-web-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keeping Your Head in the Cloud</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-keeping-your-head-in-the-cloud/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-keeping-your-head-in-the-cloud/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 02:47:34 +0000</pubDate>
		<dc:creator>Guest Poster</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3311</guid>
		<description><![CDATA[Cloud computing has officially moved on from being just a buzz word. Start ups, ecommerce giants and freelancer web designers have all embraced cloud technology in some form – from Google Apps to Basecamp. Benefits of Cloud Hosting Cloud computing (or, cloud hosting) offers some pretty exciting opportunities to web designers and web developers. In [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingsecretrevealed.com/images/2011/0304-3.jpg" alt="Cloud Web Hosting Services" class="border" /></p>
<p>Cloud computing has officially moved on  from being just a buzz word. Start ups, ecommerce giants and freelancer web  designers have all embraced cloud technology in some form – from Google Apps to  Basecamp. </p>
<h2>Benefits of Cloud Hosting</h2>
<p>  Cloud computing (or, <a href="http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-cloud-hosting/">cloud hosting</a>) offers some pretty exciting  opportunities to web designers and web developers. In particular cloud servers  and hosting enable web developers to develop scalable web apps and create  websites backed by large environments that traditionally were only available as  expensive high-end dedicated server clusters. </p>
<p><b>Why Cloud Hosting is becoming more important for developers and web designers?</b></p>
<p>  Cloud hosting provides users with a  scalable, on-demand server infrastructure on which to build web based apps and  websites. The user can grow capacity or scale it back depending on their  requirements – a feature that could potentially change the way web developers  (in particular web app developers) use hosting. Web designers will also find  this factor useful for controlling &amp; handling peaks in traffic that might  result from &quot;Slashdot&quot; effects or website testing. </p>
<p><strong>Cloud Hosting &#8211; VPS Hosting With Better Flexibility</strong></p>
<p>  Cloud hosting is based on virtualization  technology which is similar in principle to that which was used by Virtual  Private Servers (VPS). The benefit of traditional VPS servers was that it  provided a fraction of a physical machine at lower cost than buying a complete  dedicated server. Performance was acceptable and each VPS had its own degree of  configuration independence. </p>
<p>  The development of processor power and  virtualization hypervisors now means that virtualization flexibility and  performance is now significantly better than ever before. For example Linux KVM  (a virtualization engine) can now support many virtual servers running  unmodified versions of Linux, Windows, FreeBSD etc on one physical machine with  minimal virtualization overhead. The true benefit of cloud hosting and  virtualization is the ability to create and resize servers without the need to  buy additional hardware or waste time on taking the physical machine apart for  an upgrade. With a cloud server you can create extra servers for your site,  increase the size of your existing servers or delete redundant servers and see  the effect immediately. </p>
<p><strong>Cloud Hosting &#8211; Easy To Manage</strong></p>
<p>  The benefit with today&#8217;s virtualization  services, in particular cloud hosting, is that the process of managing your  cloud server is easy. You get a web control panel to adjust your capacity, APIs  to automatically scale capacity and on-demand hourly billing so that you only  pay for the capacity which you actually use when you are actually using it. </p>
<p>  There are many types of web site and web  application where the flexible, scalable capacity offered by cloud hosting  makes sense. Peaks and troughs are the most obvious reason to invest in a  scalable cloud server. Ecommerce sites that get hit during the busier holidays,  sites that have high value offers or product discounts, high profile PR and the  natural increase of site popularity are all cases where cloud hosting can keep  sites running and grow with demand (and fluctuate when demand returns to  normal). </p>
<p>  For web developers, the best technical fit  for cloud hosting is when a web application has a substantial computational  requirement on the server. Whilst CDNs can cover large-scale high-bandwidth  distribution of static files, and dedicated RAID arrays can be used for heavy  disk uses such as video streaming, neither of these can scale to handle  high-volume complex server-side processing. In this instance, hybrid clusters  of <a href="http://www.elastichosts.com">cloud servers</a>  together with some dedicated machines can be used where a dedicated redundant  database server can be used in conjunction with a scalable front-end web  server.</p>
<h3>Wrapping Things Up</h3>
<p>  In summary, cloud hosting offers new  capabilities to both developers and designers that combines the benefits of a  dedicated server with the flexibility of the cloud. Cloud servers are also a  great opportunity to simply test server and hosting configurations. At  ElasticHosts we have a free <a href="http://www.elastichosts.com/">cloud hosting trial</a> where you can set up your own cloud server to test the technology. Cloud  hosting is becoming more important to the hosting mix and the ability to offer  web apps that use cloud based technology is also becoming a key selling point  of many applications.</p>
<blockquote><p><strong>About the Author: Mike Doyle</strong><br />
Mike currently writes for ElasticHosts – a cloud hosting &#038; server provider based in both the UK &#038; US.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-keeping-your-head-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100% Uptime – Real or Not?</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-100-uptime/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-100-uptime/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 14:11:27 +0000</pubDate>
		<dc:creator>Guest Poster</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3238</guid>
		<description><![CDATA[Undoubtedly, if you have ever contacted or used hosting sites, you’ve noticed the 98.9%, 99.9% and even 100% server uptime labels there. Normally, you would think “Well, 99.9% sounds very good indeed, 0.01% downtime is no big deal” and you would be right. What many people are missing, however, is that even if the server [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingsecretrevealed.com/images/2009/0603-1.jpg" alt="Web Hosting Server Uptime" class="border" /></p>
<p>  Undoubtedly, if you have ever contacted or used hosting sites, you’ve noticed the 98.9%, 99.9% and even 100% server uptime labels there. Normally, you would think “Well, 99.9% sounds very good indeed, 0.01% downtime is no big deal” and you would be right. What many people are missing, however, is that even if the server is reachable, it doesn’t necessarily mean that it is functioning properly. In fact, there are a lot of other things that can go wrong with a server. The 99.99% uptime sticker does not provide any guarantee that your business will not encounter other problems while the server is up. Hosting providers often calculate uptime in ways that are not so intuitive from a user’s point of view and in some cases they do not take into account certain <a href="http://www.websitepulse.com/services/why.monitor.losses.php" target="_blank">website downtime</a>.</p>
<h3>Not All Downtime Is Counted!</h3>
<p>In the first place, you have to keep in mind that not all downtime is counted (e.g. in most cases the scheduled downtime is not even considered). Hosting companies will not willingly include these several hours of downtime to their statistics. When they calculate the monthly server uptime the planned services interruptions are not deducted.
</p>
<p>
(Jerry&#8217;s note: Trust me, that&#8217;s true for certain web host! This is why hosting shoppers are advised to read third-party <a href="http://www.webhostingsecretrevealed.com/web-hosting-review/">hosting reviews</a> and <a href="http://www.webhostingsecretrevealed.com/updates-news/updates-hostgator-uptime-review/">regular updates on server uptime</a>.)
</p>
<p>Moreover, some hosting companies are also inclined to overlook shorter downtime periods. Outages of 3-5 minutes are not considered significant and are also not included in the 99.9% stats. But, in the end of the day, multiple short downtime periods can actually add up and make a difference.
</p>
<p>One more thing to consider &#8211; a 1% difference means twice the trouble. 99.9% uptime in fact shows a downtime of 8 hours and 45 minutes per year. So, if the sticker reads 98.9%, the downtime value reaches 17 hours and 30 minutes.
</p>
<p>You have to accept the universal truth that resources are limited. “Unlimited” is just a euphemism for “enough for the majority of the common users”.  But what if your business is not a common one and demand is high? There may be other significant sites that share the same hosting hardware with you. Sooner or later, this may lead to a server overload and thus result in high loading times, broken transactions, etc. In a case like this, the server will still be online, but the performance will be far below your needs. One good way to detect such problems quickly is <a href="http://www.websitepulse.com/services/transaction.monitoring.php" target="_blank">application monitoring</a>. </p>
<h3>Bottom Line</h3>
<p>  Let’s face it – 100% is not easily achievable. Something is bound to go wrong eventually. There will be problems with network backbones, power failures, software and hardware issues and even human errors. So, instead of trying to find the ultimate hosting provider, get a decent one with good server uptime and performance, 24-hour technical support and frequent backups. And make sure to get a reliable remote website monitoring service, just in case. It might just turn out to be the best money you ever spent.</p>
<blockquote>
<div id='right'><img src="http://www.webhostingsecretrevealed.com/images/2011/0314-1.jpg" alt="Guest Post Author" /></div>
<p><strong>About The Author: Boyana Peeva</strong></p>
<p>Boqna Peeva studied journalism at the Valdosta  State University in Valdosta, GA, USA, and graduated with a Bachelor degree in  2009. She is currently studying an MBA at the International University College in  Bulgaria, Europe where she is originally from. While she was in the United States  (2004-2009), she worked at the local newspaper The Valdosta Daily Times, where she  did freelance writing at first, and then became a business writer for the  Sunday business section of the newspaper. </p>
<p>After Boqna Peeva returned to Bulgaria, she  started working for an Irish company called Taxback, where she was teamed up with  the SEO guru of the company. She was a blogger for a while there and learned more  about &nbsp;SEO, blogging, online journalism and marketing. </p>
<p>Boqna Peeva is currently a marketing  specialist at <a href="http://www.websitepulse.com/">WebSite Pulse</a> and a PR  specialist at the International University College. She enjoys both jobs equally  as shee the opportunity to communicate with a lot of people, to write and to  further explore how to optimize the Internet for any purpose. WebSite Pulse offers web server and  website monitoring <a href="http://www.websitepulse.com/services/index.php">services</a> that have helped thousands of customers to save a lot of money and to save  their e- businesses through increasing their websites’ efficiency.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-100-uptime/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Basic of Memcached Hosting</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-the-basic-of-memcached-hosting/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-the-basic-of-memcached-hosting/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 08:29:40 +0000</pubDate>
		<dc:creator>Guest Poster</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=3099</guid>
		<description><![CDATA[What is Memcached Hosting? In a world full of and dependent on technology, few could deny that it is always changing, and at a dizzying pace. When it comes to the internet, the demand for portability, quicker connection speeds, and flexible costs has lead to various plans for both limited and unlimited hosting. The purpose [...]]]></description>
			<content:encoded><![CDATA[<h2>What is Memcached Hosting? </h2>
<p><img src="http://www.webhostingsecretrevealed.com/images/2011/0208-2.jpg" alt="Memcached Hosting" /></p>
<p>  In a world full of and dependent on technology, few could deny that it is  always changing, and at a dizzying pace. When it comes to the internet, the  demand for portability, quicker connection speeds, and flexible costs has lead  to various plans for both limited and <a href="http://www.hostingobserver.com/unlimited-hosting.php">unlimited  hosting</a>. The  purpose for these plans are simple; the delivery of content and the processing  of applications are improved, a fact that cannot be overlooked.</p>
<p>  With each passing day, open source communities and premium service providers  edge increasingly closer to the other, to the point that the gap is almost  non-existent. With this benefit comes strengthened server resources, and this  new trend is recognized as a member of the long list of internet modifications.</p>
<p>  Developed by the company <a href="http://www.danga.com/">Danga  Interactive</a>,  Memcache was first used on a website that goes by the name of Live Journal.  Soon after this was released, it gained use on other websites due to the fact  that the source code was considered a hot commodity. Among more well-known  sites that use it regularly, Craigslist, Twitter and YouTube are included.</p>
<p>  Open source design has a lot of impressive contributions under its belt;  memcache and its attachment to open source code only proves this to be true.  Incomplex in nature, it has gained a following of enthusiasts who would  consider it one of their favorites. Made of key-value in-memory, it stores data  from page rendering, API calls, and database calls. At the end of this series  of actions, dynamic applications will experience increased speed.</p>
<h2>  The Very  Definition of Caching </h2>
<div id="floatright"><img src="http://www.webhostingsecretrevealed.com/images/2011/0208-3.jpg" alt="Memcached" /></div>
<p>  It may be confusing, but with better understanding of caching it is easier to  appreciate. At the base of the matter, a cache involves the duplication of  data, making it unnecessary to have the original data in order to view  something. In other words, it is a special storage area that holds frequently  used data temporarily. </p>
<p>  If it is still unclear, another way to explain caching is through the use of  web data. For many people who frequent the internet, it is standard to have a  favorite website that they visit frequently and may even have bookmarked.  Whenever they visit these places, if the data of the pages was not saved, it  would take a lot longer for everything to load properly. A cache&#8217;s job is to  store some of the data on the hard drive of the computer so that everything  will load quicker. There is no need for the browser to spend extra time going  through the database located at the server.</p>
<p> <u>Memcache makes everything run in a more efficient manner. It is sensible in  design, helps where it is needed, and is popular as a result. To illustrate,  the basic architecture of a memcache-host stack would commonly comprise of the  OS, the server layer, the cache layer, the database and  the page script layer. When the data is  stored in the memory caching layer, the database of the website receives  minimal hits during the attempt to get the information. When a great number of  interactive sites house a database that holds their information, this is even  more so important.</u></p>
<h3>  The Many  Functionalities of Memcached As A Service</h3>
<p>  Beyond the obvious benefit of server load optimization, having memcache in your  host opens up a wider range of capabilities for your dynamic website. The following functionalities  can  be achieved with memcache support:</p>
<p><strong>1. Communication Management </strong>- Better spam control,  and distributed locking service.</p>
<p><strong>2. Online-member tracking</strong> – Member activity  transparency and easier maintenance of expired-member purges.</p>
<p>  <strong>3. Scalable web services</strong>  – Unrestricted use of  resource intensive features such as CRON.
  </p>
<p><strong>4. Versioning System</strong>  – More server backup</p>
<p>  <strong>5. Summarize Db update demographics</strong>  – Increased accuracy  of update analysis</p>
<p>  Memcached as a Service is far from perfect though because of its  inherent weakness in security, but for high-traffic dynamically generated  websites memcached hosting ultimately is a great option to consider.</p>
<blockquote>
<div id="right"><img src="http://www.webhostingsecretrevealed.com/images/2011/0208-1.jpg" alt="Guest Post Author" /></div>
<p><b>About the author: Gwen Davis</b></p>
<p>Gwen Davis is the Site Manager of Hosting Observer and Web Hosting Search – Objective <a href="http://www.hostingobserver.com/hosting-reviews.php" target="_blank">web hosting reviews</a> of popular web hosts. A firm supporter of open source, she also blogs for <a href="http://tek-tips.nethawk.net/" target="_blank">Tek-Tips.NetHawk</a> and <a href="http://allforlinux.com/" target="_blank">AllForLinux.com</a>. If the article has been helpful to you, you can follow the author <a href="http://twitter.com/GwenDCipher" target="_blank">@GwenDCipher</a>.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/guest-posting-the-basic-of-memcached-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why ping test is not the right hosting review method?</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/why-ping-test-is-not-the-right-hosting-review-method/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/why-ping-test-is-not-the-right-hosting-review-method/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 09:04:59 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[web host]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=1249</guid>
		<description><![CDATA[It’s common that people like to do things in their own way. When it comes to web host shopping, some shoppers just like to use their own method to review hosting companies. Now I’m absolutely alright with readers that prefer to go with their own methodology; but it is important for me to inform you [...]]]></description>
			<content:encoded><![CDATA[<p>It’s common that people like to do things in their own way. When it comes to web host shopping, some shoppers just like to use their own method to review hosting companies. Now I’m absolutely alright with readers that prefer to go with their own methodology; but it is important for me to inform you that certain review methods are just incorrect.</p>
<div id='right'><img src="http://www.webhostingsecretrevealed.com/images/2009/0604-5.jpg" alt="Example of site speed results" /></div>
<p><strong>The Infamous Ping Test</strong></p>
<p>Some so call ‘tech shoppers’ like to act smart and run ping test on hosting provider’s website.  </p>
<p>“This will show how fast the web host server is.” &#8211; that’s what my friend once told me. The ping test method is so popular that even experienced webmasters will think it actually works.</p>
<p><strong>How to do a ping test?</strong></p>
<p>A ping test is done when a short request is sent to the web server via your local machine. For example if I wish to ping-test Bluehost, I simply open my command prompt and hit ‘ping bluehost.com’. The ping results will come back in a time figures (normally in ‘ms’) to show how long it takes to get reply from the web server.</p>
<h3>Why pinging the web host website will not work?</h3>
<p>First of all a ping test is NEVER a good method to check on a web host server response rate. This is due to the fact that how well a web server response on a ping request depends on many factors that are not controlled by a web host (for example: distance between your computer and the servers).</p>
<p>Most importantly, you are (most of the time) hitting the wrong horse when you ping the web host’s website. Hosting providers are smart nowadays; they simply do not host their website on the same server as their customers. In fact, some web hosts even operate their websites on a different network system! Now tell me, how can you determine server response rate by pinging the web hosts’ websites? </p>
<h2>How to check the speed of a web host?</h2>
<p>If you would like to know how fast a web host is, the better way is to find a website that’s hosted on the web host instead of the web host’s website. Download a few files and wandering around the website should reveal what’s the web host response rate.</p>
<p>Another good way to check a server response rate is to run a website speed test online. Website speed test tools (like what you have on <a href="http://www.web-hosting-top.com/web-hosting/tools.website-speed-test" rel="nofollow">Top-Web-Hosting.com</a> and <a href="http://www.websitegoodies.com/tools/speed-test.php" rel="nofollow">WebsiteGoodies.com</a>) are handy to check and compare web hosts’ speed performance. </p>
<p>Example of test results:<br />
<img src="http://www.webhostingsecretrevealed.com/images/2009/0604-4.jpg" alt="Example of site speed results" class="border" /></p>
<h3>A few more words on website load time issue</h3>
<p><strong>Who’s responsible for a slow website?</strong></p>
<p>A website’s response rate is dependent on many factors; including the hosting server CPU load, RAM usage, network speeds, and the web program’s efficiency. Do note that not every one of these factors are web host’s responsible.For instance, it’s the web owner’s responsibility to assure that his/her website is coded efficiently to avoid server resources wastage. Sometimes, it can be your ISP that’s responsible for the slow website.</p>
<p><strong>How slow load time will affect your website?</strong></p>
<p>Slow website load time is a problem that you cannot afford to overlook. A few critical consequences with slow website load time, including permanent lost of website traffics and increase of advertising cost are simply destructive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/why-ping-test-is-not-the-right-hosting-review-method/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>About Domain Privacy</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/about-domain-privacy/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/about-domain-privacy/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 10:24:09 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[domain privacy]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=2490</guid>
		<description><![CDATA[This article is a follow up on my previous article about domain names. Most people do not realize that your domain registration details are often made freely available online. Personally identifiable information that you (as a domain owner) would probably like to keep confidential is exposed to virtually anyone with internet access – yes, just [...]]]></description>
			<content:encoded><![CDATA[<p>This article is a follow up on my previous article about <a href="http://www.webhostingsecretrevealed.com/web-hosting-knowledge/what-you-need-to-know-about-domain-names/">domain names</a>. Most people do not realize that your domain registration details are often made freely available online. Personally identifiable information that you (as a domain owner) would probably like to keep confidential is exposed to virtually anyone with internet access – yes, just a simple ‘WHOIS’ search and your name, residential address and email address, telephone numbers, etc&#8230;  will be exposed to the public.</p>
<p><strong>Sounds scary? </strong></p>
<p>In fact this is why the practice of using a fake address and registrant name for the WHOISdata is still pretty common nowadays for self protection. However, the ICANN (Internet Corporation for Assigned Names and Numbers), global regulatory body for the domain name industry) has a policy stating that each and every registrar is required to keep a WHOIS database that contains publicly accessible contact information for all names that have been registered. What make things worse, if you do not submit correct or complete information; your domain name is subject to being deleted from the registry.</p>
<p>I know, it’s depressing to realize how limited is our defense against data miners, spammers, and identity thefts. I bet if people knew that they could be put in such a bind, they would probably think twice about registering a domain name.</p>
<p>But wait, for every problem on the internet there is a solution. This is where domain privacy (also, WHOIS Privacy) comes in. Domain privacy is a type of addon service mainly offered by domain registrars. </p>
<h3>How domain privacy works?</h3>
<p>A user buys privacy from the company, who in turn replaces the user&#8217;s info in the WHOIS with the info of a forwarding service (for email and sometimes postal mail, done by a Proxy server) such as &#8220;Domains by Proxy, Inc.&#8221; or eNom&#8217;s &#8220;Whois Privacy Protection Service&#8221;. </p>
<p><strong>Is my private info 100% safe after utilizing domain privacy feature?</strong></p>
<p>The domain privacy feature is often seen as the ‘ultimate protection’ on WHOIS info. Just a simple search online would leads you to dozens of articles stating the benefits of domain privacy. Spam protection and info shielding are two of the most trumpeted benefits of a domain privacy feature. </p>
<p><img src="http://www.webhostingsecretrevealed.com/images/2010/0322-1.jpg" class="border" /></p>
<p><strong>But wait, nothing is completely safe online. </strong></p>
<p>A domain privacy feature is like a firewall in computer network – it simply shields your info from the public but your data is still kept in registrar’s database and there is still risk of info leaking. To many registrars, it takes little persuasion to release the so-called &#8216;private&#8217; information to the world, requiring only a phone request or cease and desist letter. </p>
<p>This explains why some webmasters will take the hassle of ordering using money order (to avoid exposing credit card info) and registering their domain name offshore (to reduce the chance of local syndicate attacks).</p>
<p>Back to our question: Is private information 100% protected under domain privacy feature? Not really. In many cases, it&#8217;s just a feature people buy to help them to sleep better at night.</p>
<h3>More readings about domain privacy</h3>
<p>I hope this short article will raise your awareness about WHOIS info and the privacy protection you can have against unethical acts. There is an in-depth article (<a href="http://news.cnet.com/Private-domains-not-so-private/2100-1038_3-5833663.html ">Private Domains Not So Private</a>) by Daniel Terdiman on CNet back in year 2005, I suggest you to read it if you wish to learn more on the topic. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/about-domain-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Rationale Behind Extended Validation (EV) SSL Certificates</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-rationale-behind-extended-validation-ev-ssl-certificates/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-rationale-behind-extended-validation-ev-ssl-certificates/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 03:26:35 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=2667</guid>
		<description><![CDATA[Guest post written by Garen Arnold. The Rationale Behind Extended Validation (EV) SSL Certificates – The Value Added Business Trust is a perennial issue on the Internet – it has always been and (probably) will always be. But the reality is that today’s technology has made online business transactions more the norm rather than the [...]]]></description>
			<content:encoded><![CDATA[<p>Guest post written by Garen Arnold.</p>
<div id="floatright"><img src="http://www.webhostingsecretrevealed.com/images/2010/0721-1.jpg" alt="SSL Certificates" /></div>
<p><strong>The Rationale Behind Extended Validation (EV) SSL Certificates – The Value Added Business</strong></p>
<p>Trust is a perennial issue on the Internet – it has always been and (probably) will always be. But the reality is that today’s technology has made online business transactions more the norm rather than the exception. </p>
<p>From the end-user’s point of view, convenience against security presents a dilemma. How do I know I’m looking at a legitimate website? Is that really my bank’s website I’m looking at on my browser? Is there real business behind the site that offers such insanely cheap price? Those questions and other similar ones are common enough – and certainly valid. From the perspective of the E-business website owners on the other hand, such mistrust and ambivalence is bad for business. Understandably, everyone seeks guarantee and assurance when they do business online. </p>
<h2>The Basics of SSL Certificate</h2>
<p>Secure Sockets Layer or SSL was developed by Netscape in 1994. It’s a worldwide standard security technology which creates encrypted link to ensure all data that passes between the web server and the web browser remains confidential and secure. Millions of consumers recognize and associate the “padlock” displayed on the browser as the icon of trust on the website.<br />
E-business providers protect their customers and guarantee that online transactions are kept safe and private through SSL protocol, which they can only use upon issuance of the required SSL certificate. This certificate, which is issued by the Certification Authorities or CA, provides the opportunity for e-Business website owners to demonstrate their trustworthiness; thus, leverage an increased level of trust among visitors and turn them into paying customers.</p>
<p><strong>What the Customers See</strong></p>
<p>URLs with an SSL connection use https instead of just http. The “s” at the end obviously stands for “secure”. When the customer clicks on the Padlock your SSL Certificate and company details are displayed.</p>
<p>Company details. SSL Certificates typically contain your domain name and company name; your address, inclusive of city, state and country; details of the Certification Authority responsible for the issuance of the Certificate; and the expiry date of the Certificate. Take note that only certificates issued by High Assurance Certification Authorities actually display company details; which is another assurance that customers may be looking for when making an online purchase. </p>
<p>Expiry date. When a browser connects to a secure site, it does three things: It retrieves the SSL Certificate and check that it has been issued by a Certification Authority that the browser trusts, that it is being used by the website for which it has been issued, and that it has not expired. Failing on any one of these checks causes a warning to be displayed to the end user. Some customers also get concerned when they see that the certificate is soon to expire. It is important therefore, to renew your certificate with ample time to spare before the actual expiration date. A smart alternative is to purchase a multi-year certificate to minimize set up costs; plus, your customer will find it reassuring that you will still be around in the years to come.</p>
<h3>Why You Need SSL Certificates</h3>
<p>Face it; people never buy from salesmen they don’t trust. Majority of consumers these days expect security to be an integral part of any online service they use; they require that details they provide on the Internet are kept private and confidential. For most customers, the only time they will ever consider purchasing products or services online is when they are assured to full satisfaction that their detailed information is safe and secure. Thus, you need to allay consumer apprehensions by providing trust indicators. Just like the real world, it is natural need for people to feel confident before going down an unknown path. The SSL Certificate guarantees your customers that you take their security seriously and this gives them the confidence that you have eliminated the risk usually associated with online transactions.</p>
<h3>The EV Certificate – Do you really need one?</h3>
<p>Extended Validation or EV Certificate, which was introduced in 2007, is a significant update of the SSL Certificate validation process that introduced substantial changes to verification methods used in authenticating the identity of online businesses. It provides consumers with a higher trust level while online by identifying which websites are legitimate businesses with verifiable credentials. These new certificates are indicated when the address bar on a visitor’s browser turn green.</p>
<p>SSL Certificate Authorities are already performing thorough and meticulous checks to validate the legitimacy of businesses. However, various CAs currently using non EV certificates employ varied types and levels of authentication; sometimes creating online security vulnerabilities that are frequently exploited for fraud, identity theft and other Internet crimes.</p>
<p>In contrast, the validation process for EV Certificates requires all CAs to rigorously scrutinize each business, using a prescribed set of sources and methods, before certificates are issued. The new certificates oblige businesses to complete a comprehensive and methodical documentation and verification process of current business licenses and incorporation paperwork. The CAs has to verify the accuracy of the data through additional sources; which may include on-site visits to the business, in some cases. This is aimed at resolving the variations in validation process; thus enhance Internet security features.</p>
<p>To the end users, this means that e-Businesses that have EV SSL certificates are much more likely to be legitimate entities, compared to those that only have the standard SSL certificates, which can be obtained by anyone even without verification. </p>
<p>The bottom line: Extended Validation SSL certificates are the latest secure certificates that offer the highest level of outward security to end users on the market today. So if you ask if it is worth it to have an EV SSL Certificate, the answer is: Absolutely, YES!</p>
<blockquote><p><strong>About the author </strong></p>
<p>This article was written by Garen Arnold, who is a graphic designer out of Kansas City, Missouri. Garen provides people with the <a href="http://www.the-best-web-hosting-service.com">Best Web Hosting Service</a> by using his expertise to help people choose the best web hosting service for their business.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/the-rationale-behind-extended-validation-ev-ssl-certificates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Key Advantageous of Cloud Hosting for Small to Medium Businesses</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/key-advantageous-of-cloud-hosting-for-small-to-medium-businesses/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/key-advantageous-of-cloud-hosting-for-small-to-medium-businesses/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:25:20 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=2631</guid>
		<description><![CDATA[Note: Guest post written by Chris Shelbourn. Introduction The competitive advantage presented by cloud hosting and platform as a service vendors to large scale national and international businesses has been well documented over recent months, with the opportunity for a highly scalable service alongside excellent reliability and near 100% uptime proving to be key factors [...]]]></description>
			<content:encoded><![CDATA[<p>Note: Guest post written by Chris Shelbourn.</p>
<div id="floatright"><img src="http://www.webhostingsecretrevealed.com/images/2010/0713-1.jpg" alt="Cloud hosting services" /></div>
<p><strong>Introduction</strong></p>
<p>The competitive advantage presented by <a href="http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-cloud-hosting/">cloud hosting</a> and platform as a service vendors to large scale national and international businesses has been well documented over recent months, with the opportunity for a highly scalable service alongside excellent reliability and near 100% uptime proving to be key factors in such companies uptake of these services. Larger businesses have been able to roll out PaaS and SaaS to their sales forces and other arms of their operations – safe in the knowledge that they are receiving strong reliability, performance guarantees and 24 hour technical support.</p>
<p>However, as knowledge of such services gradually becomes more widespread, it is not only blue chip organizations that can benefit from the advantages that cloud hosting, PaaS and SaaS can bring to a business environment. Indeed, small to medium sized businesses are gradually beginning to take the plunge and begin to embrace these emerging technologies; seeing an opportunity for cost effective and secure solutions for their IT, software, hosting, system backup and electronic communication needs under 1 fully managed roof. Some of the potential advantages of such services for SMB’s are discussed below.</p>
<h2>Cost Effective, Manageable and Scalable</h2>
<p>By selecting a cloud hosting, PaaS or SaaS package that is tailored to the individual needs of their business, SMB’s can create uniquely bespoke, cost effective solutions that save money on “lump sum” direct costs (such as software licensing, servers etc), and instead replace them with more manageable monthly payments on fixed budgets. Bespoke software packages that are accessed remotely allow also small businesses to pay only for what they need and are easily scalable as a business grows.</p>
<h2>Convenient, Secure and Reliable</h2>
<p>With near 100% uptime and 24/7/365 expert support, cloud hosting services can allow SME’s to focus on the core aspects of their own operations with a minimum fuss, downtime, maintenance and hassle. With this greater reliability and continuity, there is also no need to call in an IT consultant every time there are any issues with your server – thus allowing for further time and cost saving opportunities and greater productivity.</p>
<h2>Space Saving</h2>
<p>Many small businesses simply do not have sufficient office space to house a large, bulky, in house server unit. The remote access available through cloud hosting services therefore gives SMB’s a much needed opportunity to save on precious office space and therefore maximise the potential of the small amount of room they have available for other more pertinent  purposes relevant to the core aspects of their business.</p>
<h2>Eco Friendly</h2>
<p>By eliminating the amount of power consumption that may be used by in an house server and other electronic equipment and instead remotely accessing their hosting, data storage and backup facilities via the cloud platform, SMB’s can in essence become much more eco friendly and green in their day to day business operations – diminishing their carbon footprint while simultaneously saving money by reducing associated costs and electricity bills. </p>
<blockquote><p>
<strong>About the Author</strong></p>
<p>Chris Shelbourn is a freelance writer who has written on behalf of Commensus PLC &#8211; a UK supplier of <a href='http://www.commensus.com/Hosting-and-Virtualisation/Cloud-Hosting-Virtual-Server-Hosting/'>cloud hosting</a> and <a href='http://www.commensus.com/Hosting-and-Virtualisation/Platform-as-a-Service/'>platform as a service</a>, with bespoke packages tailored to the needs of both small and medium sized businesses and large scale international organizations.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/key-advantageous-of-cloud-hosting-for-small-to-medium-businesses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Posting: Standards in the Cloud</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/standards-in-the-cloud/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/standards-in-the-cloud/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 07:02:21 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[clustered computing]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/?p=2583</guid>
		<description><![CDATA[Introduction Everybody in the web hosting industry is obsessed of the words &#34;Clouds&#34;, &#34;Cloud computing&#34; and &#34;Cloud hosting&#34;. But very few discuss standards that companies use to provide Cloud hosting services. Actually It is not like there are any standards in Cloud hosting. Most providers who offer some sort of clustered, grid or cloud hosting services [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<div id="right"><img src="http://www.webhostingsecretrevealed.com/images/2010/0601-2.jpg" alt="cloud hosting" /></div>
<p>Everybody in the web hosting industry is obsessed of the  words &quot;Clouds&quot;, &quot;Cloud computing&quot; and  &quot;<a href="http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-cloud-hosting/">Cloud hosting</a>&quot;. But very few discuss standards that companies use to  provide Cloud hosting services. </p>
<p>Actually It is not like there are any standards in Cloud  hosting. Most providers who offer some sort of clustered, grid or cloud hosting  services do everything from &quot;home&quot;. Today&#8217;s &quot;Clouds&quot; are home-made  technologies! It is like Wild West.</p>
<p>Don&#8217;t get me wrong and I do not underestimate  anyone&#8217;s achievements. RackSpace is great! Other web hosts that run any forms of  grid or cloud infrastructures also deserve attention. But all of them (OK, most  of them) use proprietary technologies which represent their own approach to  cloud computing and virtualization.</p>
<p>Unlike traditional Web Hosting industry, as we know it  for years, the emerging Cloud Hosting market looks like jungle. It is not based  on standards. Thank god that there are companies like Red Hat (ref: <a href="http://www.redhat.com/solutions/cloud/access/guidelines.html">http://www.redhat.com/solutions/cloud/access/guidelines.html</a>) which created standards that can be used as guidelines  from Linux development community. Do I forget Microsoft? Of course not! If we  should count on Microsoft to help us moving to the clouds it would cost us a  fortune and we would fine ourselves tied up to Windows for ages!</p>
<p><strong>In Search of Cloud Hosting  Standards</strong></p>
<p>The automation standards of the Cloud hosting industry  are about to be established! In traditional Web Hosting industry we have  cPanel, Plesk, Direct Admin and other automation software platforms. Web hosts  use them for more than a decade and these platforms have become web hosting  standards. </p>
<p>All these work good both for consumers and providers. From a user&#8217;s perceptive, using these platforms allows consumers to switch servers or to  migrate hosting accounts from one web host to another easily. From the perceptive of hosting  providers,standardized hosting plaforms  help  them to create  stable and reliable IT hosting service models Some web hosts, like Hostway, Aplus, etc. use their  proprietary software to automate web hosting management. </p>
<p>However for most popular  web hosting providers, especially those in shared hosting and virtual private  server (VPS) hosting, base their business models on the server automation standards  mentined above.</p>
<p>The best we can do is to find a way to continue using  these web hosting automation platforms in the new Cloud dominated hosting  industry. This should help small and middle-sized hosting providers to keep  going and to compete (at a leveled ground) with other major Cloud hosting providers. Consumers will also  benefit a lot of standards based Cloud hosting services as it encourages healthy competition among the providers (so you get to choose from hundreds or even thousands  of different cloud hosting service providers).</p>
<p><strong>Bottom line</strong></p>
<p>I think that the hosting industry has always begun  searching for its Cloud standards. Besides the platforms of VMware (too  expensive), Sun, IBM, HP used from  major  corporations, there is a growing demand for more affordable cloud hosting  automation platforms. I can not project which companies will establish  themselves as a providers of automation solutions for the Cloud hosting  industry. A platforms like <a href="http://www.fuscan.com">Fuscan Linux Cloud</a>,  <a href="http://www.cloudlinux.com/" target="_blank">Cloud Linux</a>, <a href="http://www.abicloud.org/" target="_blank">Abicloud</a>, <a href="http://www.azati.com/" target="_blank">Azati</a>, <a href="http://cloudcontrol.de/" target="_blank">CloudControl</a>, etc.</p>
<blockquote>
<div id="right"><img src="http://www.webhostingsecretrevealed.com/images/2010/0601-1.jpg" alt="Dimitar Avramov" /></div>
<p><strong>About the author: Dimitar Avramov</strong></p>
<p>Dimitar Avramov is the CEO and founder of SingleOS LLC, a  producer of Cloud computing generation enterprise automation solutions for the  hosting industry. His company&#8217;s cloud platform Fuscan LBC is a high  availability system for cPanel/WHM based Shared Hosting providers. He is an  owner of <a href="http://www.dawhb.com" target="_blank">Daw Web Hosting Blog</a>  and used to work as journalist in web hosting industry. You can read more of his writing about <a href="http://www.dawhb.com/category/server-hosting/cloud-hosting-server-hosting/">cloud hosting here</a> and follow his tweets at <a href="http://twitter.com/DimitarAvramov">DimitarAvramov</a>.</p>
</blockquote>
<p>*Side note: Got an idea for this blog &#8211; why not write for us? More details about <a href="http://www.webhostingsecretrevealed.com/guest-posting-at-w-h-s-r/">guest posting at W.H.S.R.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/standards-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A brief on Reseller Hosting</title>
		<link>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-reseller-hosting/</link>
		<comments>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-reseller-hosting/#comments</comments>
		<pubDate>Wed, 26 May 2010 09:43:09 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Web Hosting Knowledge]]></category>

		<guid isPermaLink="false">http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-reseller-hosting/</guid>
		<description><![CDATA[The concept behind reseller hosting is simple: A hosting reseller buys a ‘reseller hosting account’ from a service provider (a larger hosting company or a data center owner) and then sells it to others for a profit. How Reseller Hosting Works? Its business model is pretty much the same with any offline retailing business &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingsecretrevealed.com/images/2010/0525-1.jpg" alt="Reseller Hosting " class="border" /></p>
<p>The  concept behind reseller hosting is simple: A hosting reseller buys a ‘reseller  hosting account’ from a service provider (a larger hosting company or a data  center owner) and then sells it to others for a profit. </p>
<p><strong>How Reseller Hosting Works?<br />
</strong>
<p>  Its  business model is pretty much the same with any offline retailing business &#8211; the  reseller may purchase the hosting capacities (bandwidth/hard disk  space/software/CPU power) themselves at cheaper rates and then sell them at  higher &quot;retail&quot; rates. Typically, hosting resellers often operate  their business under an independent brand or label. In other words, a hosting  reseller will not inform the end users that he/she is selling someone else’s  services.</p>
<p>  It  does not need extensive technical knowledge to be a hosting reseller. In most  cases, the data center operator is the responsible party for hardware  maintenance and configurations. A hosting reseller is more like an agent where  his/her jobs are mainly interfacing with the existing customers and winning  more new customers. This is why a hosting reseller firm often spend greatly on  advertising campaigns. </p>
<h3>  The  economics of reseller hosting</h3>
<p>  Let’s  do some simple mathematics and see how a reseller host make money. </p>
<blockquote><p>  John  purchases Hostgator’s Copper Reseller Package and gets 80GB disk space, 700GB  bandwidth at $34.95 per month. He then breaks the package into 10 separate accounts  with 8GB storage and 70GB bandwidth each and sells it for $8.99/mo. At the end  of the day, John’s profit (assuming that he sold all 10 accounts) will be  $89.90 &#8211; $34.95 = $54.95/mo. Not much, but it’s still some sweet money  considering that there are not much work to be done. </p>
</blockquote>
<p>  Repeat  that for another 9 times and you’ll get a nice $550 passive income per month.  In fact, why just stop at doing 10 sales – the Internet is an ever-expanding  world, why not buy and resells more? 100 customers earn you $550/mo;  why not go 1,000 or 2,000 or even 5,000! </p>
<p>  Well,  that seems like a sure-fire business model, why not we just start one!</p>
<p>  But  wait, the question to ask is why: Why should your customers buy your *limited*  hosting package when other larger web hosts are selling cheap *unlimited*  hosting? </p>
<p>  Having  a unique selling point is a must for every successful hosting reseller. Some might  offer free CMS and blog installation services; some might help in website  design and development; but what most successful resellers do is to focus on profitable  niche markets (example: Europe/India/Asia markets, gaming community, specific  script user community, etc).</p>
<h3>  How  to choose a good reseller hosting provider?</h3>
<p>  Here  are some important consideration factors when you are searching for the right  reseller hosting provider. </p>
<p>  <strong>Reliability</strong>  Needless  to say, your reputation as a hosting reseller depends a lot on the quality of  your provider’s servers and network. Make sure that you stick with reseller  hosting provider that has strong uptime record or the sky will be falling on  your business.</p>
<p><strong>Customer  Supports</strong> Efficient  customer support is another important characteristic you should be looking for.  Remember that you will have a lot of different clients to handle thus chances of  things get screwed up are very high. A dedicated team of technical support that  are able to respond to your requests is extremely important.</p>
<p><strong>  Web  Hosting Features</strong> Basic  hosting features like bandwidth, disk space, and addon domain capacity are vital  for hosting resellers as these are the ‘products’ that determine how many  accounts you can create and sell. More allocated bandwidth or addon domains  means more profits.   </p>
<p><strong>Scalability</strong>   If  you are just starting out reselling hosting services, you may want to pay for  only a few domains at a time, and provide a very basic range of applications.  However, as your business grows, the number of sites you service will increase  and you may also need to increase the range of applications you can provide  your customers. Does your host provide a relatively hassle-free way to upgrade?  For instance, could you move easily from a shared server arrangement to a  dedicated server without needing to change hosts?</p>
<h3>  Wrapping Things Up…</h3>
<p>  You  probably ended up in this post because that you are new to all these but  interested to get your hand wet soon. If so, all I have to say is ‘Just Do It!’.  Web hosting is a huge industry and it is far from being saturated – competition  is steep but I am pretty sure there is still money to be made! </p>
<p>  And,  in case my article does not clear your doubts fully. If that is the case, I would  suggest further reading at this valuable section of Web Hosting Talk Forum: <a href="http://www.webhostingtalk.com/forumdisplay.php?f=3" target="_blank">Reseller Hosting (WHT)</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-reseller-hosting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.webhostingsecretrevealed.com @ 2012-02-04 02:39:27 -->
