Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to install WHMCS?  (Read 3114 times)

0 Members and 1 Guest are viewing this topic.

Givin Varghese

  • Guest
How to install WHMCS?
« on: November 28, 2013, 12:06:50 pm »
Steps to install WHMCS

Code: [Select]
wget -O /usr/local/apache/htdocs/whmcs_v503_stable.zip http://vpswebservices.softcom.com/whmcs_v503_stable.zip
Code: [Select]
cd /usr/local/apache/htdocs
Code: [Select]
unzip whmcs_v503_stable.zip
Code: [Select]
[code]rm -rf whmcs_v503_stable.zip[/code]

Code: [Select]
chown -R nobody:nobody whmcs/
Code: [Select]
mv whmcs/configuration.php.new whmcs/configuration.php
Code: [Select]
chmod 777 whmcs/configuration.php
================

Run the install script in a browser.

Quote
http://<domain-name-here>/whmcs/install/install.php

During the install script, use the MySQL database you created earlier in this article.

Quote
Database Host: localhost
Database Name: whmcs
Database Username: whmcs
Database Password: *password that was used*

You will also be directed to set up a cron job as root, which also cannot be done through WHM and must be done manually at the shell (crontab -e).

Code: [Select]
01 1 * * * php -q /usr/local/apache/htdocs/whmcs/admin/cron.php
After completing the installation, delete the /whmcs/install directory (you will be prompted to do so).

Code: [Select]
rm -rf /usr/local/apache/htdocs/whmcs/install
You are done  :D