<?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; Webmaster Tips</title>
	<atom:link href="http://www.elief.com/blog/category/webmaster-tips/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 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>20 Tips For Small Business Owners</title>
		<link>http://www.elief.com/blog/2009/09/tips-for-small-business-owner/</link>
		<comments>http://www.elief.com/blog/2009/09/tips-for-small-business-owner/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:10:06 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Small Business Tips]]></category>
		<category><![CDATA[Webmaster Tips]]></category>

		<guid isPermaLink="false">http://blog.elief.com/?p=27</guid>
		<description><![CDATA[Below are some very useful tips for aspiring entrepreneurs. I found this interesting and thought you could gain value from this as well: 1. Find a strength for your weakness. 2. Work with people that are just as passionate about the business. You have to be “all-in” and fully committed to the business. 3. Always [...]]]></description>
			<content:encoded><![CDATA[<p>Below are some very useful tips for aspiring entrepreneurs. I found this interesting and thought you could gain value from this as well:</p>
<ul>
<p>1. Find a strength for your weakness.</p>
<p>2. Work with people that are just as passionate about the business. You have to be “all-in” and fully committed to the business.</p>
<p>3. Always think “how can I add more value to the end user?”</p>
<p>4. Murphy&#8217;s Law &#8211; Anything that can go wrong will go wrong.</p>
<p>5. Realize that as an entrepreneur, you are innately optimistic. Try and step outside yourself, ask others, and try and be more realistic.</p>
<p>6. Networking is more important than you can even imagine. Never eat alone. Ask lots of questions to people who have been there and done that. Surround yourself with wise people. As Jim Rohn said “You are the average of the five people you spend the most time with.”</p>
<p>7. Make mistakes; just don’t do it again. Embracing failure and learning from your mistakes is integral to growth.</p>
<p>8. Money is always a problem. Deal with it.</p>
<p>9. Continually innovate and think outside the box.</p>
<p>10. Never lose focus on your mission.</p>
<p>11. Customer service should always be a core value.</p>
<p>12. Write down and document everything. Be concise on all documents. The devil is in the details.</p>
<p>13. Don’t underestimate the power of social media.</p>
<p>14. Write a SWOT analysis of every one of your competitors.</p>
<p>15. Periodically revise your business plan to better organize your thoughts.</p>
<p>16. Communication is key.</p>
<p>17. Every single night write a to-do list for the next day and don’t go to bed until you complete the tasks.</p>
<p>18. Make sure to schedule in some personal time everyday.</p>
<p>19. Luck happens when hard work meets opportunity.</p>
<p>20. Nothing is a greater high than when people use your product and see value in it.
</ul>
<p>&#8212;&#8211;</p>
<p>Credit: <a href="http://www.startupnation.com" target="_blank">StartUpNation.com</a></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/09/tips-for-small-business-owner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
