paulab Posted January 4, 2009 Share Posted January 4, 2009 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. Quote Link to comment Share on other sites More sharing options...
dasanti Posted May 12, 2010 Share Posted May 12, 2010 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. Quote Link to comment Share on other sites More sharing options...
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.