This is my code:
class facebookConnection {
private $_mch = NULL;
private $_properties = array();
function __construct()
{
$this->_mch = curl_multi_init();
$this->_properties = array(
'code' => CURLINFO_HTTP_CODE,
'time' => CURLINFO_TOTAL_TIME,
'length' => CURLINFO_CONTENT_LENGTH_DOWNLOAD,
'type' => CURLINFO_CONTENT_TYPE
);
}
I get Fatal error: Call to undefined function curl_multi_init() in /var/www/application/libraries/facebook.php on line 123
This works on my local machine ... maybe this is a problem? I do not understand.
source
share