Guys
I kept having an issue with the PayPal Pro Gateway for card type being declined for Mastercard until I discovered that the cbsubs_gateway_accounts table record is being setup incorrectly as follows:
instead of
Code:
{"gateway_psp_url":"","psp_normal_url":"www.paypal.com","psp_test_url":"www.sandbox.paypal.com","paypal_api_username":"---removed---","paypal_api_password":"---removed---","paypal_api_signature":"----removed-----","accept_payment_condition":"captured","notifications_host":"","psp_radio_description":"","show_cc_avs":"","card_button_type":"text","card_choice_type":"text","cards_custom_image":"images\/cardpayment.png","cardtypes":"visa|*|MasterCard|*|amex"}
it is created as:
Code:
...................."cardtypes":"visa|*|NasterCard|*|amex"}
So its reads "NasterCard" instead of "MasterCard" - as soon as I fixed the database table, it worked fine.
Cheers
Cliff