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'm working to implement a Facebook login for my website. I have limited knowledge of php debugging so I'm more or less looking for a good approach to debug this.

As soon as I include (or require) the facebook.php file, with no other SDK interaction, Apache will 500 my PHP script.

include('fb-php-sdk/src/facebook.php');

fb-php-sdk is a directory within the directory that contains our PHP script (also the document root)


Server log:

[Tue Nov 15 23:18:16 2011] [error] [client 192.168.1.110] PHP Fatal error: Uncaught exception 'Exception' with message 'Facebook needs the CURL PHP extension.'

in /var/www/fb-php-sdk/src/base_facebook.php:19\nStack trace:

#0 /var/www/fb-php-sdk/src/facebook.php(18): require_once()
#1 /var/www/index.php(13): include('/var/www/fb-php...')
#2 {main} thrown in /var/www/fb-php-sdk/src/base_facebook.php on line 19 

From /var/log/apache2/error.log 
share|improve this question
can you paste your php_error_log? – LisztLi Nov 16 '11 at 6:33
[Tue Nov 15 23:18:16 2011] [error] [client 192.168.1.110] PHP Fatal error: Uncaught exception 'Exception' with message 'Facebook needs the CURL PHP extension.' in /var/www/fb-php-sdk/src/base_facebook.php:19\nStack trace:\n#0 /var/www/fb-php-sdk/src/facebook.php(18): require_once()\n#1 /var/www/index.php(13): include('/var/www/fb-php...')\n#2 {main}\n thrown in /var/www/fb-php-sdk/src/base_facebook.php on line 19 Install CURL =) From /var/log/apache2/error.log – Matt Malesky Nov 16 '11 at 6:59
the package name to be installed is php5-curl for anybody else with this issue. won't let me close my own problem until 8 hours have passed. – Matt Malesky Nov 16 '11 at 7:01
1  
I suggsest you turn on your error reporting (while developing), you'll save yourself a lot of hassle :) – Jan Hančič Nov 16 '11 at 7:35

1 Answer

Install CURL =)

Command:

sudo apt-get install php5-curl
share|improve this answer

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.