<?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>SupportSages &#187; WHM</title>
	<atom:link href="http://www.supportsages.com/blog/tag/whm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportsages.com/blog</link>
	<description>Technical Support and Server Management : Musings in the fox hole.</description>
	<lastBuildDate>Thu, 05 Jan 2012 03:05:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>MySQL for Beginners</title>
		<link>http://www.supportsages.com/blog/2011/02/mysql-for-beginners/</link>
		<comments>http://www.supportsages.com/blog/2011/02/mysql-for-beginners/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 16:12:40 +0000</pubDate>
		<dc:creator>vince</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysqldump]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[repair]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=1753</guid>
		<description><![CDATA[In this post, I'll explain some basic MySQL tips that would be very useful for beginners

<strong>Reset MySQL root password</strong>

Log in as Root and Stop the MySQL daemon. Then Start the MySQL daemon and skip the grant tables which store the passwords.

[bash]# /etc/init.d/mysql stop[/bash]

[bash]# mysqld_safe --skip-grant-tables[/bash]

[bash]# mysql -u root[/bash]

[bash]mysql&#62; use mysql;[/bash]

Now you should be able to connect to mysql without a password. If not, it might be some other issues. Execute the command to reset the password

[bash]mysql&#62; update user set Password=PASSWORD('new-password') where user='root';
mysql&#62; flush privileges;
mysql&#62; exit[/bash]

After this you need to kill the running mysqld and restart it normally.

<strong>Creation of MySQL database, ...]]></description>
			<content:encoded><![CDATA[<p>In this post, I&#8217;ll explain some basic MySQL tips that would be very useful for beginners</p>
<p><strong>Reset MySQL root password</strong></p>
<p>Log in as Root and Stop the MySQL daemon. Then Start the MySQL daemon and skip the grant tables which store the passwords.</p>
<pre class="brush: bash; title: ; notranslate"># /etc/init.d/mysql stop</pre>
<pre class="brush: bash; title: ; notranslate"># mysqld_safe --skip-grant-tables</pre>
<pre class="brush: bash; title: ; notranslate"># mysql -u root</pre>
<pre class="brush: bash; title: ; notranslate">mysql&gt; use mysql;</pre>
<p>Now you should be able to connect to mysql without a password. If not, it might be some other issues. Execute the command to reset the password</p>
<pre class="brush: bash; title: ; notranslate">mysql&gt; update user set Password=PASSWORD('new-password') where user='root';
mysql&gt; flush privileges;
mysql&gt; exit</pre>
<p>After this you need to kill the running mysqld and restart it normally.</p>
<p><strong>Creation of MySQL database, user and access rights</strong></p>
<p>It should be very easy to create a database through cpanel or some other panel. But if you are on your own with only Shell access, try this :</p>
<pre class="brush: bash; title: ; notranslate"># mysql -u root -p
 mysql&gt; use mysql;
 mysql&gt; INSERT INTO db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv) VALUES  ('%','databasename','username','Y','Y','Y','Y','Y','N');
 mysql&gt; flush privileges;
</pre>
<p>Or you can use</p>
<pre class="brush: bash; title: ; notranslate">
mysql&gt; grant all privileges on databasename.* to username@localhost;
mysql&gt; flush privileges;
</pre>
<p><strong>MySQLdump and Restore</strong></p>
<p>The <strong>mysqldump</strong> client is a database backup.  It can be used to dump a         database or a collection of databases for backup or transfer to         another SQL server (not necessarily a MySQL server). The dump         typically contains SQL statements to create the table, populate         it, or both.</p>
<p>Creating a Mysqldump is quite easy. If you know the database name, say database :</p>
<pre class="brush: bash; title: ; notranslate"># mysqldump database &gt; database.sql</pre>
<p>When restoring a Database, make sure you login as the user. In other words, do not restore a database with root privileges. It may cause real damage. Assuming that you are logged in as the user</p>
<pre class="brush: bash; title: ; notranslate">&lt;strong&gt; &lt;/strong&gt;
mysql&gt; use dbname; //Which is the database which the backup has to be restored to
mysql &gt; source olddb.sql; //Backup
</pre>
<p><strong>Repair a corrupted Database</strong></p>
<p>Switch to the database directory which is having issues with, Like :</p>
<pre class="brush: bash; title: ; notranslate"># cd /var/lib/mysql/database</pre>
<p>Stop the MySQL server</p>
<pre class="brush: bash; title: ; notranslate"># /etc/init.d/mysql stop</pre>
<p>Check the tables</p>
<pre class="brush: bash; title: ; notranslate"># myisamchk *.MYI</pre>
<p>Repair the tables</p>
<pre class="brush: bash; title: ; notranslate"># myisamchk -r *.MYI</pre>
<p>Start the MySQL server</p>
<pre class="brush: bash; title: ; notranslate"># /etc/init.d/mysql start</pre>
<p><strong>phpMyadmin</strong></p>
<p>phpMyAdmin is an open source tool written in PHP intended to handle the administration of MySQL over the World Wide Web. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows; executing SQL statements; or managing users and permissions.</p>
<p>If you are having a cPanel or WHM interface, its quite easy to manage a database. In cPanel interface, go to Databases section</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/02/cpanel_phpmyadmin.png" class="thickbox no_icon" rel="gallery-1753" title="cpanel_phpmyadmin"><img class="alignnone size-full wp-image-1770" title="cpanel_phpmyadmin" src="http://www.supportsages.com/blog/wp-content/uploads/2011/02/cpanel_phpmyadmin.png" alt="" width="513" height="114" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/02/whm_phpmyadmin.png" class="thickbox no_icon" rel="gallery-1753" title="whm_phpmyadmin"><img class="alignnone size-large wp-image-1772" title="whm_phpmyadmin" src="http://www.supportsages.com/blog/wp-content/uploads/2011/02/whm_phpmyadmin-1024x191.png" alt="" width="500" height="110" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/02/phpmyadmin_main.png" class="thickbox no_icon" rel="gallery-1753" title="phpmyadmin_main"><img class="alignnone size-medium wp-image-1775" title="phpmyadmin_main" src="http://www.supportsages.com/blog/wp-content/uploads/2011/02/phpmyadmin_main-300x127.png" alt="" width="500" height="250" /></a></p>
<p>This is the main phpMyadmin page.</p>
<p>In WHM, at SQL Services you can perform a variety of options. As mentioned earlier, the database repair option (for corrupted databases) can be performed here also. Access the option &#8216;Repair a Database&#8217;</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/02/repair_db_pma.png" class="thickbox no_icon" rel="gallery-1753" title="repair_db_pma"><img class="alignnone size-medium wp-image-1774" title="repair_db_pma" src="http://www.supportsages.com/blog/wp-content/uploads/2011/02/repair_db_pma-300x77.png" alt="" width="500" height="120" /></a></p>
<p>Select the Database name and Click Repair Database.</p>
<p>These are quite simple tasks associated with MySQL operations.</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=MySQL+for+Beginners+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1753" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=MySQL+for+Beginners+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1753" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2011/02/mysql-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to resolve : Internal Server Error when accessing cpanel/WHM/Webmail</title>
		<link>http://www.supportsages.com/blog/2010/06/how-to-resolve-internal-server-error-when-accessing-cpanelwhmwebmail/</link>
		<comments>http://www.supportsages.com/blog/2010/06/how-to-resolve-internal-server-error-when-accessing-cpanelwhmwebmail/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 19:13:12 +0000</pubDate>
		<dc:creator>vince</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Specials]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[inode issue]]></category>
		<category><![CDATA[inodes]]></category>
		<category><![CDATA[internal server error]]></category>
		<category><![CDATA[more than 400 attempts to make a session failed]]></category>
		<category><![CDATA[Webmail]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=927</guid>
		<description><![CDATA[Imagine you are accessing your Website WHM or cPanel or Webmail hosted (in your VPS) and what if you see this

<a href="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cpanel-inode-full-issue.png"><img class="alignnone size-medium wp-image-929" title="cpanel inode full issue" src="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cpanel-inode-full-issue-300x63.png" alt="Image showing the issue" width="300" height="63" /></a><span style="text-decoration: underline;"><strong> </strong></span>

<span style="text-decoration: underline;"><strong>How to solve this</strong></span>

Pre-Requisites : You should have Shell access (as root) to the Node server.

Mostly this happens due to inode issue. The inodes allocated to the server maybe full. <strong>inode</strong> is a data structure on a traditional Unix-style file system such as UFS. An inode stores basic information about a regular file, directory, or other file system object.

<strong>Steps</strong>

Say ...]]></description>
			<content:encoded><![CDATA[<p>Imagine you are accessing your Website WHM or cPanel or Webmail hosted (in your VPS) and what if you see this</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cpanel-inode-full-issue.png" class="thickbox no_icon" rel="gallery-927" title="cpanel inode full issue"><img class="alignnone size-medium wp-image-929" title="cpanel inode full issue" src="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cpanel-inode-full-issue-300x63.png" alt="Image showing the issue" width="300" height="63" /></a><span style="text-decoration: underline;"><strong> </strong></span></p>
<p><span style="text-decoration: underline;"><strong>How to solve this</strong></span></p>
<p>Pre-Requisites : You should have Shell access (as root) to the Node server.</p>
<p>Mostly this happens due to inode issue. The inodes allocated to the server maybe full. <strong>inode</strong> is a data structure on a traditional Unix-style file system such as UFS. An inode stores basic information about a regular file, directory, or other file system object.</p>
<p><strong>Steps</strong></p>
<p>Say we are logged into the Node Server. There we are going to list all the Containers existing on the Hardware Node. By default, only running Containers are shown.</p>
<pre class="brush: bash; title: ; notranslate">
[root@linuxvps1 ~]# vzlist -a
CTID    NPROC STATUS   IP_ADDR        HOSTNAME
100     18  running    100.20.11.111  WEB.EXAMPLE.COM
101     63  running    100.20.12.203  -
102     169 running    100.20.92.182  server2.example.com
103     81  running    100.20.56.169  example.net
78965   236 running    100.20.77.204  server1.example.com
</pre>
<p>Assume your container is 103. So simply enter into 103 by this command</p>
<pre class="brush: bash; title: ; notranslate">
[root@linuxvps1 ~]# vzctl enter 103
</pre>
<p>Check if the inodes are full in the container</p>
<pre class="brush: bash; title: ; notranslate">
[root@linuxvps1 ~]# df -i
</pre>
<p>Most Probably it should display something like this :</p>
<pre class="brush: bash; title: ; notranslate">
Filesystem      Inodes      IUsed        IFree     IUse%      Mounted on
/dev/vzfs       200000      200000       0         100%       /
none            65536       95           65441     1%         /dev
</pre>
<p>Bang ! The inodes on /dev/vzfs mounted on / are full. You&#8217;ve to go nowhere else to see why that error was delivered. A simple solution will work out, you&#8217;ve to increase the inode limit. You&#8217;ve two options, either through Shell or through the Node Control Panel (like Parallels Infrastructure Manager)</p>
<p>First we will go through Shell mode with this command :</p>
<pre class="brush: bash; title: ; notranslate">$ vzctl set veid --diskinodes softlimit:hardlimit </pre>
<p>Where &#8216;veid&#8217; is the VPS ID</p>
<pre class="brush: bash; title: ; notranslate">root@linuxvps1 ~]# vzctl set 103 --diskinodes 7680100:7680200</pre>
<p>Second we are going for Node Control Panel. In the infrastructure, you will see your VPS with a ! sign. That indicates your VPS is having some sort of issue.</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp12.png" class="thickbox no_icon" rel="gallery-927" title="cp1"><img class="alignnone size-full wp-image-934" title="cp1" src="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp12.png" alt="" width="195" height="159" /></a></p>
<p>So you&#8217;ve seen the Alert. Next access the VPS, go to Resources tab. I&#8217;m sorry to tell you that I grabbed this screenshot after resolving the issue, but it will help you anyway</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp2.png" class="thickbox no_icon" rel="gallery-927" title="cp2"><img class="alignnone size-full wp-image-935" title="cp2" src="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp2.png" alt="" width="616" height="408" /></a></p>
<p>You should see the &#8216;Disk Inodes&#8217; is full under &#8216;Disk Usage&#8217; category (Here it is not !). Next Click Configure to settle this one</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp41.png" class="thickbox no_icon" rel="gallery-927" title="cp4"><img class="alignnone size-full wp-image-937" title="cp4" src="http://www.supportsages.com/blog/wp-content/uploads/2010/06/cp41.png" alt="" width="1192" height="394" /></a>See the Highlighted part, the inodes should be limited to some size. Increase it or remove the check mark to make it unlimited.  Make sure you save the changes. Now try again accessing cpanel/WHM/Webmail. It should load with out any issues.That makes a smile in your face, isn&#8217;t it ? <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=How+to+resolve+%3A+Internal+Server+Error+when+accessing+cpanel%2FWHM%2FWebmail+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F927" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=How+to+resolve+%3A+Internal+Server+Error+when+accessing+cpanel%2FWHM%2FWebmail+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F927" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/06/how-to-resolve-internal-server-error-when-accessing-cpanelwhmwebmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding packages from WHM or editing the reseller privileges is not working on a x86_64 architecture</title>
		<link>http://www.supportsages.com/blog/2009/05/adding-packages-from-whm-or-editing-the-reseller-privileges-is-not-working-on-a-x86_64-architecture/</link>
		<comments>http://www.supportsages.com/blog/2009/05/adding-packages-from-whm-or-editing-the-reseller-privileges-is-not-working-on-a-x86_64-architecture/#comments</comments>
		<pubDate>Sat, 23 May 2009 16:04:53 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[500 Internal Server Error]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[memory limit]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=387</guid>
		<description><![CDATA[As usual, start by checking the error log of cPanel at <code>/usr/local/cpanel/logs/error_log</code>

<blockquote>2009-05-23 15:44:24 info [whostmgr2] [28346] Waiting for lock on /var/cpanel/package-limits.yaml held by /usr/local/cpanel/whostmgr/bin/whostmgr2 - locking /var/cpanel/package-limits.yaml with pid 25968
2009-05-23 15:44:25 info [whostmgr2] [28346] Removing expired lock file /var/cpanel/package-limits.yaml.lock
(internal warning while parsing [stdin]) Sat May 23 23:41:28 2009 [25968] warn: Attempt to free unreferenced scalar.</blockquote>

While the error (internal warning while parsing [stdin]) Sat May 23 23:41:28 2009 [25968] warn: Attempt to free unreferenced scalar floods the error log

Permissions were all right, but suddenly this started happening, but only x86_64 architectures only. Reason being the cPanel is killing the process, since ...]]></description>
			<content:encoded><![CDATA[<p>As usual, start by checking the error log of cPanel at <code>/usr/local/cpanel/logs/error_log</code></p>
<blockquote><p>2009-05-23 15:44:24 info [whostmgr2] [28346] Waiting for lock on /var/cpanel/package-limits.yaml held by /usr/local/cpanel/whostmgr/bin/whostmgr2 &#8211; locking /var/cpanel/package-limits.yaml with pid 25968<br />
2009-05-23 15:44:25 info [whostmgr2] [28346] Removing expired lock file /var/cpanel/package-limits.yaml.lock<br />
(internal warning while parsing [stdin]) Sat May 23 23:41:28 2009 [25968] warn: Attempt to free unreferenced scalar.</p></blockquote>
<p>While the error (internal warning while parsing [stdin]) Sat May 23 23:41:28 2009 [25968] warn: Attempt to free unreferenced scalar floods the error log</p>
<p>Permissions were all right, but suddenly this started happening, but only x86_64 architectures only. Reason being the cPanel is killing the process, since it exceeded the memory usage allowed by cPanel.</p>
<p>Solution would be to increase the memory limit of cPanel by following the instructions below.</p>
<p><strong>WHM</strong> -> <strong>Server Configuration</strong> -> <strong>Tweak Settings</strong> Choose the setting for:</p>
<p>The maximum memory a cPanel process can use before it is killed off (in megabytes). Values less than 128 megabytes can not be specified. A value of &#8220;0&#8243; will disable the memory limits.</p>
<p>The settings had 256M there, and increasing the value to 1024 M helped. Server had 8G RAM, so the value of 1024M was fine here. </p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Adding+packages+from+WHM+or+editing+the+reseller+privileges+is+not+working+on+a+x86_64+architecture+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F387" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Adding+packages+from+WHM+or+editing+the+reseller+privileges+is+not+working+on+a+x86_64+architecture+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F387" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/05/adding-packages-from-whm-or-editing-the-reseller-privileges-is-not-working-on-a-x86_64-architecture/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto enable access to whm, cpanel subdomains (proxy subdomains) in cPanel</title>
		<link>http://www.supportsages.com/blog/2009/05/howto-enable-access-to-whm-cpanel-subdomains-proxy-subdomains-in-cpanel/</link>
		<comments>http://www.supportsages.com/blog/2009/05/howto-enable-access-to-whm-cpanel-subdomains-proxy-subdomains-in-cpanel/#comments</comments>
		<pubDate>Sun, 17 May 2009 04:31:37 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[proxy subdomains]]></category>
		<category><![CDATA[subdomains]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=359</guid>
		<description><![CDATA[With cPanel 11, this has become very easy. Assuming that you have mod_proxy and mod_rewrite installed on your apache,

Go to <strong>WHM</strong> --> <strong>Tweak Settings</strong> --> <strong>Check the following settings</strong>

<code>
Add proxy VirtualHost to httpd.conf to automatically redirect unconfigured cpanel, webmail, webdisk and whm subdomains to the correct port (requires mod_rewrite and mod_proxy)</code>

<code>Automatically create cpanel, webmail, webdisk and whm proxy subdomain DNS entries for new accounts. When this is initially enabled it will add appropriate proxy subdomain DNS entries to all existing accounts. (Use /scripts/proxydomains to reconfigure the DNS entries manually)</code>

Once enabled let the /scripts/proxydomains run and it will be enabled for ...]]></description>
			<content:encoded><![CDATA[<p>With cPanel 11, this has become very easy. Assuming that you have mod_proxy and mod_rewrite installed on your apache,</p>
<p>Go to <strong>WHM</strong> &#8211;> <strong>Tweak Settings</strong> &#8211;> <strong>Check the following settings</strong></p>
<p><code><br />
Add proxy VirtualHost to httpd.conf to automatically redirect unconfigured cpanel, webmail, webdisk and whm subdomains to the correct port (requires mod_rewrite and mod_proxy)</code></p>
<p><code>Automatically create cpanel, webmail, webdisk and whm proxy subdomain DNS entries for new accounts. When this is initially enabled it will add appropriate proxy subdomain DNS entries to all existing accounts. (Use /scripts/proxydomains to reconfigure the DNS entries manually)</code></p>
<p>Once enabled let the /scripts/proxydomains run and it will be enabled for all existing domains and new ones to be created. For a server with DNS cluster enabled, please refrain from enabling this, as it requires reload of those many zones of domains in the shared server at your DNS server.</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Howto+enable+access+to+whm%2C+cpanel+subdomains+%28proxy+subdomains%29+in+cPanel+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F359" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Howto+enable+access+to+whm%2C+cpanel+subdomains+%28proxy+subdomains%29+in+cPanel+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F359" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/05/howto-enable-access-to-whm-cpanel-subdomains-proxy-subdomains-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In cPanel, howto make exceptions in the email sending limit, per domain ?</title>
		<link>http://www.supportsages.com/blog/2009/05/in-cpanel-how-do-imake-exceptions-in-the-email-sending-limit-per-domain/</link>
		<comments>http://www.supportsages.com/blog/2009/05/in-cpanel-how-do-imake-exceptions-in-the-email-sending-limit-per-domain/#comments</comments>
		<pubDate>Sat, 16 May 2009 12:17:33 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[email sending limit]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[per domain limit]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=351</guid>
		<description><![CDATA[You may have already know about the following option: Main --&#62; Server Configuration --&#62; Tweak Settings --&#62; The maximum each domain can send out per hour

We recommend you to set it as low as possible. And then make per domain restrictions as below, to increase the numbers.
<ol>
	<li>Login to your server</li>
	<li>Edit /var/cPanel/maxemails</li>
	<li>Add a new line saying "domain.com = increased_number" (eg: supportsages.com = 800)</li>
	<li>Save the file.</li>
	<li>And finally run /scripts/build_maxemails_config</li>
</ol>

And you are done!!!]]></description>
			<content:encoded><![CDATA[<p>You may have already know about the following option: Main &#8211;&gt; Server Configuration &#8211;&gt; Tweak Settings &#8211;&gt; The maximum each domain can send out per hour</p>
<p>We recommend you to set it as low as possible. And then make per domain restrictions as below, to increase the numbers.</p>
<ol>
<li>Login to your server</li>
<li>Edit /var/cPanel/maxemails</li>
<li>Add a new line saying &#8220;domain.com = increased_number&#8221; (eg: supportsages.com = 800)</li>
<li>Save the file.</li>
<li>And finally run /scripts/build_maxemails_config</li>
</ol>
<p>And you are done!!!</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=In+cPanel%2C+howto+make+exceptions+in+the+email+sending+limit%2C+per+domain+%3F+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F351" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=In+cPanel%2C+howto+make+exceptions+in+the+email+sending+limit%2C+per+domain+%3F+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F351" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/05/in-cpanel-how-do-imake-exceptions-in-the-email-sending-limit-per-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resellers WHM not showing any accounts while listing them</title>
		<link>http://www.supportsages.com/blog/2009/05/resellers-whm-not-showing-any-accounts-while-listing-them/</link>
		<comments>http://www.supportsages.com/blog/2009/05/resellers-whm-not-showing-any-accounts-while-listing-them/#comments</comments>
		<pubDate>Fri, 08 May 2009 15:44:18 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[cPanel hosting]]></category>
		<category><![CDATA[reseller]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=324</guid>
		<description><![CDATA[Today, a few of the resellers of one of our client had an issue where the "List Accounts" option in WHM fails to show any of their accounts. I had to spend around 15 minutes to figure out the issue. Not so tough, but haven't seen the issue for a while. So here is what I did. I am including the command here and I leave it to your guys to understand the steps and take risks :D You are at your risk, because each step is dependent on the result of previous step.

<blockquote>ls -l /var/cpanel/reseller_username.accts
grep OWNER=reseller_username /var/cpanel/users/*
mv /etc/trueuserowners /etc/trueuserowners.bak
/scripts/updateuserdomains ...]]></description>
			<content:encoded><![CDATA[<p>Today, a few of the resellers of one of our client had an issue where the &#8220;List Accounts&#8221; option in WHM fails to show any of their accounts. I had to spend around 15 minutes to figure out the issue. Not so tough, but haven&#8217;t seen the issue for a while. So here is what I did. I am including the command here and I leave it to your guys to understand the steps and take risks <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  You are at your risk, because each step is dependent on the result of previous step.</p>
<blockquote><p>ls -l /var/cpanel/reseller_username.accts<br />
grep OWNER=reseller_username /var/cpanel/users/*<br />
mv /etc/trueuserowners /etc/trueuserowners.bak<br />
/scripts/updateuserdomains<br />
/scripts/updateuserdomains<br />
ls -l /etc/trueuserowners<br />
diff /etc/trueuserowners /etc/trueuserowners.bak<br />
ls -l /var/cpanel/reseller_username.accts<br />
rm /var/cpanel/reseller_username.accts</p></blockquote>
<p>And now access the resellers&#8217; WHM and all the accounts should be there. If it is still not there, add it manually. How ? by using the &#8220;Fetch CSV&#8221; option and manually adding those reseller&#8217;s account details to /var/cpanel/reseller_username.accts file. But remember you are messing up with a cPanel file directly and don&#8217;t blame me, if it gets overridden.</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Resellers+WHM+not+showing+any+accounts+while+listing+them+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F324" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Resellers+WHM+not+showing+any+accounts+while+listing+them+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F324" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/05/resellers-whm-not-showing-any-accounts-while-listing-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

