Our site runs WooCommerce with an AIM plugin, our error log shows "The
SSL certificate for the host could not be verified." The SSL certificate
on our server is setup correctly. We are using SHA-1 2048 bit. Any
suggestions on what to check?
I'm curious if authorize.net is affected by the new POODLE exploit in
SSLv3 I'm replying here since there were changes in ciphers and a
suggested work around for some was to force SSLv3.
I had to dive in to WordPress core and change $connect_host =
$secure_transport ? 'ssl://' . $connect_host : 'tcp://' . $connect_host;
to sslv3 This modifies core code, i'll have to find a work around but
forcing sslv3 in class-http.php worked. I was...