Visa and Mastercard worked fine but we got these errors when testing Amex and Disco:
MC - DECLINED. Merchant not MC Secure code enabled
Disc - DECLINED. Invalid MCC Sent
has anyone dealt with this before and have a workaround or is this a bug?
Visa and Mastercard worked fine but we got these errors when testing Amex and Disco:
MC - DECLINED. Merchant not MC Secure code enabled
Disc - DECLINED. Invalid MCC Sent
has anyone dealt with this before and have a workaround or is this a bug?
We ended up having to modify the Paymentech.cs Processor class to not include the Mastercard Secure Code if the merchant account is not set up to accept it.
C#/VB.NET Code:
//else if (UseBillingAddress.CardType.Equals("MASTERCARD", StringComparison.InvariantCultureIgnoreCase))
else if (UseBillingAddress.CardType.Equals("MASTERCARD", StringComparison.InvariantCultureIgnoreCase) && AppLogic.AppConfigBool("Paymentech.UseMCSecureCode"))