Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am not able access facebook api with php it throws error when I use require src/facbook.php
or include src/facecbook.php:

facebook needs curl extension for php

I added php_curl file and make entry in php.ini. But no use. Can any one help to resolve the issue. Please give detailed explanation.

share|improve this question
Show us some code..how should we help you with that information you gave us? – Chris Sep 9 '12 at 14:46
My question is quite obvious, but have you tested cURL installation? Does it work? – Mathieu Imbert Sep 9 '12 at 14:59
yes , I enable the cURL.But it isn't help me. – Suresh Kumar Medasani Sep 9 '12 at 16:05
"Fatal error: Uncaught exception 'Exception' with message 'Facebook needs the CURL PHP extension." The code is require '../src/facebook.php'; // Create our Application instance (replace this with your appId and secret). $facebook = new Facebook(array( 'appId' => '344617158898614', 'secret' => '6dc8ac871858b34798bc2488200e503d', )); – Suresh Kumar Medasani Sep 9 '12 at 16:06
As shown above I am not able to connect to facebook php sdk. Can any body have solution to this error. – Suresh Kumar Medasani Sep 9 '12 at 16:09
show 1 more comment

1 Answer

It doesn't sound like cURL is installed on your server. Create a php file with just this and run it:

<?php
echo 'cURL is '.(function_exists('curl_init') ?: ' not').' enabled';

If it says "cURL is not enabled", then you need to install it. Contact your hosting provider, or if you're rolling your own server read this.

If you're using a free host, most of these disable cURL and all of the file functions in php for security.

share|improve this answer
Thanks Cpilko for your reply. I got the message "cURL is not enabled" while using your echo statement.Even though I enabled it on php.ini file using "extension=php_curl.dll" . Can you help how to do funcion_exist(curl_init) is enabled in above echo statement. Please guide me to enabled cURL on the server[apche]. – Suresh Kumar Medasani Sep 9 '12 at 18:50
You need to install cURL through your PHP install. See the link in my original reply for directions about how to install this in your PHP installation. – cpilko Sep 9 '12 at 20:27
I installed the php_curl and included the extension in php.ini file. Currently I am using winamp PHP 5.3.13 and I checked with 5.2.17 php version. I enable the curl file. But not workinng the "echo 'cURL is '.(function_exists('curl_init') ?: ' not').' enabled';" showing message curl not anabled. Can any one help in detail manner as I am facing this issue "Facebook needs CURL PHP extension" from past one month. – Suresh Kumar Medasani Sep 10 '12 at 5:59
Can any body help on this I am facing this issue " facebook needs curl PHP extension " while tring to connect to facebook php sdk. – Suresh Kumar Medasani Sep 10 '12 at 18:27
1., make sure you edited the right php.ini. 2., use phpinfo() to check (after server restart), that cURL is enabled. (There should be a whole section headlined curl in the phpinfo output. And you can also see the path to the actually used php.ini file at the very top.) – CBroe Sep 26 '12 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.