Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I wipe out Credit card info.


peego

Recommended Posts

Hi,

 

OScommerce stores the credit card number and expiry date for all the customers.

 

I would like to do periodic wipeouts of these credit card numbers for saftey reasons (i am using https) but i prefer not to store customer billing info for too long.

 

How do I go about clearing out the credit card information for my customers?

 

thanks,

 

Jim

Link to comment
Share on other sites

I would run the following to delete the cc_numbers for orders that have been shipped...

update orders set `cc_number` = '', `cc_expires` = '' where `cc_number` != '' and orders_status = '3';

HTH,

Robert

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...