<?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 Tutorials</title>
	<atom:link href="http://www.webhostingbyte.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingbyte.com</link>
	<description>Web Hosting Tips and Tutorials</description>
	<lastBuildDate>Mon, 22 Feb 2010 11:46:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Missing Accounts From WHM</title>
		<link>http://www.webhostingbyte.com/missing-accounts-from-whm-70.html</link>
		<comments>http://www.webhostingbyte.com/missing-accounts-from-whm-70.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:46:57 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Apache Administration]]></category>
		<category><![CDATA[Cpanel]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=70</guid>
		<description><![CDATA[If you list accounts and one of your accounts is missing, run this command in the shell:

/scripts/rebuildcpusers

]]></description>
			<content:encoded><![CDATA[<p>If you list accounts and one of your accounts is missing, run this command in the shell:</p>
<pre class="brush: php">
/scripts/rebuildcpusers
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/missing-accounts-from-whm-70.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Mod_Security In .htaccess</title>
		<link>http://www.webhostingbyte.com/disable-mod_security-in-htaccess-68.html</link>
		<comments>http://www.webhostingbyte.com/disable-mod_security-in-htaccess-68.html#comments</comments>
		<pubDate>Fri, 20 Nov 2009 15:49:06 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Apache Administration]]></category>
		<category><![CDATA[Cpanel]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=68</guid>
		<description><![CDATA[This post adresses the issue of disabling mod_security on a per account basis. Just add this code to a .htaccess file:

SecFilterEngine Off
SecFilterScanPOST Off

]]></description>
			<content:encoded><![CDATA[<p>This post adresses the issue of disabling mod_security on a per account basis. Just add this code to a .htaccess file:</p>
<pre class="brush: php">
SecFilterEngine Off
SecFilterScanPOST Off
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/disable-mod_security-in-htaccess-68.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrong Datatype Error In Fantastico</title>
		<link>http://www.webhostingbyte.com/wrong-datatype-error-in-fantastico-65.html</link>
		<comments>http://www.webhostingbyte.com/wrong-datatype-error-in-fantastico-65.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:16:59 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Fantastico Administration]]></category>
		<category><![CDATA[ioncube loader]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=65</guid>
		<description><![CDATA[Fix for the Wrong Datatype Error in Fantastico.]]></description>
			<content:encoded><![CDATA[<p>If you receive a Wrong Datatype in /tmp/ message in your fantastico, here&#8217;s the fix:</p>
<p>Login to WHM and check in Tweak Settings if Ioncube PHP Loader is selected. It should be.</p>
<p>If that solved the issue, Goodbye. If it didn&#8217;t, Hello! </p>
<p>SSH to your server as root and run this command:</p>
<pre class="brush: php">
/scripts/makecpphp
</pre>
<p>That should fix your problem. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/wrong-datatype-error-in-fantastico-65.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running PHP Script With Cronjob</title>
		<link>http://www.webhostingbyte.com/running-php-script-cronjob-63.html</link>
		<comments>http://www.webhostingbyte.com/running-php-script-cronjob-63.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:23:36 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[cronjob]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=63</guid>
		<description><![CDATA[How to run a php script using a cron job, in cpanel?]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s easy to configure a cron job in cpanel, in order to run a php script automatically. You must know the physical path of the script. That will be:</p>
<p>/home/username/public_html/folder/filename</p>
<p>Replace username, folders and filename.</p>
<p>And the php path, which will be /usr/local/bin/php</p>
<p>The command will then be:</p>
<pre class="brush: php">
/usr/local/bin/php -f /home/username/public_html/folder/filename
</pre>
<p>Configure the time settings. And it&#8217;s done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/running-php-script-cronjob-63.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Correct Permission Problem In Suphp</title>
		<link>http://www.webhostingbyte.com/correct-permission-suphp-60.html</link>
		<comments>http://www.webhostingbyte.com/correct-permission-suphp-60.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:06:51 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Apache Administration]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[suphp]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=60</guid>
		<description><![CDATA[An easy fix to the internal server error message, in Suphp, when you have files and folders with permission over 755.]]></description>
			<content:encoded><![CDATA[<p>With Suphp, you can&#8217;t have any files or folders with permissions greater than 755. Otherwise, you will get a Internal Server Error. There could be other reasons for that error. You must check the apache error_log. In Centos, you will find that file in /usr/local/apache/logs/error_log.</p>
<p>Confirmed the permission problem, a easy fix is to ssh to the server. Access the public_html folder of the account. And run these commands:</p>
<pre class="brush: php">
find . -type f -exec chmod 644 &#039;{}&#039; \;
find . -type d -exec chmod 755 &#039;{}&#039; \;
</pre>
<p>If you don&#8217;t have ssh access to your shared hosting account, upload a php file to the public_html directory and call the file in the browser. Include this code in the php file:</p>
<pre class="brush: php">
&lt;?
shell_exec(&quot;find . -type d -exec chmod 755 {} \\;&quot;);
shell_exec(&quot;find . -type f -name &#039;*.php&#039; -exec chmod 644 {} \\;&quot;);
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/correct-permission-suphp-60.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta Refresh Redirect</title>
		<link>http://www.webhostingbyte.com/meta-refresh-redirect-56.html</link>
		<comments>http://www.webhostingbyte.com/meta-refresh-redirect-56.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 10:57:29 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[meta refresh redirect]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=56</guid>
		<description><![CDATA[How to do a meta refresh redirect?]]></description>
			<content:encoded><![CDATA[<p>If you need to redirect your visitors to a different webpage, one of the options available for that redirect is a meta refresh redirect. This code is normally used to refresh the webpage after a few seconds. But it&#8217;s also used for url redirects. You just lower the refresh interval to zero. In the example we have a interval of 5 seconds.</p>
<pre class="brush: php">
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;refresh&quot; content=&quot;2;url=http://www.domain.com/new-url.html&quot; /&gt;
&lt;title&gt;This Webpage has moved&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
The content of this webpage has moved. If you&#039;re not redirected to the new webpage in a few seconds, please click &lt;a href=&quot;http://www.domain.com/new-url.html&quot;&gt;here&lt;/a&gt; to go to the new webpage.
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/meta-refresh-redirect-56.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Live Chat Software</title>
		<link>http://www.webhostingbyte.com/free-live-chat-software-53.html</link>
		<comments>http://www.webhostingbyte.com/free-live-chat-software-53.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:43:20 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Live Chat]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=53</guid>
		<description><![CDATA[List of Live Chat Scripts with real time monitoring of visitors.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of a few live chat scripts. They are all open source and free:</p>
<p><a title="Olark Live Chat Script" href="http://www.olark.com/portal/" target="_blank">Olark </a>allows you to monitor and chat with customers as they browser your website.</p>
<p><a title="LiveZilla - Live Chat Script" href="http://livehelp.livezilla.net/home/en/" target="_blank">LiveZilla</a> is a Live Help, Char and Support script, that also allows you to monitor your visitors in real time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/free-live-chat-software-53.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Administration Companies</title>
		<link>http://www.webhostingbyte.com/server-administration-companies-48.html</link>
		<comments>http://www.webhostingbyte.com/server-administration-companies-48.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:35:23 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=48</guid>
		<description><![CDATA[List of companies that provide server administration services on a per incident or per month basis.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of <a title="Server Administration Companies" href="http://www.webhostingtalk.com/wiki/Server_management" target="_blank">companies that provide server administration services</a>.</p>
<p>Most of these companies provide server administration for linux servers. But a few also support Windows servers. Check their websites for more information.</p>
<p>Normally, these companies will do security configuration and audits, software updates, server optimization and monitoring. And their mothly service will also include a few hours of server administration to fix any problems with your server software.</p>
<p>You can find cheap services, starting at $30 per month and per server. But a more reasonable price will be in the $50 / $100 range, for a more reliable service.</p>
<p>I can recommend <a title="Touch Support" href="http://touchsupport.com/" target="_blank">Touch Support</a> and <a title="Rack911" href="http://www.rack911.com/" target="_blank">Rack911</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/server-administration-companies-48.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expired License</title>
		<link>http://www.webhostingbyte.com/expired-license-44.html</link>
		<comments>http://www.webhostingbyte.com/expired-license-44.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 22:16:55 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Cpanel]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=44</guid>
		<description><![CDATA[How to deal with the expired license error in Cpanel and Web Host Manager?]]></description>
			<content:encoded><![CDATA[<p>Have you ever logged into cpanel or whm and found a Expired License message?Why and how to deal with this message?</p>
<p>One of the reasons for the display of this message could be that your cpanel license has expired. Check if that is the case. Cpanel has a tool for you to <a title="Cpanel License Verification System" href="http://www.cpanel.net/apps/verify/" target="_blank">verify if your cpanel license is valid</a>.</p>
<p>Your server&#8217;s main IP address could be different than the licensed IP address or your server could be experiencing problems perfoming dns lookups. SSH to your server and run the following command:</p>
<pre class="brush: php">

curl http://www.cPanel.net/showip.cgi
</pre>
<p>If your main IP is not licensed, you must update your cpanel&#8217;s license information. If you get an error, after running this command, you must check your /etc/hosts and /etc/resolv.conf files.</p>
<p>Also check if your hostname is properly configured. It should have this format: subdomain.domain.com.</p>
<p>Finally, try this command:</p>
<pre class="brush: php">

/usr/local/cpanel/cpkeyclt
</pre>
<p>It will just try to validate the license with cpanel&#8217;s servers. Sometimes, the expired license message is due to temporary connection problems with cpanel&#8217;s servers and the license is not validated. This command will resolve that issue. If you receive an error, you must check why your server is unable to connect with cpanel&#8217;s servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/expired-license-44.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Round Cube Perfomance</title>
		<link>http://www.webhostingbyte.com/round-cube-perfomance-42.html</link>
		<comments>http://www.webhostingbyte.com/round-cube-perfomance-42.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 22:02:09 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Email Administration]]></category>
		<category><![CDATA[Round Cube]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=42</guid>
		<description><![CDATA[Cpanel is adding changes to it's Beta Builder to enhance the perfomance of Round Cube. These changes should be published in the Edge Build soon.]]></description>
			<content:encoded><![CDATA[<p>Cpanel has announced a few changes that will <a title="Round Cube Perfomance" href="http://forums.cpanel.net/f5/upcoming-roundcube-performance-enhancement-132629.html" target="_blank">increase the perfomance of Round Cube</a>, dealing with a growing number of reports regarding excessive CPU usage.  The changes have been applied to the Beta Build. And Cpanel will publish these changes to the Edge Build soon.</p>
<p>Round Cube is a very attractive webmail software, due to it&#8217;s AJAX features. I hope they can optimize it&#8217;s resource usage. You can&#8217;t rely on a webmail software that undermines the server&#8217;s perfomance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/round-cube-perfomance-42.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
