
<?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>Web Hosting Break™ &#187; Web Hosting Tutorials</title>
	<atom:link href="http://www.webhostingbreak.com/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingbreak.com</link>
	<description>Best Web Hosting Company Reviews</description>
	<lastBuildDate>Fri, 03 Feb 2012 00:43:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Securing Your LAMP Stack: Hiding Server Information</title>
		<link>http://www.webhostingbreak.com/tutorials/securing-your-lamp-stack-hiding-server-information/</link>
		<comments>http://www.webhostingbreak.com/tutorials/securing-your-lamp-stack-hiding-server-information/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 19:28:11 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=4926</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p>Security is a major concern in today&#8217;s world. Hackers will take every possible opportunity to deface your website and exploit the system. Ensuring the security for a website or web application should be done in both ways &#8211; securing the web application as well as securing the web server. Today we shall discuss how you can tweak some security options on your LAMP Stack. </p>
<p>Whenever a web server serves the responses to web browsers (or other clients), the server provides some &#8220;header information&#8221;. By default Apache (the &#8220;A&#8221; in LAMP) web server publishes much details about the environment. PHP also exposes itself sometimes in the headers. An expert hacker shall take advantage of the information collected from these headers. If you know the operating system, the web server, version of scripting engine and other minor but important bits of a hosting environment, it becomes quite easy for an attacker to find specific bugs or security flaws in those technologies and exploit them. You should always upgrade your available technologies but most importantly you should never let these sensitive information leak out in the wild. Luckily we can configure both Apache and PHP to remain silent while keeping the potential abusers in the dark. </p>
<p>These configuration requires administrative privileges on the system. The tutorial covers Ubuntu Linux and assumes that you have the required level of permissions to make these changes. </p>
<h2> Configuring Apache</h2>
<p>In case something bad happens, we should first back up the default apache configuration file so that we can always restore. Use this command to back it up:</p>
<pre class="brush: bash; title: ; notranslate">
sudo cp /etc/apache2/apache2.conf /etc/apache2/apache2.conf.bak
</pre>
<p>Now, let&#8217;s edit the configuration file:</p>
<pre class="brush: bash; title: ; notranslate">
sudo nano /etc/apache2/apache2.conf
</pre>
<p>Nano is a very smart and powerful text editor on the terminal. If you (unfortunately enough) don&#8217;t have nano installed, you can install it by typing:</p>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install nano
</pre>
<p>If you have nano (I hope you have) already, skip this step. You should now see the configuration file open in the terminal:<br />
<a href="http://www.webhostingbreak.com/wp-content/uploads/2011/08/23.png"><img src="http://www.webhostingbreak.com/wp-content/uploads/2011/08/23-300x166.png" alt="" title="Apache Config ServerTokens" width="300" height="166" class="alignleft size-medium wp-image-4927" /></a> Press the down arrow to scroll down to the section that reads &#8220;ServerTokens Full&#8221;. This portion asks the apache to send full information in the headers. That is not what we want. If you look at the text, you can see the available options. We shall go for &#8220;Prod&#8221; which emits the least information. So, let&#8217;s change it so that it now reads &#8220;ServerTokens Prod&#8221;. Now, scroll down a bit more and find the &#8220;ServerSignature On&#8221; and change it to &#8220;ServerSignature Off&#8221;.  Now press Ctrl + O to save the changes and then Ctrl + X to exit. </p>
<h2> Configuring PHP </h2>
<p>Now, we need to do the same thing for PHP. First, back up the original PHP configuration file:</p>
<pre class="brush: bash; title: ; notranslate">
sudo cp /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.bak
</pre>
<p>Open the configuration file:</p>
<pre class="brush: bash; title: ; notranslate">
sudo nano /etc/php5/apache2/php.ini
</pre>
<p>Change “expose_php = On” to “expose_php = Off”. Like before, press Ctrl + O to save the changes and then Ctrl + X to exit.<br />
<a href="http://www.webhostingbreak.com/wp-content/uploads/2011/08/25.png"><img src="http://www.webhostingbreak.com/wp-content/uploads/2011/08/25-300x166.png" alt="" title="Configuring PHP" width="300" height="166" class="alignleft size-medium wp-image-4930" /></a> After configuring PHP and Apache, we need to restart the web server so that the changes take affect. Remember, this is very important. The settings will not be active until you reload the server. </p>
<pre class="brush: bash; title: ; notranslate">
sudo /etc/init.d/apache2 restart
</pre>
<p>In the coming posts, I shall try to focus on the different aspects of web application securities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/securing-your-lamp-stack-hiding-server-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up and configuring FTP Server on Ubuntu</title>
		<link>http://www.webhostingbreak.com/tutorials/setting-up-and-configuring-ftp-server-on-ubuntu/</link>
		<comments>http://www.webhostingbreak.com/tutorials/setting-up-and-configuring-ftp-server-on-ubuntu/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 18:22:18 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=4859</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p>FTP is the best way to transfer (read upload) files to the web servers from our PC. FTP stands for File<br />
Transfer Protocol. It&#8217;s very unlikely that you haven&#8217;t heard about FTP servers yet. In case you really<br />
haven&#8217;t, <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol">FTP on Wikipedia</a>.</p>
<p>If you are using a shared host, you probably already have FTP server installed and<br />
ready for access. But if you are using a dedicated server, you shall have to install FTP server<br />
and configure it yourself before you can start uploading files using a FTP client like Filezilla. In this<br />
post, we are going to see how we can easily install a FTP server on a Ubuntu machine. </p>
<p>We shall use the &#8220;vsftpd&#8221; server as it is very easy to setup and configure. Use the following command to<br />
install it on a Ubuntu machine:</p>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install vsftpd
</pre>
<p>Like most other services on a Ubuntu machine, the configuration data is stored in &#8220;/etc/vsftpd.conf&#8221; file.<br />
Before we start the service, let&#8217;s modify the configuration file to customize the server behaviour a bit.</p>
<p>Before editing the file, please make a backup of the original content. Use the following command:</p>
<pre class="brush: bash; title: ; notranslate">
sudo cp /etc/vsftpd.conf /etc/vsftpd_conf_orig.bkp
</pre>
<p>Now let&#8217;s edit the file and make the changes. To edit the file, we shall use the nano text editor:</p>
<pre class="brush: bash; title: ; notranslate">
sudo nano /etc/vsftpd.conf
</pre>
<p>Please note that nano is the most user friendly text editor on the terminal. If you don&#8217;t have it, please<br />
use this command to install it first:</p>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install nano
</pre>
<p>Here&#8217;s a sample of custom configuration you might want to use:</p>
<pre>

listen=YES
anonymous_enable=YES
write_enable=YES
local_umask=022
anon_upload_enable=YES
anon_mkdir_write_enable=YES
xferlog_enable=YES
chown_uploads=YES
chown_username=masnun
ftpd_banner=Welcome to the FTP service.
chroot_local_user=NO
secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd
</pre>
<p>Leave the other options unchanged. After the configuration is done, let&#8217;s start the server:</p>
<pre class="brush: bash; title: ; notranslate">
sudo /etc/init.d/vsftpd start
</pre>
<p>You can stop it with this command:</p>
<pre class="brush: bash; title: ; notranslate">
sudo /etc/init.d/vsftpd stop
</pre>
<p>And restart using:</p>
<pre class="brush: bash; title: ; notranslate">
sudo /etc/init.d/vsftpd restart
</pre>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2011/08/ftp_icon.png"><img src="http://www.webhostingbreak.com/wp-content/uploads/2011/08/ftp_icon-300x300.png" alt="" title="ftp_icon" width="300" height="300" class="alignleft size-medium wp-image-4867" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/setting-up-and-configuring-ftp-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are PHP, Perl, Python and Ruby on Rails?</title>
		<link>http://www.webhostingbreak.com/tutorials/what-are-php-perl-python-and-ruby-on-rails/</link>
		<comments>http://www.webhostingbreak.com/tutorials/what-are-php-perl-python-and-ruby-on-rails/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 23:49:31 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3184</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object width="560" height="340" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ZcfKJ34duK4?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="560" height="340" type="application/x-shockwave-flash" src="http://www.youtube.com/v/ZcfKJ34duK4?fs=1&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>PHP, Perl, Python and Ruby on Rails are all <strong>WEB PROGRAMMING LANGUAGES</strong> also known as <strong>scripting languages</strong>.</p>
<p>PHP is the most commonly used and available for web hosting, followed by Perl (which is what is used most of the time when you see the phrase <strong>CGI </strong>or <strong>cgi-bin</strong>).</p>
<p>Which language is used to code web software doesn’t really matter, as long as your web host supports the language. In addition to PHP and Perl, many hosts are starting to offer support for Python and Ruby on Rails.</p>
<p>From a security standpoint, poorly coded can potentially be a nightmare for any server admin or website owner. There are many <strong>security flaws in PHP that a hacker can exploit,</strong> and those are only worsened when a PHP script is written badly.</p>
<p>There are several very important things you should always remember when experimenting with web software.</p>
<p>First of all, you should only use web software if you’ve read a lot about it and found out other people’s opinions of the software.</p>
<p>Anytime you upload or install software to your hosting account, you’re giving the program free reign to do just about anything within your web space or possibly even the whole server. <strong>You should only install trusted software.</strong></p>
<p>Second, you <strong>should always make sure that all your web software is kept as up to date as possible.</strong> The more time that passes after a software is released, the more time a hacker or some other malicious person has to examine the code and find a way to exploit it.</p>
<p>Third, no matter how much you trust the software and keep it up to date, it still may run inefficiently. If it frequently uses up too much of the servers resources, your hosting provider may <strong>suspend</strong> your account or at least <strong>ask you to remove the software.</strong></p>
<p>Finally, in case something bad happens, you should <strong>always remember to take complete backups</strong> of your account on a regular basis. For advice on backups, watch the tutorial later on in this series.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/PHP-PERL-PYTHON-AND-RUBY-ON-RAILS.pdf">PHP, PERL, PYTHON AND RUBY ON RAILS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/what-are-php-perl-python-and-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Differences between shared, dedicated and other types of hosting</title>
		<link>http://www.webhostingbreak.com/tutorials/differences-between-shared-dedicated-and-other-types-of-hosting/</link>
		<comments>http://www.webhostingbreak.com/tutorials/differences-between-shared-dedicated-and-other-types-of-hosting/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 00:00:45 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3187</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object width="560" height="340" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/XvNX2MD9qMQ?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="560" height="340" type="application/x-shockwave-flash" src="http://www.youtube.com/v/XvNX2MD9qMQ?fs=1&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p><strong>SHARED HOSTING</strong> is probably what you’re most interested in, especially if you’re just starting out in web hosting. With shared hosting, you’ll be on a server with potentially hundreds of other accounts. This is the <strong>cheapest</strong> form of hosting, for the hosting provider and for you.</p>
<p>If your account frequently uses up a lot of <strong>server resources</strong> your hosting provider will probably ask you to upgrade to something more suited to your website’s needs.</p>
<p>One option is another type of “shared’ hosting called <strong>RESELLER HOSTING</strong>. This basically allows you to sell shared hosting accounts to other people. Sometimes a reseller server will be less crowded and better suited to websites with high resource usage.</p>
<p>Another option is a <strong>DEDICATED SERVER</strong>. This is the most expensive form of web hosting and will cost you at the very least $40 a month, but probably closer to $100. Since you probably won’t know how to manage the server yourself, it would probably cost closer to $200 per month, total, for an entry level <strong>managed server</strong>.</p>
<p>A <strong>MANAGED DEDICATED SERVER</strong> leaves the hardest parts of operating a server to experienced technicians, letting you focus on the website side of things.</p>
<p>On a slightly smaller scale, the <strong>VIRTUAL DEDICATED SERVER</strong> also known as <strong>VIRTUAL PRIVATE SERVER</strong> and commonly shortened to VDS and VPS, respectively. What hosting companies do is divide a very powerful dedicated server up into separate “virtual” servers, using <strong>virtualization</strong> software. Each virtual server gets its own operating system, and acts almost exactly like a real dedicated server.</p>
<p>Depending on the hosting provider and the plan you choose, VDS’s may not be anywhere near as powerful as a real dedicated server.</p>
<p>It takes just as much work to manage a VDS as it does an actual dedicated server, though, so really the only benefit is decreased cost. A VDS can typically be purchased for anywhere from $10 monthly up to the price of a small dedicated server.</p>
<p>These are the most common types of web hosting. There are a few others, including <strong>cloud hosting, clustered hosting and grid hosting</strong> but we wont go into those here.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/12/Different-types-of-hosting-accounts.pdf">Different types of hosting accounts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/differences-between-shared-dedicated-and-other-types-of-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are email forwarders?</title>
		<link>http://www.webhostingbreak.com/tutorials/what-are-email-forwarders/</link>
		<comments>http://www.webhostingbreak.com/tutorials/what-are-email-forwarders/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 23:41:49 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3180</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7iSm6kJ9KsQ?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/7iSm6kJ9KsQ?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>EMAIL FORWARDERS</strong> allow you to <strong>forward</strong> a copy of all mail from one address to another. For example, you could set up a forwarder to forward all mail received on <a href="mailto:info@mysite.com">info@mysite.com</a> to <a href="mailto:admin@mysite.com">admin@mysite.com</a>.</p>
<p>The address <a href="mailto:info@mysite.com">info@mysite.com</a> will still keep the original version of all messages it receives, and <a href="mailto:admin@mysite.com">admin@mysite.com</a> gets forwarded a copy.</p>
<p>It’s worth noting that this relationship doesn’t work in two directions. Mail received by admin will not go to info.</p>
<p>Another type of forwarding is a <strong>domain forwarder</strong>. This will forward all mail received on a specific domain to another domain. If we forward mysite.com to demosite.com, <a href="mailto:admin@mysite.com">admin@mysite.com</a> and <a href="mailto:info@mysite.com">info@mysite.com</a> would be forwarded to <a href="mailto:admin@demosite.com">admin@demosite.com</a> and <a href="mailto:info@demostie.com">info@demostie.com</a>, respectively.</p>
<p>The last kind of forwarder mentioned is a <strong>catch-all</strong> or <strong>default email address</strong>. With this kind of forwarder, mail sent to an email address that doesn’t’ exist will be forwarded to the email address you specify.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/What-are-email-forarders.pdf">What are email forwarders?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/what-are-email-forwarders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are Webservers and why are they necessary?</title>
		<link>http://www.webhostingbreak.com/tutorials/what-are-webservers-and-why-are-they-necessary/</link>
		<comments>http://www.webhostingbreak.com/tutorials/what-are-webservers-and-why-are-they-necessary/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 23:18:14 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3176</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/l9KPKvFiWqY?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/l9KPKvFiWqY?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>WEB SERVERS</strong> are computers that have been set up by a hosting company, usually in a facility called a <strong>datacenter</strong>. A web server’s sole purpose is to store websites until someone wants to visit them, and then to quickly respond to the visitor’s browser with the site’s content.</p>
<p>A server should be able to respond to at least several dozen, if not hundreds of requests at a time. How many websites a server can comfortably host depends on a wide variety of factors including server hardware and how popular the websites are.</p>
<p>Even the most expensive server hardware isnt’ going to be very useful without the software to actually get things done. The key software programs of a web server are also themselves called servers, or <strong>daemons</strong>.</p>
<p>Most servers used for web hosting have at least these kinds of software servers running at all times:</p>
<ul>
<li>An <strong>HTTP</strong> or <strong>web</strong> server (to provide the website)</li>
<li>An <strong>FTP</strong> server (for uploading files)</li>
<li>And <strong>E-MAIL</strong> server or two</li>
<li>A <strong>DATABASE</strong> server (for storing information essential to the operation of a website)</li>
</ul>
<p>You might be wondering: are web servers even necessary? Why can’t I just run my websites from a computer at home? There are several reasons why web servers are necessary.</p>
<p>Most <strong>ISPs (Internet Service Providers)</strong> specifically disallow people from running any type of web-related server on their networks. Doing so can potentially get your internet account <strong>suspended or terminated</strong>.</p>
<p>But, even if that weren’t the case, you have to take into account the upload speed of your connection. While broadband connections are getting faster and faster, upload speeds are usually about <strong>10-20 times slower</strong> than download speeds.</p>
<p>When running a server on your computer, your upload speed would directly determine the total download speed shared across everyone accessing your sites. Most likely you’ll only be able to offer up a <strong>megabit or two</strong>, and even if you’re just hosting a website with pictures on it, that will quickly be used up by only a few people.</p>
<p>A professional server with a hosting provider, on the other hand, could have a connection as fast as <strong>10,000 megabits</strong>. <strong>YOU’D HAVE TO PAY A FORTUNE TO GET EVEN A</strong> <strong>100 Mbit</strong> connection to your house. Whereas a hosting provider can offer you space on a server with an ultra-high speed connection for a fraction of the cost!</p>
<p>Moreover, most consumer broadband ISPs aren’t’ reliable enough to host a website. You’ll probably want people to be able to visit your site at all hours of the day, and that won’t be possible if your internet connection is acting up or your ISP is performing maintenance.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/What-are-webservers-and-are-they-necessary.pdf">What are webservers and are they necessary</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/what-are-webservers-and-why-are-they-necessary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where can I buy a domain name for my website?</title>
		<link>http://www.webhostingbreak.com/tutorials/where-can-i-buy-a-domain-name-for-my-website/</link>
		<comments>http://www.webhostingbreak.com/tutorials/where-can-i-buy-a-domain-name-for-my-website/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 23:12:12 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3173</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WzIavRqboPE?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/WzIavRqboPE?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Domain names can be purchased at any accredited domain registrar. A <strong>domain registrar</strong> is a company whose main purpose is to register domain names for people.</p>
<p>Most hosting providers can also obtain a domain name for you, but domains can be more expensive this way, due to the added overhead.</p>
<p>There are several very popular <strong>domain registrars</strong> including GoDaddy.com, Enom.com and Dotster.com. Most of their prices should be about the same.</p>
<p>All three of the above listed sites do, of course, have a way for you to check if a domain name is available for purchase. This tutorial uses GoDaddy.com as an example.</p>
<p>On the main page, you’ll see <strong>START A DOMAIN NAME SEARCH</strong>. In the box provided, enter the domain name you’re interested in, then select the desired extension (for example: .com) and click <strong>GO</strong>.</p>
<p>The next screen will indicate whether or not the domain name you’ve chosen is available. If the name is unavailable, a list of suggestions will also appear.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/Purchasing-a-domain-name.pdf">Purchasing a domain name</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/where-can-i-buy-a-domain-name-for-my-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding parked, add-on and sub-domains</title>
		<link>http://www.webhostingbreak.com/tutorials/understanding-parked-add-on-and-sub-domains/</link>
		<comments>http://www.webhostingbreak.com/tutorials/understanding-parked-add-on-and-sub-domains/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 23:01:27 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3169</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/oH_QhGB6P2o?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/oH_QhGB6P2o?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>A <strong>PARKED DOMAIN</strong> is a domain name that leads to the same website as another domain name. the domain is, in essence, <strong>parked</strong> on top of another domain.</p>
<p>For example, suppose we have a domain name <strong>mysite.com</strong>. if we park <strong>mysite.org</strong> on top of the .com domain, a visitor to our site will be able to access the site from either the .com or .org address. The visitor won’t notice any difference in the website at all no matter which one he chooses.</p>
<p>An <strong>ADD-ON DOMAIN</strong>, on the other hand, is a domain that will display a <strong>completely different website</strong>. So if you pay to be able to host an <strong>add-on domain </strong>on your hosting account, you are basically being given permission to host another site in addition to your main website.</p>
<p>It is important to note that buying <strong>add-on domain</strong> or <strong>parked domain</strong> rights from your hosting provider doesn’t actually give you a domain name; it just gives you the ability to add that domain to your account. You’ll still have to pay the domain name, too.</p>
<p><strong>SUB-DOMAINS</strong>, though, will work off your existing domain names. They can be sued for the same purpose as regular domain names; they just have an extra part in front.</p>
<p><strong>WWW</strong> is actually considered a <strong>sub-domain</strong>, but one that is usually <strong>parked</strong> on top of the main domain.</p>
<p>Another example could be if you created two sub-domains <strong>dogs</strong> and <strong>cats</strong> on <strong>mypetsite.com</strong>. You’d visit those sub-domains in your browser using <a href="http://cats.mypetsite.com/">http://cats.mypetsite.com</a> and <a href="http://dogs.mypetsite.com/">http://dogs.mypetsite.com</a> respectively.</p>
<p>You could set each sub-domain to go to its own website, or go to a secure section of the main <strong>mypetsite.com</strong> site.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/Parked-Add-on-and-Sub-Domains.pdf">Parked, Add-on and Sub-Domains</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/understanding-parked-add-on-and-sub-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are domain names? How do they work?</title>
		<link>http://www.webhostingbreak.com/tutorials/what-are-domain-names-how-do-they-work/</link>
		<comments>http://www.webhostingbreak.com/tutorials/what-are-domain-names-how-do-they-work/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 22:47:35 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3164</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/kn1EuPfomBM?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/kn1EuPfomBM?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Every server in the world that has access to the internet has at least one <strong>IP ADDRESS</strong>—to a computer, this is like a phone number. An example of an IP Address is 741.125.45.100.</p>
<p>Instead of having to remember a bunch of numbers, <strong>domain names</strong> allow us to assign a name to those numbers. Without domain names, you would have to enter an IP address every time you wanted to visit a website. Isn’t google.com much easier to remember than 74.125.45.100?</p>
<p>Domain names contain letters, numbers and hyphens. They can be hundreds of characters in length, but the shorter the domain the better.</p>
<p>In order for your computer to figure out what IP address to use for a domain name, it has to connect to a <strong>nameserver</strong> also called a <strong>DNS Server</strong>. That server connects to another server, which connects to another, and so on, until a server is encountered that knows the right IP address for the domain name.</p>
<p>When you purchase a domain name, you tell the <strong>domain registrar</strong> that all requests for an IP address for that domain name should be directed toward your hosting providers nameservers.</p>
<p>Once you’ve informed your web host of the domain you plan to use, they’ll configure their nameservers to give your domain name a specific IP address.</p>
<p>Usually, you’ll share an IP address with many other domain names. You can also purchase a <strong>dedicated IP address </strong>from your web host, and that will be yours alone to use. Whichever the case, the important thing is that you have an IP address assigned to your domain, and that all the right nameservers know what it is.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/Domain-names-and-how-they-work.pdf">Domain names and how they work</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/what-are-domain-names-how-do-they-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should I backup my account and how often?</title>
		<link>http://www.webhostingbreak.com/tutorials/should-i-backup-my-account-and-how-often/</link>
		<comments>http://www.webhostingbreak.com/tutorials/should-i-backup-my-account-and-how-often/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 22:39:53 +0000</pubDate>
		<dc:creator>Jeni</dc:creator>
				<category><![CDATA[Web Hosting Tutorials]]></category>

		<guid isPermaLink="false">http://www.webhostingbreak.com/?p=3161</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<div style='float:left;' class='myrp_float_left myrp_float'></div>
<div style='float:right;' class='myrp_float_right myrp_float'></div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WbYctrbbsD4?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/WbYctrbbsD4?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>BACKUPS</strong> are crucial to the smooth operation of any website, no matter how important, how many visitors you have, or how frequently the site content changes.</p>
<p>The <strong>FREQUENCY</strong> at which you should take backups does depend on those factors, as well as exactly what kind of sites and software you have on your account.</p>
<p>If you have any web software installed that depends on a <strong>database</strong> to function, then you should <strong>take backups of all your databases at least once a day</strong>. The databases are usually the most frequently changing part of your hosting account. Some web software programs have a backup system built in.</p>
<p>If the files on your hosting account are likely to change often, you should also back them up <strong>every day</strong>. Otherwise, <strong>once a week</strong> or <strong>once a month</strong>, even <strong>once every few months</strong> should be sufficient. Just make sure you keep the backups in a <strong>safe place</strong>, preferably on <strong>some sort of disk like a CD or DVD or external hard drive.</strong></p>
<p>Even though you may think nothing is going to happen to your information, you shouldn’t assume that everything will be ok. Hard drivers fail more frequently than most people think.</p>
<p>Almost every control panel has some sort of backup system in place. Some will let you set up <strong>automatic backups</strong> and most will allow you to take a backup manually. <strong>IF THERE IS NO SORT OF BACKUP MECHANISM YOU CAN ALWAYS TAKE A BACKUP MANUALLY VIA FTP.</strong></p>
<p>Many web hosts will take frequent backups of all the accounts on their servers, but you shouldn’t count on that. The more backups you or anyone else takes of your account, the less likely you are to lose important data.</p>
<p><a href="http://www.webhostingbreak.com/wp-content/uploads/2010/11/Backing-up-accounts-how-often.pdf">Backing up accounts, how often</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbreak.com/tutorials/should-i-backup-my-account-and-how-often/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

