Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Has anyone got the authorize.net module.....


Tuan Le

Recommended Posts

Has anyone got the authorize.net module to work on a Windows 2003 platformed? I went through 30 different authorize.net threads but haven't seen any fixes. :( I am willing to pay to get some one to help me out on this. Let me know.

 

Thanks

-Tuan

Link to comment
Share on other sites

did you setup a new transaction key?

Yes, I have. I even tried different authorize.net modules out there where it uses password instead of transaction key but that didn't work either. Additionally, I also tried using my production account (which is working fine with another store of mine, running on Linux platform and OSC 2.2 MS1) versus the test account I got from authorize.net

 

I have curl and openssl installed on my Windows 2003 server. When I checked the php.info on my server, it is show is that curl is installed and enabled. For the command line in authorizenet_direct.php file, am using the command below to post to the gateway.

 

exec("c:/curl/curl.exe -d \"$data\" https://secure.authorize.net/gateway/transact.dll", $response);

 

I even tried replacing the line above with the codes below, but that didn't help either.

 

$url = "https://secure.authorize.net/gateway/transact.dll";

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,$url);

curl_setopt($ch, CURLOPT_VERBOSE, 0);

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

$authorize = curl_exec($ch);

curl_close ($ch);

$response = split(",", $authorize);

 

I am getting the infamous error, "There has been an error process you card......" :( Do you happen to know what I need to add in order to get the true error from authorize.net instead of this generic message?

 

Any help you can give me would be greatly appreciated.

 

Thanks

-Tuan

Link to comment
Share on other sites

  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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