emagination Posted July 7, 2005 Posted July 7, 2005 I have just added the following CVV Contribution: http://www.oscommerce.com/community/contributions,3113 Seems to work fine, displays CVV in the checkout process confirm page, but does not seem to record it in the database. When you go to admin area or check database manually, its shows blank! Anybody got any suggestions or solutions? Thanks....
Guest Posted July 8, 2005 Posted July 8, 2005 It sounds like you have missed adding a bit in checkout_process.php where it should be inserted into the database. Matti
emagination Posted July 11, 2005 Author Posted July 11, 2005 I have added the following line to checkout_process.php as per contribution instructions, but still no solution. CVV number is still not being added to database table. 'cc_cvv2' => $order->info['cc_cvv2'] Any more suggestions please?
Coopz Posted July 17, 2005 Posted July 17, 2005 I have added the following line to checkout_process.php as per contribution instructions, but still no solution. CVV number is still not being added to database table. 'cc_cvv2' => $order->info['cc_cvv2'] Any more suggestions please? <{POST_SNAPBACK}> If you want a quick fix try changing this: 'cc_cvv2' => $order->info['cc_cvv2'] to: 'cc_cvv2' => $_POST['cc_cvv2'] To actually fix this problem the orders.php in classes must be updated with the 'cc_cvv2'.
Coopz Posted July 17, 2005 Posted July 17, 2005 Just an addition I have had a look at it have you modified: admin/includes/classes/order.php and includes/classes/order.php as per the documentation? This should fix the problem.
helix Posted June 23, 2006 Posted June 23, 2006 Just an addition I have had a look at it have you modified:admin/includes/classes/order.php and includes/classes/order.php as per the documentation? This should fix the problem. I've used the same contribution, and I've double checked all the files I needed to change. Still not working. If anyone could help, it would be appreciated.
helix Posted June 27, 2006 Posted June 27, 2006 I've used the same contribution, and I've double checked all the files I needed to change. Still not working. If anyone could help, it would be appreciated. I think I've managed to fix it. In catalog/includes/classes/order.php around Line 26 where you see // >>> BEGIN REGISTER_GLOBALS I added: link_post_variable('cc_cvv2'); and my database started properly showing the cvv. I believe it is an issue with the register_globals.
lyndat Posted May 16, 2007 Posted May 16, 2007 I have been working on getting the CVV code to work on a customers oscommerce site for over a month, have updated a bunch of files, followed the 12 steps posted by Benan Tumkaya, updated the phymyadmin, still the CVV won't populate the database. What am I missing? these files have all been updated catalog/includes/modules/payment/cc.php catalog/includes/classes/cc_validation.php admin/orders.php admin/includes/languages/english/modules/payment.php catalog/includes/classes/order.php catalog/admin/includes/classes/order.php catalog/checkout_process.php several of these files have had a couple changes to add the cvv after the cc_number ??? HELP - thanks
Sumu1 Posted July 28, 2007 Posted July 28, 2007 Be happy that it does not work. It is highly forbidden by VISA and the others to store the cvv code in any database. Every merchant has to sign this in an agreement when wanting to process CCs. The fee you will pay is $50.000 plus. Better find another way... Good Luck Su I have been working on getting the CVV code to work on a customers oscommerce site for over a month, have updated a bunch of files, followed the 12 steps posted by Benan Tumkaya, updated the phymyadmin, still the CVV won't populate the database. What am I missing?these files have all been updated catalog/includes/modules/payment/cc.php catalog/includes/classes/cc_validation.php admin/orders.php admin/includes/languages/english/modules/payment.php catalog/includes/classes/order.php catalog/admin/includes/classes/order.php catalog/checkout_process.php several of these files have had a couple changes to add the cvv after the cc_number ??? HELP - thanks
Recommended Posts
Archived
This topic is now archived and is closed to further replies.