Hey guys, quick question..
I also had the error message pop up with no reason. Doing some debugging, the "curl_exec"kept coming back with 'false' - meaning it wasn't creating a connection properly. On my system, I had to add the command:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
for it to work. I even created a new 'ca-something' file for my system, and specified it using the 'CURLOPT_CAINFO' option, but it had no effect. As far as I can tell, the 'VERIFYPEER' option just makes sure that the other site's SSL certificate is genuine?
My question is this: Anyone know of another way to get the 'CAINFO' option to work, and if not, if there that big of a risk turning the VERIFYPEER off?
Also, I get the:
(TESTMODE) The merchant login ID or password is invalid or the account is inactive.
Am I correct in thinking that this will always appear as long as I'm in test mode?
Thanks!
Mike.