I am trying to run the facebook app on website. I downloaded the facebook.php and base_facebook.php placed them under the src folder.
Then created an index.php and copied the example codes and changed the require 'src/facebook.php'; and also replaced the app id and secret key with the sample ones.
Then when I load the page I get an internal server error 500. I went into my server's log files and received this error:
2011-09-27 11:21:45 W3SVC32713 GET /facebook/
state=25afc19ae02d59b971ff90c436aeb2fd&code=AQDpf8QQhcU8umV4t8jETV5tohyIGK-N604IFv_5mxXwJq_0C4afW9LbJnggcllvpnAzP_7KFma0KZn2NyORnrMIWrsiPQMnSFFwf6nawhxIWHslAcj7_H2ILLFmQiaqyPi6Xi0t66UxnivMlaY9kBLSEY5GaJOHRcPOUf-y3zAS9BxLY50n-KfBcas2Nk4_5Pc
80 - 180.219.2.204 HTTP/1.1
Mozilla/5.0+(Windows+NT+6.1;+WOW64;+rv:6.0.2)+Gecko/20100101+Firefox/6.0.2
_utma=82747279.1058029030.1307955185.1315076439.1315976538.14;+_utmz=82747279.1315976538.14.11.utmcsr=google|utmccn=(organic)|utmcmd=organic;+wp-settings-1=m8%3Do%26m7%3Do%26m9%3Do%26m4%3Do%26m6%3Do%26m5%3Do%26editor%3Dhtml%26m1%3Do%26m10%3Do%26m11%3Do%26m2%3Do%26imgsize%3Dmedium%26m12%3Do;+wp-settings-time-1=1314542898;+PHPSESSID=bdfa9f3a4b62cf6a39fdde9e949d5722
http://www.domain(changed).com/facebook/ www.domain(changed).com 500 0 0 1380 1061 1770
(I replaced my domain with domain(changed) for security purposes)
I tried to decode the coding and found that error was within: $user = $facebook->getUser();
I went into the base_facebook and var_dump($this) in the getUser function and showed this:
object(Facebook)#1 (7) { ["appId:protected"]=> string(15) "xxxxxxxxx"
["apiSecret:protected"]=> string(32) "xxxxxx" ["user:protected"]=>
NULL ["signedRequest:protected"]=> NULL ["state:protected"]=>
string(32) "xxxxxxxxxxxxx" ["accessToken:protected"]=> NULL
["fileUploadSupport:protected"]=> bool(false) }
Does anyone know why I'm always getting Internal Server Error 500?