I want to open the login page of a site that has almost all been ready for me, but this error happens:
Facebook needs the CURL PHP extension. Line 19: \ Program Files \ x86 \ EasyPHP-Devserver-16.1 \ eds-www \ core \ api_classes \ facebook \ src \ base_facebook.php
Line 19
if (!function_exists('curl_init')) {
throw new Exception('Facebook needs the CURL PHP extension.');
I went after knowing more about this cURL
, and the resolution seemed to be too easy to be true. I would just need to go to the file php.ini
and take the ;
from the front of the call: extension=php_curl.dll
and this did not work.
When you open the file info.php
in the browser and search on cURL
, the only information that appears is the author's name.
What would it take to make it really work?