Debug credit card errors in Spree

Looking at the magazine, I get the following:

Processing CheckoutsController#update (for 69.230.191.209 at 2011-04-26 15:08:53) [PUT]
  Parameters: {"step"=>"payment", "order_id"=>"R107122666", "action"=>"update", "_method"=>"put", "authenticity_token"=>"ovZo+SsiHiGsmgtwkdzr0tRtfylQwGOUCeV9zEJU=", "controller"=>"checkouts", "checkout"=>{"creditcard_attributes"=>{"number"=>"[FILTERED]", "month"=>"8", "id"=>"63", "year"=>"2013", "last_name"=>"", "verification_value"=>"[FILTERED]", "first_name"=>""}}}
Gateway Error ... An error occurred during processing.  Please try again.
Rendering template within layouts/spree_application
Rendering checkouts/edit
Completed in 4804ms (View: 76, DB: 38) | 200 OK [https://truejey.com/orders/R10712666/checkout]

Good .. a very common mistake. But his way out of Authorize.net, which tells me, can be any of them:

The system-generated void for the original timed-out transaction failed. (The original transaction timed out while waiting for a response from the authorizer.)

The system-generated void for the original errored transaction failed. (The original transaction experienced a database error.)

The system-generated void for the original errored transaction failed. (The original transaction experienced a processing error.)

The difference is whether response_codeI returned it 120, 121or 122.

My question is, how can I find out what response_code is for this transaction?

Or better yet, does anyone have another way to debug such issues?

+3
source share

All Articles