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.

Fatal error: Class ‘facebook’ not found in C:\Program Files\EasyPHP-5.3.8.1\www\Landshoppe\config.php on line 13

the facebook.php is as follows;

window.fbAsyncInit = function() {
FB.init({
appId : ‘************************’, // App ID
channelUrl : ‘//*******************************’, // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});

// Additional initialization code here
};

// Load the SDK Asynchronously
(function(d){
var js, id = ‘facebook-jssdk’, ref = d.getElementsByTagName(‘script’)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(‘script’); js.id = id; js.async = true;
js.src = “//connect.facebook.net/en_US/all.js”;
ref.parentNode.insertBefore(js, ref);
}(document));

what’s going wrong ?!

share|improve this question
This looks like some JS, not PHP. PHP is looking for a Facebook class, written in PHP. – Stegrex Oct 1 '12 at 4:38

closed as not a real question by Corbin, Igy, Mitch Wheat, ρяσѕρєя K, talonmies Oct 1 '12 at 9:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

this is because you havnot included the php sdk include this it will work here is the documentation with download link and this is direct download link

in src folder there is a php file named facebook.php just include this

share|improve this answer
Got it ! Thanks guys, I hadn't downloaded the sdk like you said. Now its working ! :-) Thanks again. – Landshoppe LandMarket Oct 1 '12 at 6:15

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