Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Paymentech problem


paulab

Recommended Posts

Hi All-

 

I have installed this add-on successfully http://www.oscommerce.com/community/contributions,5472

 

the transactions do go through the only problem is that it only passes the credit card information to paymentech(cc number, cc expiration date and the amount to be charged), it is not passing an order id, the address information, the CVV number or event the customer's name so there is no way for me to track who placed the order on the virtual terminal for Paymentech.

 

Does any one know how to fix the problem? I am not great with PHP and cant figure this out.

 

thanks for any help I can get.

Link to comment
Share on other sites

  • 1 year later...

Hi All-

 

I have installed this add-on successfully http://www.oscommerce.com/community/contributions,5472

 

the transactions do go through the only problem is that it only passes the credit card information to paymentech(cc number, cc expiration date and the amount to be charged), it is not passing an order id, the address information, the CVV number or event the customer's name so there is no way for me to track who placed the order on the virtual terminal for Paymentech.

 

Does any one know how to fix the problem? I am not great with PHP and cant figure this out.

 

thanks for any help I can get.

 

 

This may be basic to PHP gurus but I had this problem as well and found out that if the ZIP Code doesn't post to the Paymentech Virtual Terminal there is no AVSzip verification attempt - and without that attempt your transactions will not qualify for best interchange rates.

 

So... to fix this I made some changes to the paymentech.php file in the section titled: // Create a new MiniXMLDoc object

Basically you add $_POST to the sections that you want to pass on to your Virtual Terminal.

 

So you would change this: $AVSzip->text(strip_specialchars($my_postcode)); // $my_postcode

To this: $AVSzip->text($_POST[my_postcode]); // $my_postcode

 

...and, as I said you could add $_POST to any items in this section that you want to have show in your paymentech virtual terminal.

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