Difference between revisions of "Maintenance"
m (Add TOC) |
m (→Restoring a Database Backup) |
||
Line 54: | Line 54: | ||
#Log in to phpMyAdmin and select the database you want to restore the backup to | #Log in to phpMyAdmin and select the database you want to restore the backup to | ||
− | #Click the Import tab at the top <br /><br />[[Image: | + | #Click the Import tab at the top <br /><br />[[Image:maintenance1.png]] <br /><br /> |
#Click the Browse button | #Click the Browse button | ||
#Browse to find your backup file and then press OK | #Browse to find your backup file and then press OK | ||
− | #Click Go <br /><br />[[Image: | + | #Click Go <br /><br />[[Image:maintenance2.png]] |
Revision as of 17:12, 31 December 2019
Resetting your database
After you successfully install your billing system you should run through a series of tests. This includes creating client accounts and placing test orders with your particular setup. Often, once you have finished your testing you will no longer want any of these clients or orders in your system. All you need to do is reset your system and all your test accounts will be removed.
You can empty all the tables that contain clients data by running the following SQL code on your database:
TRUNCATE `mod_invoicedata` ; TRUNCATE `tblaccounts` ; TRUNCATE `tblactivitylog` ; TRUNCATE `tblaffiliates` ; TRUNCATE `tblaffiliatesaccounts` ; TRUNCATE `tblaffiliateshistory` ; TRUNCATE `tblaffiliatespending` ; TRUNCATE `tblaffiliateswithdrawals` ; TRUNCATE `tblbillableitems` ; TRUNCATE `tblcancelrequests` ; TRUNCATE `tblclients` ; TRUNCATE `tblclientsfiles` ; TRUNCATE `tblcontacts` ; TRUNCATE `tblcredit` ; TRUNCATE `tblcustomfieldsvalues` ; TRUNCATE `tbldomains` ; TRUNCATE `tbldomainsadditionalfields` ; TRUNCATE `tblemails` ; TRUNCATE `tblhosting` ; TRUNCATE `tblhostingaddons` ; TRUNCATE `tblhostingconfigoptions` ; TRUNCATE `tblinvoiceitems` ; TRUNCATE `tblinvoices` ; TRUNCATE `tblnotes` ; TRUNCATE `tblorders` ; TRUNCATE `tblquotes` ; TRUNCATE `tblquoteitems` ; TRUNCATE `tblsslorders` ; TRUNCATE `tblticketlog` ; TRUNCATE `tblticketnotes` ; TRUNCATE `tblticketreplies` ; TRUNCATE `tbltickets` ; TRUNCATE `tblupgrades` ;
Note: Resetting your database only deletes client accounts and information. You will not lose any configuration or product settings you have setup.
Backing up your WHMCS Database
It is strongly recommended that you backup your WHMCS Database regularly to ensure you always have a copy of your data should a server or system failure occur. Backing up the database is a very simply task with the built in backup tool. This is how to use it:
- Login to your WHMCS Admin Area
- Go to Utilities > Database Status
- Click the Download Full Database Backup button at the top of the page
- You should be prompted for a file to download. Save the file to your computer. Depending on the database size, this may take a few moments.
- Once the download is complete you have now backed up your database.
Restoring a Database Backup
If you need to restore a backup of your database then you will need to use the following steps. If you have not already recreated your database, do so now. If your database is created, you must drop the existing WHMCS tables.