have tried so many different things---experimented with all the "godaddy fixes" and whatnot.
At least I get an error message now.
"...unable to contact the Credit Card company for authorization..."
I'm convinced now that it is a problem in the cURL section. Here it is if it helps:
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL,$url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $xml);
curl_setopt ($ch, CURLOPT_SSLCERT, $key);
curl_setopt ($ch, CURLOPT_CAINFO, $key);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, true);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt ($ch, CURLOPT_SSLVERSION, 3);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true); //godaddy
curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); //godaddy
curl_setopt ($ch, CURLOPT_PROXY, "http://64.202.165.130:3128"); //godaddy
open to ideas...
Bookmarks