Magento – Don’t want to save credit card information in database

magento-1.9onepage-checkoutpayment-methods

I have used magento default payment method CC Saved. But, I dont want to save the credit card number in the database. How to override the core files in this case?

I tried with sales_order_save_after event. But not get the actual result as expected. If use this event, we can just update the card number as NULL. But, I don't want to save the credit card number in database.

I don't want to add 3rd party merchant. Because, I need to send the payment details to separate API. They will handle the payment process.

Thanks

Best Answer

Use a 3rd party merchant like Authorize.net or Paypal, you don't want to handle the PCI compliance, and data security of your customers payment data, etc.

With that said see other threads:

Related Topic