Rebuilding The Apache Configuration

Rebuilding The Apache Configuration IF YOU FACE THE FOLLOWING ERROR MESSAGE WE NEED TO Re Build the apache configuration If you feel you have reached this page in error, please contact the web site owner: webmaster@tweetchennai.com It may be possible to restore access to this site by following these instructions for clearing your dns cache. […]
How to Upgrade the cPanel vis SSH

How to Upgrade the cPanel vis SSH In order to upgrade cPane;/WHM version from command line you need to execute the below mentioned command # /scripts/upcp –force This will upgrade the cpanel from cureent vesion to higher availabel version.
Command to Restart cPanel Services via SSH

Command to Restart cPanel Services via SSH To restart cpanel services via ssh: 1. Login to ssh 2. Enter the command /etc/rc.d/init.d/cpanel restart This will restart cpanel services.
Creating Mysql Database Users and Changing Password using Sell

Creating Mysql Database Users and Changing Password using Sell Create a new user.INSERT INTO [table name] (Host,User,Password) VALUES(‘%’,’user’,PASSWORD(‘password’)); Change a users password.(from unix shell).mysqladmin -u root -h hostname.blah.org -p password ‘new-password’ Change a users passwordSET PASSWORD FOR ‘user’@’hostname’ = PASSWORD(‘passwordhere’); Allow the user “karthick” to connect to the server from localhost using the password “passwd123” […]
How to enable register_global

How to enable register_global The register_globals directive can be enabled by creating a custom php.ini file containing the following line: register_globals = On