Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

CVV Contribution - Number Shows Blank


emagination

Recommended Posts

Posted

It sounds like you have missed adding a bit in checkout_process.php where it should be inserted into the database.

 

Matti

Posted

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?

Posted
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?

 

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'.

Posted

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.

  • 11 months later...
Posted
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.

Posted
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.

  • 10 months later...
Posted

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

  • 2 months later...
Posted

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...