Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Locked

Views: 23,830

Results 61 to 72 of 72
This thread is locked. New replies are disabled.
1 Jul 2010, 12:43 AM
#61
mm8303 avatar

mm8303

New Zenner

Join Date:
Mar 2009
Posts:
24
Plugin Contributions:
0

Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Using SIM worked. Thanks mcarbone! :hug:

1 Jul 2010, 12:44 AM
#62
mcarbone avatar

mcarbone

Zen Follower

Join Date:
Feb 2009
Location:
Simi Valley, CA
Posts:
99
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Awesome I think you mean AIM..but I know what you meant! Glad to hear it!:smile:

MC

1 Jul 2010, 12:45 AM
#63
mcarbone avatar

mcarbone

Zen Follower

Join Date:
Feb 2009
Location:
Simi Valley, CA
Posts:
99
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Just call us twinkle fingers huh?

1 Jul 2010, 4:08 AM
#64
wiccanwitch420 avatar

wiccanwitch420

Zen Follower

Join Date:
Nov 2008
Posts:
196
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

I cannot use AIM,

Here are the differences
SIM doesn't collect credit cards on your own site. It sends the customer to authorize.net's website to checkout on their secure page.

AIM collects credit card info on your own site and processes the cards in real time while the customer waits and never leaves your payment process. A ssl certificate is required and Curl+SSL is required to be compiled into php for AIM to work.


I have an SSL certificate but I process from authorize.net because I do not want to be liable for anything.

So that is not an option for me.

ANyone know coding can fix the SIM>>>???:blink:

1 Jul 2010, 5:01 AM
#65
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

Based only on the vague information describing the problem, the following might provide temporary relief:

Edit /includes/modules/payment/authorizenet.php around line 430, adding the new lines as shown:```
function before_process() {
global $messageStack;
$this->authorize = $_POST;
[B] // temporary workaround for Authorize.net system bug
$fixAuthnetSystemErrorVal = $this->authorize['x_amount'];
if (substr($fixAuthnetSystemErrorVal, -2) == '00' && substr($fixAuthnetSystemErrorVal, -5, 1) == '.') $this->authorize['x_amount'] = substr($this->authorize['x_amount'], 0, -2);
// end workaround [/B]

unset($this->authorize['btn_submit_x'], $this->authorize['btn_submit_y']);

1 Jul 2010, 7:44 AM
#66
mm8303 avatar

mm8303

New Zenner

Join Date:
Mar 2009
Posts:
24
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

WiccanWitch420:

I cannot use AIM,

Here are the differences
SIM doesn't collect credit cards on your own site. It sends the customer to authorize.net's website to checkout on their secure page.

AIM collects credit card info on your own site and processes the cards in real time while the customer waits and never leaves your payment process. A ssl certificate is required and Curl+SSL is required to be compiled into php for AIM to work.


I have an SSL certificate but I process from authorize.net because I do not want to be liable for anything.

So that is not an option for me.

ANyone know coding can fix the SIM>>>???:blink:

I was using SIM before and customers were putting their credit card info in on my site... I've always had the page on SSL though.

When you use SIM the customer was sent to a page on AuthorizeNet? How come when I was using SIM that didn't happen?

I'm using AIM now and the problem is fixed.

1 Jul 2010, 12:43 PM
#67
wiccanwitch420 avatar

wiccanwitch420

Zen Follower

Join Date:
Nov 2008
Posts:
196
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

I process ofline as an option.

1 Jul 2010, 12:51 PM
#68
sharni avatar

sharni

New Zenner

Join Date:
Aug 2008
Posts:
38
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

DrByte:

Based only on the vague information describing the problem, the following might provide temporary relief:

Edit /includes/modules/payment/authorizenet.php around line 430, adding the new lines as shown:[code] function before_process() {If this works as expected, it should be reasonably safe to leave even after Authorize.net fixes their system bug.

I LOVE YOU DrByte!!!!

This worked! I can now receive CC payments again!!!!

Yesterday was such a quiet day for me. About half my normal orders that were processed through PayPal. It was weird getting my settlement report with all zeros.

Thank you so much!

Sharni

1 Jul 2010, 1:00 PM
#69
wiccanwitch420 avatar

wiccanwitch420

Zen Follower

Join Date:
Nov 2008
Posts:
196
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

I am pleased to announce that the SIM issue has been fixed. I have done 3 test purchases just to make sure and they all went through smooth.

! Finally!:clap:

1 Jul 2010, 1:12 PM
#70
anita avatar

anita

Zen Follower

Join Date:
Feb 2006
Posts:
124
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

I just got a test order and credit card payment to go through correctly also.(without the code changes Dr Byte suggested).

Thank you Dr. Byte for taking the time to find that work around! I'm going to keep it just in case something like this were to happen again.

1 Jul 2010, 4:58 PM
#71
template_cascade avatar

template_cascade

New Zenner

Join Date:
Jan 2009
Posts:
40
Plugin Contributions:
0

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

I'm using Authorize dot Net's SIM api to process CCs. I'm also using ZC 1.3.8a (I know I know). The problem is that in the last 3 days we suddenly started getting multiple charges for the same order. Sometimes they're separated by up to 8 hrs. One of the orders that this happened too (chartge 6 times in this case!) Is missing from Zen-cart all together. :unsure:

Any ideas on this?

1 Jul 2010, 5:41 PM
#72
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Authorize.net SIM Module - There has been an error processing your credit card. Pleas

see above