January 25th, 2012 |
admin |
You can perform a full backup of your account/domain from cPanel >> “Backups” option under the Files section. The full cPanel backup is very useful when migrating an account from one server to another. 1) Login to cPanel at http://yourdomainname.tld:2082 click the “Backups” option as shown in the screen below 2) On the next screen, [...]
January 24th, 2012 |
admin |
How to change cPanel theme for multiple accounts? The cPanel theme for an account is specified in the /var/cpanel/users/username file in the format RS=value For example: BWLIMIT=unlimited DEMO=0 DNS=domainname.com FEATURELIST=default HASCGI=1 IP=IPHERE LANG=english LOCALE=en MAXADDON=0 MAXFTP=0 MAXLST=0 MAXPARK=0 MAXPOP=5 MAXSQL=0 MAXSUB=0 MTIME=1271068514 OWNER=root PLAN=default STARTDATE=1228721668 USER=username RS=x3 where, x3 is the theme. WHM only provides [...]
January 17th, 2012 |
admin |
Howto check number of emails in the mail queue: exim -bpc To check the email ID, sender and receiver of the each email: exim -bp | more To delete frozen emails from the mail queue, execute: exim -bp | grep ‘frozen’ | awk ‘{print $3}’ | xargs exim -Mrm similarly, to delete emails sent using [...]
January 16th, 2012 |
admin |
Account Creation Status: failed (Your system has run out of available ip addresses, or you do not have permission to use any more ip addresses. (Unable to find an ip address.) ) You receive the “Account Creation Status: failed” error message while adding a domain from WHM >> Account Functions >> “Create a New Account” [...]
January 15th, 2012 |
admin |
Q. How do I upgrade my CentOS Linux 5.0 dedicated server to WHM / cPanel edge release? A. You can upgrade to EDGE release from WHM manager. Please note that Edge is the bleeding edge tree. While it has the newest features; It has undergone the least amount of testing (if any). You generally shouldn’t [...]
January 10th, 2012 |
admin |
Script used to correct permission of files after suphp #!/bin/bash # For some stupid reason, cPanel screws up the directory permissions. chmod 755 /opt/suphp find /opt/suphp -type d -exec chmod 755 {} \; # Ensure that the permissions are sane and won’t cause a 500 error. for user in `/bin/ls /var/cpanel/users`; do chown -R ${user}:${user} [...]
January 3rd, 2012 |
admin |
Issue: Hosting account do not show up in WHM Cause: /etc/trueuserdomains file which holds a list of account on the server is empty Solution: restore contents of /etc/trueuserdomains and update cpanel with /scripts/upcp Incoming search terms:cpanel rebuild network centos (1)hosting controller centos (1)logs missing from /usr/local/apache/domlogs (1)mod_ruid2 howto (1)php undefined symbol: zend_atol in unknown on [...]
January 3rd, 2012 |
admin |
CPanel includes support in their installer for eaccelerator; still, for some strange reason they don’t include support for APC also. So, if you want to install APC on your CPanel powered server, you will have to go back at the command line and install it manually. Here are the steps needed to install the latest [...]
January 3rd, 2012 |
admin |
Here’s a quick how-to for installing ImageMagick and Imagick on Cpanel server. I will cover only the procedure using the Cpanel built-in scripts, although you can also install it the usual way (rpm or source install). ImageMagick is the application for working with images while the Imagick is a PHP extention to modify/create images using [...]
January 3rd, 2012 |
admin |
This task is very simple and can be done in two steps: 1.) Login as root and change your server hostname: hostname newhos.name.tld Note: Don’t forget to create an A entry for your new hostname, otherwise you will get a popup message during WHM login. 2.) Issue /usr/local/cpanel/cpkeyclt to update your Cpanel License Key, otherwise [...]