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 using facebook comment plugin with my php dynamic website. The comment box is working fine but the facebook count is not working it always shows zero comments.

I use this in index.php

<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/nl_NL/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>

I use this on the page with the comment box

<fb:comments-count href="http://mywebsite.nl/news/<?=$news['ID'];?>.html"></fb:comments-count>

Any solutions?

share|improve this question
Are you specifing href to your fb:comments element as well? – fliespl Nov 6 '12 at 19:06

1 Answer

Does the url in the href above match the url given in the <meta property="og:url" ... /> tag for the page? The one in the og:url tag is the one Facebook will associate the comments with.

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.