I started getting these recently.
I saw the problems with the cert.pem in '15, and I've updated it. no luck.
This was working code, so it looks like it's a cert problem, but I have to solution. Any ideas? thanks,
AuthorizeNetARB_Response Object
(
[xml] =>
[response] =>
)
11-13-2018 05:44 PM
// Create the subscription.
$request = new AuthorizeNetARB;
$response = $request->createSubscription($subscription);
$subscription_id = $response->getSubscriptionId();
$out = array(
'message' => "done",
'subscriptionid' => $subscription_id,
'messagecode'=>$response->getMessageCode(),
'messagetext'=>$response->getMessageText(),
'refid'=>$response->getRefId(),
'resultcode'=>$response->getResultCode()
);
11-14-2018 08:23 AM
any updates?
01-23-2019 01:16 PM