i have integrated facebook in a website. I implemented login through facebook and some of its social plugins. Every thing was working fine but now it has stopped working on one of the page of website. On other pages it is still working. I have a login button and comment box in that page. But both are not working. When I click login button no pop displays and comment box is not showing instead facebook cannot find page is showing. i have used following code. First I have connected with facebook asynchronously
<div id="fb-root">
<script>
window.fbAsyncInit = function() {
FB.init({appId: "MY APP ID",
status: true,
cookie: true,
xfbml: true});
FB.getLoginStatus(function(response) {
if (response.session) {
HERE I am sending parameters to my system to login if user is login with facebook
} else {
}
});
FB.Event.subscribe("auth.login", function(response) {
window.location.reload();
});
FB.Event.subscribe("auth.logout", function(response) {
here i am sending parameter to my system to logout if user logout from facebook
});
};
(function() {
var e = document.createElement("script");
e.type = "text/javascript";
e.src = document.location.protocol +
"//connect.facebook.net/en_US/all.js";
e.async = true;
document.getElementById("fb-root").appendChild(e);
}());
I have used following code for comment box
<fb:comments xid="" url="" simple="1" css="http://www.mysite.com/css/comment.css?16" width="360" numposts="12"></fb:comments>
And using
<fb:login-button perms='email' autologoutlink='true'></fb:login-button>for login button Same code on other pages is working. Any one can figure out problem and guide me? Thanks in advance
.htaccess? – ifaour Feb 4 '11 at 8:28