<?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>eLief Blog &#187; Web Hosting</title>
	<atom:link href="http://www.elief.com/blog/category/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elief.com/blog</link>
	<description>Web Hosting, Magento Hosting, Cpanel Reseller Hosting, Company Announcements &#38; More</description>
	<lastBuildDate>Sun, 15 Aug 2010 02:20:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>5 Easy Tips to Free Up Disk Space on Your Server</title>
		<link>http://www.elief.com/blog/2010/08/5-easy-tips-to-free-up-disk-space-on-your-server/</link>
		<comments>http://www.elief.com/blog/2010/08/5-easy-tips-to-free-up-disk-space-on-your-server/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 02:19:27 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[cPanel Hosting]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=105</guid>
		<description><![CDATA[From time to time we need to clear up disk space on our servers, whether it is to just reduce disk space to help minimize the costs and usage of backup servers, or if it&#8217;s to clean up the server and help with performance. Here are 5 easy ways you can instantly clear up hard [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time we need to clear up disk space on our servers, whether it is to just reduce disk space to help minimize the costs and usage of backup servers, or if it&#8217;s to clean up the server and help with performance.</p>
<p>Here are 5 easy ways you can instantly clear up hard drive space and reduce the number of inodes on your server:</p>
<p><strong>1.) Remove User Generated cPanel Backups</strong></p>
<p>Many times cPanel users aren&#8217;t aware that they should delete a cPanel backup before performing another cPanel backup.  Essentially they are taking backups of backups and this can quite easily add up to several gigabytes of space just for one account. A quick and easy way to remove these is to run the following command from root:</p>
<p><code>for user in `/bin/ls -A /var/cpanel/users` ; do rm -fv /home/$user/backup-*$user.tar.gz ; done</code></p>
<p>Make sure to copy the full command exactly how it is above. This will work for <a href="http://www.elief.com">cPanel hosting</a> servers only.</p>
<p><strong>2.) Audit your MySQL Databases</strong></p>
<p>Not only will this free up disk space but it can greatly help with increasing the performance on your server. Large MySQL databases on sites that are receiving a large amount of traffic can really slow down a server. Many times the tables that are using the most space in a database are simply from visitor logging or caching, things that can be freed up instantly be truncating the table.</p>
<p>Use the following command when logged in as root to show the highest usage databases on the server:</p>
<p><code>du -k --max-depth 1 /var/lib/mysql | sort -n</code></p>
<p>This will show a list of individual databases from lowest to highest. Databases larger than 500mb can be an issue with performance so it is worth it to investigate them.</p>
<p>Once you have the results from the command above, it is easy to go into phpMyAdmin and find the database. Once you have clicked on the database you should sort the table size by space, clicking it twice so that it shows the highest usage table on the top.</p>
<p>If the table is some type of visitor logging or tracking table, it generally is okay to truncate it. The same goes for caching. Make sure to backup the database just in-case before doing so, and it won&#8217;t hurt to do a quick google search to see if that table is okay to empty. Searching for the exact term/table name usually will bring up the results you are looking for.</p>
<p>This is a great way to free up disk space, RAM and help increase overall server performance.</p>
<p><strong>3.) Remove Installatron and Fantastico Backups</strong></p>
<p>If you are running Installatron or Fantastico on your server, it is easy for the backups for these files to use up a lot of inodes and space, taking up resources and slowing down performance. Usually once every few months we will remove these for that reason. You can do so by entering the following commands:</p>
<p><em>For Fantastico:</em></p>
<p><code>rm -rfv /home/*/fantastico_backups</code></p>
<p><em>For Installatron</em>:</p>
<p><code>rm -rfv /home/*/.installatron/backups</code></p>
<p>These are the two software installers I am familiar with, if you are using another software installer the same can be done for it if you just insert the proper location where the backups are stored. Consult with the software developer to make sure it is okay to do so first.</p>
<p><strong>4.) Get Rid of Cached Yum Files</strong></p>
<p>Updates from Yum usually leave some unneeded files on the server. Do some Yum house cleaning:</p>
<p><code>yum clean all</code></p>
<p><strong>5.) Delete Failed FTP Uploads</strong></p>
<p>When users are uploading files via pure-ftp and the upload either fails or is interrupted it will leave a partial file on the server. You can quickly get rid of these to clean up some disk space:</p>
<p><code>locate .pureftpd-upload | xargs rm -fv</code></p>
<p>Using the above five ways we have sometimes cleared hundreds of Gigabytes of space and doing all of the above should take you less than an hour.</p>
<p>Let us know your results or if you have anything to add.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2010/08/5-easy-tips-to-free-up-disk-space-on-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Setup Multiple Stores With Magento</title>
		<link>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/</link>
		<comments>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 01:29:47 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=53</guid>
		<description><![CDATA[Magento Multi-Store &#38; Setting Up Multiple Magento Stores Using One Admin Area If you want to setup multiple Magento stores and multiple domains that share the same admin area, the tutorial below will assist you in doing so. This is very useful if you have a lot of stores that share the same or related [...]]]></description>
			<content:encoded><![CDATA[<h1>Magento Multi-Store &amp; Setting Up Multiple Magento Stores Using One Admin Area</h1>
<p>If you want to setup multiple Magento stores and multiple domains that share the same admin area, the tutorial below will assist you in doing so. This is very useful if you have a lot of stores that share the same or related products and you wish to manage it from one central location. You will also be able to track your sales and customers without having to login to the admin area of each website.</p>
<p>With the latest release of Magento Commerce it is much easier to set this up than it was in previous versions. Before it required you to modify the index.php file to handle your different domains pointing at different stores and various other complicated modifications. With Magento 1.4.x it is now much easier. The new index php contains the following code:</p>
<p><code>$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';<br />
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';<br />
</code><br />
It checks two variables(code &amp; type) and then uses them to run Magento. With the new code you&#8217;re able to set which store is supposed to be running under your main domain directly within your virtual host definition(root access required) or for our shared hosting and <a title="cPanel hosting" href="http://www.elief.com">cPanel hosting</a> customers you can actually now use .htaccess to accomplish this.</p>
<h2>Creating your additional stores</h2>
<p>If you haven&#8217;t already done so, the first thing you will need to do is setup your second store in the Magento admin area:</p>
<ol>
<li>Login to the Magento admin area.</li>
<li> Go to the Catalog tab, then select Manage Categories.</li>
<li> Click the &#8216;Add Root Category&#8217; button on the left.</li>
<li> On the right, for the Name, enter your secondwebsite.com. In the dropdown set Yes for both &#8216;Is Active&#8217; and &#8216;Is Anchor&#8217;.</li>
<li> Click on &#8216;Save Category&#8217;.</li>
<li> Next you should go to the &#8216;System&#8217; tab and select &#8216;Manage Stores&#8217;.</li>
<li>Click the &#8216;Create Website&#8217; button.</li>
<li> For the Name enter your Secondwebsite.com, and for the &#8216;Code&#8217; you should enter secondwebsite. You&#8217;ll be using this value later so make sure your note it down somewhere.</li>
<li> Click &#8216;Save Website&#8217;.</li>
<li> In the same area, click on the &#8216;Create Store&#8217; button.</li>
<li> For the Website, select your Secondwebsite.com from the dropdown. For the &#8216;Name&#8217;, you can enter Secondary Store. For the Root Category, select your now created Secondwebsite.com from the dropdown.</li>
<li> Click the &#8216;Save Store&#8217; button.</li>
<li>Next click on the &#8216;Create Store View&#8217; button.</li>
<li> For the &#8216;Store&#8217;, select Secondary Store from the dropdown menu, make sure it&#8217;s for the created Secondwebsite.com. For the Name, you can enter English. For the &#8216;Code&#8217;, you should enter secondwebsite_en. For the Status, select &#8216;Enabled&#8217; from the dropdown menu.</li>
<li> Click on &#8216;Save Store View&#8217;.</li>
<li> Next you will need to go to the &#8216;System&#8217; tab and select &#8216;Configuration&#8217;</li>
<li> For &#8216;Current Configuration Scope&#8217; (located near the top left), change the dropdown menu from &#8216;Default Config&#8217; to Secondwebsite.com.</li>
<li> Select &#8216;Web&#8217; from the left sidebar under the &#8216;Genera&#8217;l headline.</li>
<li> For both the Unsecure and Secure sections, uncheck the Use default box next to the Base URL item, and enter the URL for your store, e.g. secondwebsite.com. Make sure to include the trailing backslash.</li>
<li> Click the &#8216;Save Config&#8217; button.</li>
</ol>
<p>You&#8217;re almost done so hang in there!</p>
<p>Once you are finished creating the store, if you have not added your second domain as an add-on domain you will need to login to your cPanel account with us and create it as an Add-on domain now. Once you have done this you then need to <strong><em>copy your index.php and .htaccess file</em></strong> to the created directory for your add-on domain.</p>
<p>After copying over your index.php file, you should replace the following lines of code in the index.php file located <em><strong>only </strong></em>in the new add-on directory:</p>
<p>Replace this line:</p>
<p><code>$mageFilename = ‘app/Mage.php’;</code></p>
<p>With the following:</p>
<p><code>$mageFilename = ‘../public_html/app/Mage.php’;</code></p>
<p>Next you will need to either use the <em>VirtualHost method</em>(VPS and dedicated servers) or the <em>.htacess method</em> (for regular <a title="Magento hosting" href="http://www.elief.com/magento-hosting.php">magento hosting</a> / shared hosting accounts).</p>
<h2>Using VirtualHost:</h2>
<p>To set this up using the Virtualhost method you should simply add the following lines within your VirtualHost definition file:</p>
<p><code>SetEnv MAGE_RUN_CODE "base"  #Put your main/base website or store code here.<br />
SetEnv MAGE_RUN_TYPE "secondwebsite"  #Here you should put 'secondwebsite' if the URL of the additional store you are adding is secondwebsite.com.</code></p>
<h2>Using the .htaccess method:</h2>
<p>If you do not have access to the virtual host file and are not a VPS or dedicated server customer, you can still use .htaccess for this.</p>
<p>In your .htaccess code you will need to define your main and secondary websites. For example if the URL of your main/base website is base.com and the URL of your second website is secondwebsite.com you should put the following code in your .htaccess</p>
<p><code><br />
SetEnvIf Host .*base.* MAGE_RUN_CODE="base";<br />
SetEnvIf Host .*secondwebsite.* MAGE_RUN_TYPE="secondwebsite";<br />
</code></p>
<p>You are, of course, not limited to using just 2 websites. To add additional stores you would simply add the additional lines of necessary code:</p>
<p><code><br />
SetEnvIf Host .*thirdwebsite.* MAGE_RUN_TYPE="thirdwebsite";<br />
</code></p>
<p>etc.</p>
<p>You should now be all setup using Magento multi-stores and have multiple stores with one main admin area in Magento, without messing around with the code and the other previous lengthy methods <img src='http://www.elief.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>If you have any questions, additions or issues with this feel free to comment.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Install ocPortal</title>
		<link>http://www.elief.com/blog/2009/12/how-to-install-ocportal/</link>
		<comments>http://www.elief.com/blog/2009/12/how-to-install-ocportal/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 03:26:54 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Webmaster Tips]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=44</guid>
		<description><![CDATA[Installing ocPortal and other software on eLief is easy, we&#8217;ve included a short guide on how to do this below: The first step is to login to your cPanel account with us. Once you are logged into your cPanel account you will need to find the Software/Services section and click on &#8220;1-Click Applications Installer&#8221;. This will [...]]]></description>
			<content:encoded><![CDATA[<p>Installing <a title="ocPortal" href="http://www.ocportal.com">ocPortal</a> and other software on eLief is easy, we&#8217;ve included a short guide on how to do this below:</p>
<ol>
<li> The first step is to login to your cPanel account with us.</li>
<li>Once you are logged into your cPanel account you will need to find the Software/Services section and click on &#8220;1-Click Applications Installer&#8221;.</li>
<li>This will bring up a large list of applications, under the left hand side look for &#8216;Content Management Systems&#8217;, click ocPortal -&gt; Install this Application.</li>
<li>The on-screen instructions will guide you through the installation easily. It will automatically create your database and folders, download and update data and finalize the installation.</li>
<li>Your ocPortal install is now ready! Use the password and username to login to ocPortal and start customizing your site.</li>
</ol>
<p>We are the official ocPortal hosting partner and support all requirements. Our applications installer is available on all of our <a title="Web Hosting Services" href="http://www.elief.com/web-hosting.php">web hosting services</a> and <a title="cpanel reseller hosting" href="http://www.elief.com/reseller-hosting.php">cPanel reseller hosting</a> plans. The installer is also not limited to ocPortal and can install over 50+ applications, including our popular <a title="Magento Hosting" href="http://www.elief.com/magento-hosting.php">magento hosting</a> plans.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2009/12/how-to-install-ocportal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Is Magento Hosting?</title>
		<link>http://www.elief.com/blog/2009/12/what-is-magento-hosting/</link>
		<comments>http://www.elief.com/blog/2009/12/what-is-magento-hosting/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 22:59:44 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=35</guid>
		<description><![CDATA[Magento Hosting Magento Hosting is an extremely popular ecommerce solution, so it’s perfectly understandable that people are looking for hosting packages which are optimized accordingly. Just as specialized blog hosting companies, forum hosting companies and others have managed to create subniches as far as hosting is concerned, “Magento hosting” will be a term more and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Magento Hosting</strong></p>
<p><a title="Magento Hosting" href="http://www.elief.com/">Magento Hosting</a> is an extremely popular ecommerce solution, so it’s perfectly understandable that people are looking for hosting packages which are optimized accordingly. Just as specialized blog hosting companies, forum hosting companies and others have managed to create subniches as far as hosting is concerned, “Magento hosting” will be a term more and more people will be using.</p>
<p>There are quite a few <a title="Cpanel Reseller Hosting" href="http://www.elief.com/reseller-hosting.php">cpanel reseller hosting</a> companies, for example, with hosting packages which have been optimized for Magento and if that’s the case, you will probably find a descriptive sales page on their website which does all of the explaining. If the hosting company does not have a link to a Magento hosting package on its homepage, you can still determine if it could represent a Magento hosting solution by:</p>
<p><strong>Analyzing Magento’s System Requirements</strong></p>
<p>First of all, you need to go with a Linux box, this much is certain. Magento supports Apache 1.3.x, Apache 2.0.x as well as Apache 2.2.x, so most hosts would “qualify” from this perspective. Now as far as PHP is concerned, there are certain things that you need to keep in mind.</p>
<p>Magento is compatible with PHP 5.2 (go with a memory limit of 128 Mb at the very least) but be sure to make sure that Safe_mode is off. There are also certain required extensions which you need to remember about: simplexml, hash, PDO_MySQL, DOM, mcrypt, curl, SOAP, GD and iconv.</p>
<p>Your server needs to be able to run cronjobs and it also needs to be able to override options as far as the .htaccess file is concerned. And finally, when it comes to SSL, you need to know that it doesn’t support self-signed certificates.</p>
<p><strong>Which Hosts Qualify?</strong></p>
<p>Most companies which offer Linux hosting (i.e. cpanel shared hosting, cpanel reseller hosting, <a title="Unlimited Domain Hosting" href="http://www.elief.com/web-hosting.php">unlimited domain hosting</a> , etc.) solutions will be able to cater to your needs, but it’s extremely important to make sure that your package supports Magento before making the payment. If you’re not 100% sure, contact the sales department of each host and ask them.</p>
<p>A lot of companies have a live online support interface, so you’ll be able to find someone who can answer this question right away and without even picking up the phone. If an online support interface is not available, you can simply email them or (if you need a response ASAP) give them a call. Most good cpanel reseller hosting companies as well as unlimited domain hosting companies offer 24&#215;7  support, so getting in touch with someone should not be complicated at all.</p>
<p>It’s extremely important to choose only companies with whom you’re 100% comfortable. On the one hand, it is true that cheap web hosting packages are always tempting, but when it comes to <a title="Magento Hosting" href="http://www.elief.com/magento-hosting.php">Magento hosting</a>, going with providers that have proven themselves time and time again is definitely the best long-term solution.</p>
<p>After all, would you rather save a few dollars here and there but face the risk of your site being offline a lot? The consequences are more than obvious: less traffic, ultimately fewer sales, you’d probably end up losing considerably more money than you’ve managed to save by going with the cheapest option.  Better to spend a little bit of extra money but know that you’re working with true professionals.</p>
<p><strong>Magento Hosting Mistakes?</strong></p>
<p>Unfortunately, there are a lot of mistakes associated with Magento hosting which could cost you. Leaving the previously mentioned mistake aside (always going with the cheaper option), there are quite a few other things which could cause problems.</p>
<p>First of all, not monitoring your site on a daily basis is definitely not a recommended practice. You never know what could go wrong, so keeping an eye on things will definitely not hurt. Maybe your hosting companies will upgrade one thing or another and that will interfere with Magento, you just never know. As soon as you notice a problem, contact your host ASAP and don’t forget to mention that you’re running <a title="Magento Commerce" href="http://www.magentocommerce.com">Magento</a>. A good Magento Web hosting support representative will be able to determine the cause of the problem quickly and will make the necessary changes within moments.</p>
<p>Don’t forget to be careful when installing other applications on your server. There are instances where certain scripts or applications can interfere with Magento. It’s not uncommon to modify your settings in order to be able to run a certain application, only to realize that the new settings caused problems with Magento afterwards. Anyone makes mistakes and, once again, that’s why always monitoring things is recommended. If you follow these simple guidelines, finding a great <a title="eLief Magento Hosting" href="http://www.elief.com">Magento Web hosting company</a> and running a profitable Magento website will be a piece of cake.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2009/12/what-is-magento-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>High Performance Web Hosting Upgrade</title>
		<link>http://www.elief.com/blog/2009/08/high-performance-web-hosting-upgrade/</link>
		<comments>http://www.elief.com/blog/2009/08/high-performance-web-hosting-upgrade/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 02:36:10 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Company Announcements]]></category>
		<category><![CDATA[Reseller Hosting]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.elief.com/?p=24</guid>
		<description><![CDATA[As a continued effort to improve our service for you, we will be upgrading our servers on Wednesday, August 5th. The new servers will include a major hardware upgrade for both improved performance and increased disk space allowance. All old servers will remain active while the new DNS propagates, so no actual downtime is expected. A [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">As a continued effort to improve our service for you, we will be upgrading our servers on Wednesday, August 5th. The new servers will include a major hardware upgrade for both improved performance and increased disk space allowance. All old servers will remain active while the new DNS propagates, so no actual downtime is expected. A full press release will be released later this month detailing the new enhancements.</span></span></p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">Some benefits of this upgrade include:</span></span></p>
<ul>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">New high performance hardware</span></span></li>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">Dual Intel Nehalem 5520 Processors, 8 Cores (16 Cores displayed with Hyper Threading enabled)</span></span></li>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">12GB DDR3 RAM (Noticeable improvement over current DDR2 RAM)</span></span></li>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">Caviar Black Hard Drives &#8211; High performance drives w/ dual processors per each drive. Greatly improves disk i/o performance(A key factor in dynamic and database intensive websites &amp; applications).</span></span></li>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">R1Soft CDP Backup&#8217;s &#8211; You will now be able to restore backup&#8217;s right from your cPanel control panel. It includes daily and hour-by-hour restore points for you to choose from along with snapshots.</span></span></li>
<li><span style="font-family: verdana,geneva;"><span style="font-size: small;">Increased disk space and bandwidth upgrade&#8217;s for all web hosting plans, free of charge. Upgraded plans can be viewed directly on our site at </span></span><a style="color: #333333; text-decoration: none;" href="http://www.elief.com/web-hosting.php"><span style="font-family: verdana,geneva;"><span style="font-size: small;">http://www.elief.com/web-hosting.php</span></span></a><span style="font-family: verdana,geneva;"><span style="font-size: small;"> or under our <a title="Magento Hosting" href="http://www.elief.com/magento-hosting.php">Magento Hosting</a> plans.<br />
</span></span></li>
</ul>
<div><span style="font-family: verdana,geneva;"><span style="font-size: small;">The migration will begin around 8:00PM EST on 08/05/2009. Your new server IP will be </span></span><strong><span style="font-family: verdana,geneva;"><span style="font-size: small;">206.123.100.130</span></span></strong><span style="font-family: verdana,geneva;"><span style="font-size: small;">. Those with dedicated IP&#8217;s will also receive a new dedicated IP, which you will be able to see from within your cPanel account.</span></span></div>
<div><span style="font-family: verdana,geneva;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: verdana,geneva;"><span style="font-size: small;">Feel free to let us know if you have any questions regarding the upgrade or migration, through our helpdesk, or on twitter @meLief. We thank you for your continued business.</span></span></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2009/08/high-performance-web-hosting-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All hosting blogs are not created equal.</title>
		<link>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/</link>
		<comments>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/#comments</comments>
		<pubDate>Thu, 14 May 2009 17:35:10 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Company Announcements]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.elief.com/?p=3</guid>
		<description><![CDATA[web hosting, magento hosting, company announcement]]></description>
			<content:encoded><![CDATA[<p>A blog from <a href="http://www.elief.com">eLief</a>? Does the world really need another blog? We think so. Let me tell you why &#8211; eLief is at the epicenter of an exciting transformation in the hosting industry. Did you know your average hosting company is still using the same technology that was around 10 years ago? Not here. eLief runs state of the art technology using LiteSpeed web server. <a href="http://www.litespeedtech.com">LiteSpeed</a> is an advanced web server that processes pages up to 8x faster, reduces server loads for better performance with less CPU and memory consumption, and also allows us to perform servers updates, maintenance, and restarts without downtime. We are here to revolutionize the industry and you will only continue to see more big things coming from us. <a href="http://www.elief.com/web-hosting.php">LiteSpeed hosting</a> is just the beginning.</p>
<p>Ok cool, so what..you created this blog just to talk about your services? Not exactly! This blog will serve as a great way to communicate and interact with our readers and customers, gather opinions, collaborate with industry veterans, or to just come and read the mindless ramblings from the creators of eLief.</p>
<p>The scoop you can get from here:</p>
<ul>
<li>Upcoming news and insider perspectives</li>
<li>New feature announcements</li>
<li>How-to tutorials</li>
<li>Webmaster tips &amp; techniques.</li>
<li>In-depth information about what happens behind the scenes at eLief.</li>
<li>Why eLief is the best hosting company in the galaxy and how it will come to rule the world. Just kidding, no but seriously.</li>
</ul>
<p>To start things off, during the month of April, we will be focusing on tutorials and information about running a <a href="http://www.magentocommerce.com">Magento Commerce</a> store for all our <a href="http://www.elief.com/magento-hosting.php">magento hosting</a> and ecommerce customers.</p>
<p><a rel="me" href="http://technorati.com/claim/SRYPT9BRM7YW">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
