cancel
Showing results for 
Search instead for 
Did you mean: 

sandbox CIM seems to be down?

All my call using CIM seems to return   

{"status":"-1","Response":false}

 

For 2 days now. Please advice

samimis
Member
5 REPLIES 5

Hello @samimis 

 

We recently made some infrastructure upgrades.  Please review the blog post below to determine if this will help with your situation.

 

http://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Authorize-Net-Begins-In...

 

Richard

RichardH
Administrator Administrator
Administrator

 

 

I have disabled the cert check in 

abstract class AuthorizeNetRequest
{

protected $_api_login;
protected $_transaction_key;
protected $_post_string;
public $VERIFY_PEER = true; // Set to false if getting connection errors.
// public $VERIFY_PEER = false; // Set to false if getting connection errors.

 

and still the same issue.

 

Do I need to download a new pem file? if so, from where? 

 

 

samimis
Member

I have downloaded a .pem file from:

 

https://raw.githubusercontent.com/AuthorizeNet/sdk-php/master/lib/ssl/cert.pem

 

But I have the same issue.

Some one from Authorize.net please advice  We are stuck here....   Downloading the new pem  works with live link but not with sandbox.  What's wrong.

 

 

For time being... we had to disable $VERIFY_PEER  and it seems to have worked for us . Now we are getting info back from sandbox

 

 

abstract class AuthorizeNetRequest
{

protected $_api_login;
protected $_transaction_key;
protected $_post_string;
// public $VERIFY_PEER = true; // Set to false if getting connection errors.
public $VERIFY_PEER = false; // Set to false if getting connection errors.