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 testing my webiste and trying to input the like button on my links. What Im trying to do is to show the title, url and image from a mysql database, for example thats how my code is now:

<meta property="og:title" content="<?php echo $titulo; ?>" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://hogardelocio.com/pl.php?pl=<?php echo $lid; ?>" />
<meta property="og:image" content="http://hogardelocio.com/img/<?php echo $imagem; ?>" /> 
<meta property="og:site_name" content="Hogar del Ocio" />

On the debug it seens to be fine, it show the image, title and link properly, but if you click on the "like" button on my page and share it, it shows just this link "http://hogardelocio.com/pl.php?pl" and another image without title...

Here is the debug page: http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.hogardelocio.com%2Fpl.php%3Fpl%3D91

Can somebody help me? thank you

share|improve this question

1 Answer

up vote 2 down vote accepted

I took a look at your page, it seems that the error is not with your <meta> tags but with the fb:like button's data-href which is badly formatted:

This is what on your page:

<div class="fb-like" 
    data-href="http://hogardelocio.com/pl.php?pl='link.php?link=91'" 
    data-send="false" data-layout="button_count" data-width="20" 
    data-show-faces="false" data-font="arial">
</div>

where it should have been, if I am not mistaken:

<div class="fb-like" data-href="http://hogardelocio.com/pl.php?pl=91" 
    data-send="false" data-layout="button_count" data-width="20" 
    data-show-faces="false" data-font="arial">
</div>
share|improve this answer
lol can't believe it was that, spend so many hours think that was the meta tag.... thank you! :) – El Ocioso Jul 24 '12 at 6:02
You might want to mark it as answered. – uzyn Jul 24 '12 at 6:06

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.