http://addons.oscommerce.com/info/4091
I don't know a thing about Ponce's version, but this one works now.
For those who already installed this, the fix is extremely simple:
in includes/modules/payment/authorizenet_aim.php around line 301 change this:
if (MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') {
$url = 'https://secure.authorize.net/gateway/transact.dll'; // If this does not work then change 'secure' to 'certification' on this line
} else {
//$url = 'https://secure.authorize.net/gateway/transact.dll';
$url = 'https://test.authorize.net/gateway/transact.dll';
}
to this:
if (MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') {
$url = 'https://secure.authorize.net/gateway/transact.dll'; // If this does not work then change 'secure' to 'certification' on this line
} else {
$url = 'https://secure.authorize.net/gateway/transact.dll';
//$url = 'https://test.authorize.net/gateway/transact.dll';
}
Enjoy.














