Curl_close() is called before any curl errors can be output.
Posted: Thu Sep 10, 2009 9:09 am
In pp_direct.php about line 153, curl_close is called.
Around line 155, $response is checked and any errors cannot be output because the curl resource has been closed already. I moved the curl_close call down below the response check and was then able to see the curl errors.
Around line 155, $response is checked and any errors cannot be output because the curl resource has been closed already. I moved the curl_close call down below the response check and was then able to see the curl errors.