I just got a merchant account and I'm trying to set it up. They don't really offer a lot of detailed info to use with Zen Cart, but I think if I told you the info you could translate it for me.. LOL
I was told to the following:
You select the AIM method then you change the authorize.net DLL file in
the payment module file so that it posts the credit card information to
https://trans.secure-fastcharge.com/.../authorize.cgi
You make this URL change in the actual php file not in the control panel.
Okay, I found the php file:
should it be this?PHP Code:$this->form_action_url = 'https://secure.authorize.net/gateway/transact.dll';
if (AUTHORIZENET_DEVELOPER_MODE == 'on') $this->form_action_url = 'https://test.authorize.net/gateway/transact.dll';
if (AUTHORIZENET_DEVELOPER_MODE == 'echo' || MODULE_PAYMENT_AUTHORIZENET_DEBUGGING == 'echo') $this->form_action_url = 'https://developer.authorize.net/param_dump.asp';
if (AUTHORIZENET_DEVELOPER_MODE == 'certify') $this->form_action_url = 'https://certification.authorize.net/gateway/transact.dll';
PHP Code:$this->form_action_url = 'https://secure.authorize.net/gateway/transact.dll';
if (AUTHORIZENET_DEVELOPER_MODE == 'on') $this->form_action_url = 'https://test.authorize.net/gateway/transact.dll';
if (AUTHORIZENET_DEVELOPER_MODE == 'echo' || MODULE_PAYMENT_AUTHORIZENET_DEBUGGING == 'echo') $this->form_action_url = 'https://developer.authorize.net/param_dump.asp';
if (AUTHORIZENET_DEVELOPER_MODE == 'certify') $this->form_action_url = 'https://trans.secure-fastcharge.com/cgi-bin/authorize.cgi';
On the phone "he" said he just changed all the .dll to read this https://trans.secure-fastcharge.com/.../authorize.cgi
Okay I just ran a test and got a HASH error. I wasn't given a TRANSACTION KEY OR MD5 HASH. So I don't know what to put in those blanks.
As you can see, I'm trying to make the existing module work. NOW, if you can see this will not work, is there a generic payment module out there that I can implement in its place.
Thanks in advance,
Larisa



