Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

CVV2 Code Not displaying on Order


ApD06

Recommended Posts

Hello all,

 

I just installed contrib. Credit Card with CVV2 Ver. v2.2RC2a

http://addons.oscommerce.com/info/2954

 

Everything seems to be working fine; however I just discovered that the code is not being displayed on the order.

 

Where I should see the code; this is visible: ENTRY_CREDIT_CARD_CVV2

 

Can anyone tell me what file(s) I may need to check/change.

 

Thanks in advance!

 

Best Regards,

Al

Link to comment
Share on other sites

simply re-check the installation.

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Link to comment
Share on other sites

simply re-check the installation.

 

 

Hello Alex,

 

Thanks for the speedy reply!

 

I did a thorough check and everything looks good.

 

The one thing that I did notice is that on step # 8, the string that I need to add (regardless on ver.) uses $HTTP_POST_VARS

 

All of my code is using $GLOBALS

'cc_owner' => (isset($GLOBALS['cc_owner']) ? $GLOBALS['cc_owner'] : ''),

'cc_number' => (isset($GLOBALS['cc_number']) ? $GLOBALS['cc_number'] : ''),

'cc_expires' => (isset($GLOBALS['cc_expires']) ? $GLOBALS['cc_expires'] : ''),

 

I'm in no way a PhP expert; however I'm thinking that this may be creating a conflict.

 

Any assistance would be greatly appreciated.

 

Best Regards,

Al

Link to comment
Share on other sites

I am trying to install contrib. Credit Card with CVV2 Ver. v2.2RC2a

http://addons.oscommerce.com/info/2954

 

In step 8 of the installation instructions it says to locate this code:

If you are using version Milestone 2.2

Find this code (near line 223)

 

'cc_type' => (isset($HTTP_POST_VARS['cc_type']) ? $HTTP_POST_VARS['cc_type'] : ''),

'cc_owner' => (isset($HTTP_POST_VARS['cc_owner']) ? $HTTP_POST_VARS['cc_owner'] : ''),

'cc_number' => (isset($HTTP_POST_VARS['cc_number']) ? $HTTP_POST_VARS['cc_number'] : ''),

'cc_expires' => (isset($HTTP_POST_VARS['cc_expires']) ? $HTTP_POST_VARS['cc_expires'] : ''),

 

 

 

It does not exist in my file. The closest thing I can find is:

 

$this->info = array('order_status' => DEFAULT_ORDERS_STATUS_ID,

'currency' => $currency,

'currency_value' => $currencies->currencies[$currency]['value'],

'payment_method' => $payment,

'cc_type' => (isset($GLOBALS['cc_type']) ? $GLOBALS['cc_type'] : ''),

'cc_owner' => (isset($GLOBALS['cc_owner']) ? $GLOBALS['cc_owner'] : ''),

'cc_number' => (isset($GLOBALS['cc_number']) ? $GLOBALS['cc_number'] : ''),

'cc_expires' => (isset($GLOBALS['cc_expires']) ? $GLOBALS['cc_expires'] : ''),

'shipping_method' => $shipping['title'],

'shipping_cost' => $shipping['cost'],

'subtotal' => 0,

'tax' => 0,

'tax_groups' => array(),

'comments' => (isset($GLOBALS['comments']) ? $GLOBALS['comments'] : ''));

 

Help!?!?!?!

 

I would really like to add this contrib.

Edited by rsh9
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...