<?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 &#187; Apache Administration</title>
	<atom:link href="http://www.webhostingbyte.com/category/cpanel/apache-administration/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>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>1</slash:comments>
		</item>
	</channel>
</rss>
