I get the following error:
Fatal error: Uncaught CurlException: 26: failed creating formpost data thrown in /home/u801961841/public_html/inc/lib/base_facebook.php on line 814
This is the code I used:
if ($result === false) {
$e = new FacebookApiException(array(
'error_code' => curl_errno($ch),
'error' => array(
'message' => curl_error($ch),
'type' => 'CurlException',
),
));
curl_close($ch);
throw $e;
}
curl_close($ch);
return $result;
}
Does anyone know how to solve this problem?
curl_setopt(..., CURLOPT_POSTDATA, $whatever);and the code where$whateveris created. – ThiefMaster♦ Jun 16 '12 at 10:04$result = ...). – ThiefMaster♦ Jun 16 '12 at 10:33