Contributions

Payment Modules (Category Index)
Search: 

Authorizenet ADC Direct Connection

Hi all,

I used to have ADC Relay Response Method as the payment module, but this built-in module of OsCommerce doesn't work in Netscape6.1 and older Netscape versions and some of AOL browsers due to the error "Invalid Referer". I have rewrote authorizenet module to utilize the ADC Direct Connection method, and my customers can place order from any browser. I have been using Authorizenet ADC Direct Connection more than a month, and my customers did not complaint since I used it. It has been running great.

Regards,
Bn

Expand All / Collapse All

"There has been an error processing your credit card." Error Fix 19 Mar 2010

Some times the payment fails in the last step and I'm redirected to the Payment Information page again with no signs of any erros"There has been an error processing your credit card."

The error was happened due to misplacement of tep_session_register('cc_array');


Find the following code : (Near line 251)


tep_session_register('cc_array');

$cc_array = array('card_type' => $this->cc_card_type,

'card_number' => $this->cc_card_number,

'card_code' => $this->cc_cvv,

'expiration' => $this->cc_expiry_month . substr($this->cc_expiry_year, -2));


Replace with :


$cc_array = array('card_type' => $this->cc_card_type,

'card_number' => $this->cc_card_number,

'card_code' => $this->cc_cvv,

'expiration' => $this->cc_expiry_month . substr($this->cc_expiry_year, -2));

tep_session_register('cc_array');


Note: This is not a Full Package. Error Fix only

Invoice # Fix 15 Sep 2006
Minor fix 28 Mar 2006
Fixes last fix; Rollup 17 Mar 2006
Set Order Status Fix 27 Jan 2006
Authorize.Net AIM Matt Fletcher 26 Jun 2004
ADC Foolproof Oscommerce 2.2MS2 Kevin Chen 12 Dec 2003
For php_curl.dll usage - working Peter Drake 29 Apr 2003
For php_curl.dll usage Peter Drake 29 Apr 2003
Authorizenet ADC Direct Connection Update Matthew Knight 23 Feb 2003
Authorizenet ADC Direct Connection / AIM Method Bao Nguyen 11 Nov 2002
Authorizenet ADC Direct Connection Bao Quoc Nguyen 28 Aug 2002

Note: Contributions are used at own risk.