CubeCart Bot Posted February 5, 2018 Posted February 5, 2018 Name: Credit Card Capture Price: Free Category: Payment Gateways Homepage: https://www.cubecart.com/extensions/payment-gateways/credit-card-capture Quote
citabriabob Posted February 5, 2018 Posted February 5, 2018 Testing new store; 1) c.c. number is not verified 2) no field for security code Sorry, did not read the documentation correctly; verification and security code are now enabled. However, card number is not accepted if dashes are included between number blocks, i.e., 5111-2222-3333-4444 Quote
Al Brookbanks Posted February 6, 2018 Posted February 6, 2018 This extension could probably do with some updates. I'd recommend turning off card validation. As no payment card processor actually performs real time validation it's fairly crude. Quote
havenswift-hosting Posted February 6, 2018 Posted February 6, 2018 There are so many people using this extension without understanding the PCI requirements for doing so - see https://www.pcicomplianceguide.org/faq/#5. Of course, a huge number of people still dont bother with PCI at all ! Quote
Al Brookbanks Posted February 6, 2018 Posted February 6, 2018 Just now, havenswift-hosting said: There are so many people using this extension without understanding the PCI requirements for doing so - see https://www.pcicomplianceguide.org/faq/#5. Of course, a huge number of people still dont bother with PCI at all ! I wouldn't use this extension personally. It only exists due to demand but please be very weary of the potential consequences. Quote
teamkenb Posted April 11, 2018 Posted April 11, 2018 Is there any way to automatically generate an email that the transaction was declined after I change the order status to "Declined"? Just like the Order Confirmation, Order Complete etc. Quote
bsmither Posted April 11, 2018 Posted April 11, 2018 There is a way to do this - it will require a bit of preparatory work (creating the email template). This task is very likely outside the scope of this extension. Quote
robertbell Posted July 4, 2018 Posted July 4, 2018 As long as the extension remains in the marketplace, it would be nice to keep it reasonably current. A start would be replacing mcrypt. Quote
Al Brookbanks Posted July 4, 2018 Posted July 4, 2018 3 hours ago, robertbell said: As long as the extension remains in the marketplace, it would be nice to keep it reasonably current. A start would be replacing mcrypt. Yes. Needs doing. Also the SagePay extension needs openssl instead of mcrypt. Quote
Al Brookbanks Posted July 5, 2018 Posted July 5, 2018 Just now, robertbell said: Put your daughter right on it . Too busy crapping her pants I'm afraid. Quote
PietnLindy Posted November 7, 2018 Posted November 7, 2018 (edited) Hi, Is it possible to change the wording on checkout from "Card_Capture" to simply "Credit Card" as "Card_Capture" is very off putting to customers and they seem to NOT select it due to the word Capture LOL I am using version 6.2.2 of Cubecart and the latest version of Credit Card Capture Many thanks in advance for all your help. Edited November 7, 2018 by PietnLindy Quote
bsmither Posted November 7, 2018 Posted November 7, 2018 Please try to add the phrase you are wanting to show in the Description field of the Card Capture admin settings screen. Quote
PietnLindy Posted November 7, 2018 Posted November 7, 2018 (edited) 3 hours ago, bsmither said: Please try to add the phrase you are wanting to show in the Description field of the Card Capture admin settings screen. Hi, I thank you very much. I missed this simple thing. Edited November 7, 2018 by PietnLindy Wrong reply Quote
citabriabob Posted March 22, 2019 Posted March 22, 2019 Must have missed something, but Capture errors hang instead of displaying something: on advice on this Forum, I did make a small chage: $error = false; // if (extension_loaded('mcrypt') && function_exists('mcrypt_module_open')) { // RS MOD if (extension_loaded('mcrypt') && function_exists('mcrypt_module_open') || extension_loaded('openssl')) { $this->_encryption = Encryption::getInstance(); $this->_encryption->setup(false, $order_summary['cart_order_id']); $record['offline_capture'] = $this->_encryption->encrypt(serialize($cardData)); $GLOBALS['db']->update('CubeCart_order_summary', $record, array('customer_id' => $order_summary['customer_id'], 'cart_order_id' => $order_summary['cart_order_id'])); if($this->_module['go_processing']) { $order->orderStatus(Order::ORDER_PROCESS, $this->_basket['cart_order_id']); } } else { // $error = 'Card Capture Error: mcrypt library missing from server required to encrypt credit card data.'; // RS MOD $error = 'Card Capture Error: Mcrypt or OpenSSL required to encrypt credit card data is not available.'; trigger_error($error); } Quote
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.