<?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>EZ Linux Admin &#187; Cpanel and WHM</title>
	<atom:link href="http://www.ezlinuxadmin.com/category/cpanel-and-whm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ezlinuxadmin.com</link>
	<description>Making Linux Easier</description>
	<lastBuildDate>Tue, 29 Jun 2010 19:37:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A script to not run back ups on websites over 10 gigs in cpanel</title>
		<link>http://www.ezlinuxadmin.com/2010/06/script-big-backups-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/06/script-big-backups-cpanel/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 03:30:39 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[prevent big sites from backing up in cpanel]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=488</guid>
		<description><![CDATA[To avoid sites too big from being back upped, just run this script in a weekly cron from root.
#!/bin/bash
max_size=&#8221;2097152&#8243; # This is 2097152KB or 2GB
for u in `ls /var/cpanel/users/`;
do
size=$(repquota -a &#124; grep ${u}&#124;awk &#8216;{print $3}&#8217;&#124;sort -k 1 -nr&#124;head -1);
if [ "${size}" -ge "${max_size}" ];
then
echo &#8220;${u}&#8221; &#62;&#62; /tmp/cpbackup-userskip.conf;
fi;
done;
sort -u /tmp/cpbackup-userskip.conf /etc/cpbackup-userskip.conf &#62; /tmp/cpbackup-userskip.conf.uniq;
cp -f /tmp/cpbackup-userskip.conf.uniq /etc/cpbackup-userskip.conf;
rm [...]]]></description>
			<content:encoded><![CDATA[<p>To avoid sites too big from being back upped, just run this script in a weekly cron from root.</p>
<blockquote><p>#!/bin/bash</p>
<p>max_size=&#8221;2097152&#8243; # This is 2097152KB or 2GB</p>
<p>for u in `ls /var/cpanel/users/`;<br />
do<br />
size=$(repquota -a | grep ${u}|awk &#8216;{print $3}&#8217;|sort -k 1 -nr|head -1);<br />
if [ "${size}" -ge "${max_size}" ];<br />
then<br />
echo &#8220;${u}&#8221; &gt;&gt; /tmp/cpbackup-userskip.conf;<br />
fi;<br />
done;</p>
<p>sort -u /tmp/cpbackup-userskip.conf /etc/cpbackup-userskip.conf &gt; /tmp/cpbackup-userskip.conf.uniq;<br />
cp -f /tmp/cpbackup-userskip.conf.uniq /etc/cpbackup-userskip.conf;<br />
rm -f /tmp/cpbackup-userskip.conf.*;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/06/script-big-backups-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset default emails to fail in cpanel</title>
		<link>http://www.ezlinuxadmin.com/2010/06/reset-default-emails-to-fail-in-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/06/reset-default-emails-to-fail-in-cpanel/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 02:59:04 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[change default email server wide]]></category>
		<category><![CDATA[default email cpanel]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=485</guid>
		<description><![CDATA[Run each line from Root command:
replace :blackhole: :fail: &#8212; /etc/valiases/*
replace :blackhole :fail: &#8212; /etc/valiases/*
replace blackhole: :fail: &#8212; /etc/valiases/*
replace blackhole :fail: &#8212; /etc/valiases/*
replace &#8221; fail:&#8221; &#8221; :fail:&#8221; &#8212; /etc/valiases/*
replace /dev/null :fail: &#8212; /etc/valiases/*
cd /etc/valiases/
grep fail * &#124; grep -v &#8221; :fail:&#8221;
]]></description>
			<content:encoded><![CDATA[<p>Run each line from Root command:</p>
<blockquote><p>replace :blackhole: :fail: &#8212; /etc/valiases/*<br />
replace :blackhole :fail: &#8212; /etc/valiases/*<br />
replace blackhole: :fail: &#8212; /etc/valiases/*<br />
replace blackhole :fail: &#8212; /etc/valiases/*<br />
replace &#8221; fail:&#8221; &#8221; :fail:&#8221; &#8212; /etc/valiases/*<br />
replace /dev/null :fail: &#8212; /etc/valiases/*<br />
cd /etc/valiases/<br />
grep fail * | grep -v &#8221; :fail:&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/06/reset-default-emails-to-fail-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset an accounts bandwidth in CPanel</title>
		<link>http://www.ezlinuxadmin.com/2010/06/reset-an-accounts-bandwidth-in-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/06/reset-an-accounts-bandwidth-in-cpanel/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 02:56:03 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[reset account bandwidth in cpanel]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=482</guid>
		<description><![CDATA[
ssh to your server
cd /var/cpanel/bandwidth.cache/
vi domainname.com
delete the numbers in that file and retype 0 instead of the number
save and quit and show bandwidth usage in WHM you will find its 0

]]></description>
			<content:encoded><![CDATA[<ol>
<li>ssh to your server</li>
<li>cd /var/cpanel/bandwidth.cache/</li>
<li>vi domainname.com</li>
<li>delete the numbers in that file and retype 0 instead of the number</li>
<li>save and quit and show bandwidth usage in WHM you will find its 0</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/06/reset-an-accounts-bandwidth-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setroubleshoot bug</title>
		<link>http://www.ezlinuxadmin.com/2010/05/setroubleshoot/</link>
		<comments>http://www.ezlinuxadmin.com/2010/05/setroubleshoot/#comments</comments>
		<pubDate>Mon, 24 May 2010 06:20:07 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[/usr/bin/python]]></category>
		<category><![CDATA[setroubleshoot]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=472</guid>
		<description><![CDATA[There is a bug with the new option in Centos 5 called setroubleshoot.
The bug spins the program over and over causing high memory and sometimes CPU use. Unfortunately there is no permanent fix yet, but if you see something like this high in your daily process log:
/usr/bin/python -E /usr/sbin/setroubleshootd
To fix for now you simply have [...]]]></description>
			<content:encoded><![CDATA[<p>There is a bug with the new option in Centos 5 called setroubleshoot.</p>
<p>The bug spins the program over and over causing high memory and sometimes CPU use. Unfortunately there is no permanent fix yet, but if you see something like this high in your daily process log:</p>
<blockquote><p>/usr/bin/python -E /usr/sbin/setroubleshootd</p></blockquote>
<p>To fix for now you simply have to restart the process:</p>
<blockquote><p>/etc/init.d/setroubleshoot restart</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/05/setroubleshoot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CPanel transfer error</title>
		<link>http://www.ezlinuxadmin.com/2010/05/cpanel-transfer-error/</link>
		<comments>http://www.ezlinuxadmin.com/2010/05/cpanel-transfer-error/#comments</comments>
		<pubDate>Sat, 08 May 2010 21:50:42 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[cpanel transfer]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[server move]]></category>
		<category><![CDATA[yaml]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=468</guid>
		<description><![CDATA[First try to upgrade perl this is the main reason for a cpanel error.
http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/
After that if you still have a issue run this:
/scripts/perlinstaller &#8211;force YAML::Syck
or Install the YAML::Syck perl module in whm under module installers.
]]></description>
			<content:encoded><![CDATA[<p>First try to upgrade perl this is the main reason for a cpanel error.</p>
<p><a href="http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/">http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/</a></p>
<p>After that if you still have a issue run this:</p>
<blockquote><p>/scripts/perlinstaller &#8211;force YAML::Syck</p>
<p>or Install the YAML::Syck perl module in whm under module installers.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/05/cpanel-transfer-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mod_cband the new Mod_Bandwidth</title>
		<link>http://www.ezlinuxadmin.com/2010/03/mod_cband-the-new-mod_bandwidth/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/mod_cband-the-new-mod_bandwidth/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 02:52:12 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[limit server bandwidth]]></category>
		<category><![CDATA[mod_bandwidth]]></category>
		<category><![CDATA[mod_cband]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=453</guid>
		<description><![CDATA[I spent hours trying to get mod_bandwidth to work simply because I have used it for years. But now with Apache 2.0 times have changed and there is a better option for Linux and it&#8217;s free. The new mod to regulate bandwidth and more is called Mod_cband I&#8217;m not sure what cband means but I [...]]]></description>
			<content:encoded><![CDATA[<p>I spent hours trying to get mod_bandwidth to work simply because I have used it for years. But now with Apache 2.0 times have changed and there is a better option for Linux and it&#8217;s free. The new mod to regulate bandwidth and more is called Mod_cband I&#8217;m not sure what cband means but I can guess channel bandwidth.</p>
<p>Here is how to get it set up with Cantos 5.3 easily.</p>
<p>I wanted to host for my brother the latest WoW patch, but at a hefty 450 MB, I didn’t want to blow all my bandwidth on it either. I am setting a limit for the download at 2.5 TB of bandwidth, and limiting it to 5mbs at 10 connections a second. My hardware is RHEL 4 running on a P4 with Plesk 8. In the guide to follow, you’ll see a few steps that wouldn’t be needed on a non-plesk system. To setup bandwidth limiting for the host, we need to be able to compile a new apache module against our system, and then install and configure it.</p>
<p>Step 1: The prereqs</p>
<p>First I needed to setup a yum repository for FC4. This can be accomplished by issuing an RPM command:</p>
<p>rpm -ivh http://rpm.livna.org/livna-release-4.rpm</p>
<p>Now that you can access the RPM packages, we need to install http-devel using yum:</p>
<p>yum install httpd-devel</p>
<p>If all went well, we can now extract, compile, and install mod_cband for apache:</p>
<p>cd /tmp<br />
wget http://cband.linux.pl/download/mod-cband-0.9.7.4.tgz<br />
tar xzvf mod-cband-0.9.7.4.tgz<br />
cd mod-cband-0.9.7.4<br />
./configure<br />
make<br />
make install</p>
<p>If all went well, restart apache with the new module (you can check httpd.conf to make sure the module is going to be loaded):</p>
<p>/etc/init.d/httpd restart</p>
<p>Step 2: Configuration</p>
<p>Here’s where the Plesk part gets annoying. We can’t just edit our vhosts file, because plesk writes over it all the time. Instead, we edit a /home/httpd/vhosts/*/subdomains/*/conf/vhost.conf file. Mine looks like this:</p>
<p>CBandScoreboard /var/www/scoreboard<br />
CBandPeriod 4W<br />
CBandDefaultExceededCode 509<br />
CBandLimit 2500G<br />
CBandSpeed 5000 5 10<br />
CBandRemoteSpeed 1600 3 1<br />
&lt;Location /cband-status&gt;<br />
SetHandler cband-status<br />
&lt;/Location&gt;<br />
&lt;Location /cband-status-me&gt;<br />
SetHandler cband-status-me<br />
&lt;/Location&gt;</p>
<p>What does this mean? (1) Use /var/www/scoreboard to log usage and limits (2) Reset the limit count every 4 weeks (3) Throw a 509 error when the limits are exceeded (4) Allow 2.5TB per period (5) Allow 5mbs with 5 requests a second and 10 connections at a time oeverall (6) Allow 1.6mbs with 3 requests a second and 1 connections at a time per client (7) Allow us to access a page at /cband-status to view the status.</p>
<p>You’ll also need to issue commands to make the scoreboard directory, and to allow apache to own it:</p>
<p>mkdir /var/www/scoreboard<br />
chown apache:apache /var/www/scoreboard</p>
<p>Finally, Plesk requires you to inform it of your work:</p>
<p>/usr/local/psa/admin/sbin/websrvmng -u &#8211;vhost-name=yourdomain.com</p>
<p>If you restart Apache now, everything should work!</p>
<p>/etc/init.d/httpd restart</p>
<p>Step 3: An Example</p>
<p>You can take a peek at my status page right now if you’d like. It looks a bit like this:</p>
<p><a href="http://www.ezlinuxadmin.com/wp-content/uploads/2010/03/cband-panel.jpg"><img class="alignnone size-full wp-image-454" title="cband-panel" src="http://www.ezlinuxadmin.com/wp-content/uploads/2010/03/cband-panel.jpg" alt="" width="450" height="209" /></a></p>
<p>A quick note, I simply just added:</p>
<blockquote><p>CBandPeriod 4W<br />
CBandLimit 10000G<br />
CBandSpeed 12000 40 80<br />
CBandRemoteSpeed 6400 12 4</p></blockquote>
<p>Now this set the limit to about 12 megs (MPS) a second which is a lot, but this customer is paying $250 a month to cover it. Most websites should max at about 5 MPS. I left out the other options because I didn&#8217;t need them and it&#8217;s less load on the server without them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/mod_cband-the-new-mod_bandwidth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Raise apache 2.0 max clients hard limit in cpanel</title>
		<link>http://www.ezlinuxadmin.com/2010/03/raise-apache-2-0-hard-limit-cpanel-max-client/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/raise-apache-2-0-hard-limit-cpanel-max-client/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 16:42:44 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[apache 2.0 hard limit raise]]></category>
		<category><![CDATA[apche 2.0 raise limit]]></category>
		<category><![CDATA[raise hard limit]]></category>
		<category><![CDATA[raise max clients]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=444</guid>
		<description><![CDATA[Apache 2.0 makes raising the max client from the default 256 hard limit a little harder now. If you have cpanel then it&#8217;s even a little harder or I should you just need to know what to do, figuring it out is a shot in the dark.
One main difference is you have raise the server [...]]]></description>
			<content:encoded><![CDATA[<p>Apache 2.0 makes raising the max client from the default 256 hard limit a little harder now. If you have cpanel then it&#8217;s even a little harder or I should you just need to know what to do, figuring it out is a shot in the dark.</p>
<p>One main difference is you have raise the server limit if you want to raise the max client limit.</p>
<p>The easiest way to do this is to go to:</p>
<ol>
<li>Web Hosting Manager</li>
<li>Then click Apache Configuration</li>
<li>Then click Include Editor</li>
<li>Then click the apache version under the pre-main include</li>
<li>Then add this to the input section:</li>
</ol>
<blockquote><p>ServerLimit 512</p>
<p>StartServers 32<br />
MinSpareServers 5<br />
MaxSpareServers 20<br />
MaxClients 512<br />
MaxRequestsPerChild 1000</p></blockquote>
<p>Then save and it will ask to restart apache you click yes there.</p>
<p>Now your apache limit is set to 512 and cpanel will not mess with it.</p>
<p>Here is the explanation for each derivative in the above code:</p>
<p><strong>MaxClients:</strong></p>
<p>The MaxClients sets the limit on maximum simultaneous requests that can be supported by the server; no more than this number of child processes are spawned. It shouldn&#8217;t be set too low; otherwise, an ever-increasing number of connections are deferred to the queue and eventually time-out while the server resources are left unused. Setting this too high, on the other hand, will cause the server to start swapping which will cause the response time to degrade drastically. The appropriate value for MaxClients can be calculated as:</p>
<p>If there are more concurrent users than MaxClients, the requests will be queued up to a number based on ListenBacklog directive. Increase ServerLimit to set MaxClients above 256.</p>
<p><strong>MinSpareServers, MaxSpareServers, and StartServers:</strong></p>
<p>MaxSpareServers and MinSpareServers determine how many child processes to keep active while waiting for requests. If the MinSpareServers is too low and a bunch of requests come in, Apache will have to spawn additional child processes to serve the requests. Creating child processes is relatively expensive. If the server is busy creating child processes, it won&#8217;t be able to serve the client requests immediately. MaxSpareServers shouldn&#8217;t be set too high: too many child processes will consume resources unnecessarily.</p>
<p>Tune MinSpareServers and MaxSpareServers so that Apache need not spawn more than 4 child processes per second (Apache can spawn a maximum of 32 child processes per second). When more than 4 children are spawned per second, a message will be logged in the ErrorLog.</p>
<p>The StartServers directive sets the number of child server processes created on startup. Apache will continue creating child processes until the MinSpareServers setting is reached. This doesn&#8217;t have much effect on performance if the server isn&#8217;t restarted frequently. If there are lot of requests and Apache is restarted frequently, set this to a relatively high value.</p>
<p><strong>MaxRequestsPerChild:</strong></p>
<p>The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. It&#8217;s set to 0 by default, the child process will never expire. It is appropriate to set this to a value of few thousands. This can help prevent memory leakage, since the process dies after serving a certain number of requests. Don&#8217;t set this too low, since creating new processes does have overhead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/raise-apache-2-0-hard-limit-cpanel-max-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repair DNS scripts and tips</title>
		<link>http://www.ezlinuxadmin.com/2010/03/repair-dns-scripts-and-tips/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/repair-dns-scripts-and-tips/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 22:04:50 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[cpanel dns]]></category>
		<category><![CDATA[dns crash]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=442</guid>
		<description><![CDATA[Fixing DNS is a tricky thing, with cpanel there is a couple steps to try first.
DNS failed you are not sure why, try this first:
/scripts/cleandns
/scripts/rebuildnamedconf
Still not working, try this:
/scripts/rebuilddnsconfig
/scripts/fixdns
Basically DNS has about 5 files that need to all be in sync for named DNS to run.
I highly recommend running three servers with DNS so you [...]]]></description>
			<content:encoded><![CDATA[<p>Fixing DNS is a tricky thing, with cpanel there is a couple steps to try first.</p>
<p>DNS failed you are not sure why, try this first:</p>
<blockquote><p>/scripts/cleandns<br />
/scripts/rebuildnamedconf</p></blockquote>
<p>Still not working, try this:</p>
<blockquote><p>/scripts/rebuilddnsconfig<br />
/scripts/fixdns</p></blockquote>
<p>Basically DNS has about 5 files that need to all be in sync for named DNS to run.</p>
<p>I highly recommend running three servers with DNS so you have back ups if one servers fails. In this case you just transfer over the dns files and restart. Here is a list of the DNS files that need to be transferred.</p>
<blockquote><p>named.conf.cache</p>
<p>named.conf.zonedir.cache</p>
<p>named.conf</p>
<p>named.conf,v</p>
<p>named.conf_back</p>
<p>named.conf.fixrndc</p>
<p>named.conf.prefixrndc</p>
<p>named.conf.rpmsave</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/repair-dns-scripts-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a md5sum error when tranferring a cpanel account?</title>
		<link>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 12:19:41 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Cpanel transfer error]]></category>
		<category><![CDATA[md5sum error]]></category>
		<category><![CDATA[upgrade perl]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=434</guid>
		<description><![CDATA[This usually means you need to upgrade Perl on the server. Here is a example of a md5sum error.
The remote server didn&#8217;t report a correct md5sum of the archive. Please ensure you selected the correct type of remote server.
To fix upgrade Perl as shown here:
http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/
]]></description>
			<content:encoded><![CDATA[<p>This usually means you need to upgrade Perl on the server. Here is a example of a md5sum error.</p>
<blockquote><p>The remote server didn&#8217;t report a correct md5sum of the archive. Please ensure you selected the correct type of remote server.</p></blockquote>
<p>To fix upgrade Perl as shown here:</p>
<p><a href="http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/">http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Path to PHP CLI in CPanel</title>
		<link>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:33:06 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[php cli]]></category>
		<category><![CDATA[php cli cpanel]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=414</guid>
		<description><![CDATA[PHP CLI is installed by default by CPanel and placed in:
/usr/local/bin
or
/usr/bin
]]></description>
			<content:encoded><![CDATA[<p>PHP CLI is installed by default by CPanel and placed in:</p>
<blockquote><p>/usr/local/bin</p></blockquote>
<p>or</p>
<blockquote><p>/usr/bin</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
