I'm debugging a Client's site, which mysteriously as stopped working
this afternoon. I get this response when submitting an order at /shop/
checkout/credit/confirm/:
"Could not talk to Authorize.net gateway"
I think I've figured out where this message gets generated:
authorizenet.processor
----------------------------------
...
def send_post(self, data, testing=False):
"""Execute the post to Authorize Net.
Params:
- data: dictionary as returned by get_standard_charge_data
- testing: if true, then don't record the payment
Returns:
- ProcessorResult
"""
self.log.info("About to send a request to authorize.net: %
(connection)s\n%(logPostString)s", data)
conn = urllib2.Request(url=data['connection'],
data=data['postString'])
try:
f = urllib2.urlopen(conn)
all_results = f.read()
self.log_extra('Authorize response: %s', all_results)
except urllib2.URLError, ue:
self.log.error("error opening %s\n%s", data['connection'],
ue)
return ProcessorResult(self.key, False, _('Could not talk
to Authorize.net gateway'))
...
Anyone have any idea what's going on? Looks like the site isn't able
to establish a connection for some reason, and I'm not getting any
response code from the gateway.
TIA
--
You received this message because you are subscribed to the Google Groups
"Satchmo users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/satchmo-users?hl=en.