The CIM API is timing out for us. Is anyone else having this issue or is it just us?
@lethjakman: For nginx, I believe you change /etc/nginx/sites-available/default instead:
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
06-03-2014 03:57 PM
We are going to make a change tonight to which ciphers are currently in place, as we believe this will help resolve the issue for those who haven't seen improvement by upgrading OpenSSL or by forcing SSL v3. The list of ciphers I gave earlier should remain in effect.
06-03-2014 03:59 PM
What time and timezone will those changes take place, will you post back here when updated, or tweet the update?
06-03-2014 04:04 PM
We're going to start the change at around 10 PM Pacific time. We have a four-hour release window for this, so you should be able to test the changes at 2 AM Pacific time.
06-03-2014 04:22 PM
This did the trick. Great solution bbot, saved me many hours.
----
curl_setopt($curl_request, CURLOPT_SSLVERSION, 3);
To line 93 of AuthorizeNetRequest.php in the PHP API fixed the problem. Thank you for your help.
06-04-2014 04:14 AM - edited 06-04-2014 04:15 AM
Hello,
I am facing the similar problem since yesterday Morning EST , we are using sample PHP ARB script it was working fine on our website but all of sudden .
The problem is not implementation of code , the same sample code is uploaded on another server
https://vivaelectroniccigarette.com/arb/your_store/process_sale.php it works fine and return with the response but as I mentioned in the email
on client server https://criticalmobilization.com/arb-word/your_store/process_sale.php its not doing the same , though before it was working fine yesterday.
when we execute the page it come with blank response.
AuthorizeNetARB_Response Object ( [xml] => [response] => ) Array ( [0] => )
Please help.
06-04-2014 05:27 AM
Hi ,
we are using ARB sample test script on server and it was working fine for us also till yesterday, but all of sudden it started sending blank response. have you find any soulution? please help
06-04-2014 05:32 AM
Hey for me also it worked :smileyhappy: it had just frustated since yesterday.
06-04-2014 05:44 AM
What changes were made last night? I am still not able to connect. I'm trying now with
ALL:!ADH:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
06-04-2014 06:23 AM
For those using fsocketopen, use "sslv3://" as protocol. For example:
$url = "sslv3://apitest.authorize.net";
$port = "443";
$fp = fsockopen($url, $port, $errno, $errstr, 30);
It worked for me.
06-04-2014 07:26 AM