Legotan Posted February 25, 2018 Share Posted February 25, 2018 Hello, I would like to reset my whmcs db. The reason is that i want to clean my install for productive use. Therefore i want to keep all products and their prices and configs. But no customer data and invoices and so on. Any way to accomplish this? Greetings, Alex Link to comment Share on other sites More sharing options...
WHMCS ChrisD Posted February 25, 2018 Share Posted February 25, 2018 Hey @Legotan Welcome to WHMCS.Community! Yes, there are steps for doing this at https://docs.whmcs.com/Maintenance i've copied them below as well 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 `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. Link to comment Share on other sites More sharing options...
Recommended Posts