sgrayban Posted February 18, 2017 Share Posted February 18, 2017 Is there a way to delete all credit card information that is stored ? 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted February 18, 2017 Share Posted February 18, 2017 delete it from WHMCS Database? if so you can run one SQL query to delete all that information from specific client account, or all 0 Quote Link to comment Share on other sites More sharing options...
sgrayban Posted February 18, 2017 Author Share Posted February 18, 2017 What is the SQL line ? 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted February 18, 2017 Share Posted February 18, 2017 UPDATE `tblclients` SET `cardtype` = '', `cardlastfour` = '', `cardnum` = '', `startdate` = '', `expdate` = '', `issuenumber` = '' WHERE `id` = '{Client-ID-Here}'; this will delete the CC information from specific client account (replace {Client-ID-Here} with your client ID), use the one below to delete these information from all accounts UPDATE `tblclients` SET `cardtype` = '', `cardlastfour` = '', `cardnum` = '', `startdate` = '', `expdate` = '', `issuenumber` = ''; please take database backup before run any of these queries in case you changed your mind later 0 Quote Link to comment Share on other sites More sharing options...
sgrayban Posted February 18, 2017 Author Share Posted February 18, 2017 Cool thank you !!! 0 Quote Link to comment Share on other sites More sharing options...
WHMCS ChrisD Posted February 18, 2017 Share Posted February 18, 2017 You can also tick the Disable Local Storage box under Setup -> General Settings -> Security -> Disable Credit Card Storage 0 Quote Link to comment Share on other sites More sharing options...
sgrayban Posted February 19, 2017 Author Share Posted February 19, 2017 I was wondering if that would work. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.