forked from science-ation/science-ation
Update on curl.inc.php to fix a reported bug when downloading awards
This commit is contained in:
parent
f1c8b9919f
commit
9730d79ab6
@ -94,7 +94,7 @@
|
|||||||
curl_setopt ($ch, CURLOPT_POST, 1); /// tell it to make a POST, not a GET
|
curl_setopt ($ch, CURLOPT_POST, 1); /// tell it to make a POST, not a GET
|
||||||
curl_setopt ($ch, CURLOPT_POSTFIELDS, "$var=".urlencode($str)); /// put the query string here starting with "?"
|
curl_setopt ($ch, CURLOPT_POSTFIELDS, "$var=".urlencode($str)); /// put the query string here starting with "?"
|
||||||
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); /// This allows the output to be set into a variable $datastream
|
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); /// This allows the output to be set into a variable $datastream
|
||||||
curl_setopt ($ch, CURLOPT_POSTFIELDSIZE, 0);
|
// curl_setopt ($ch, CURLOPT_POSTFIELDSIZE, 0);
|
||||||
curl_setopt ($ch, CURLOPT_TIMEOUT, 360);
|
curl_setopt ($ch, CURLOPT_TIMEOUT, 360);
|
||||||
curl_setopt ($ch, CURLOPT_SSLVERSION, 3);
|
curl_setopt ($ch, CURLOPT_SSLVERSION, 3);
|
||||||
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false);
|
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false);
|
||||||
|
Loading…
Reference in New Issue
Block a user