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.

EDIT: I was able to fix this just by emptying the browser's cache and the restarting it. Hope this will help someone who struggled all day like me.


So, Facebook just rolled out the BIG image thumbnails (which will definitely generate more traffic for external websites) when Sharing or Liking on external websites or Sharing a link to Facebook. See example here

It doesn't work with my site though and I was wondering if there is a problem with my script. Bellow will post the code of the OG Facebook properies as I think it could be something with that. Using the Facebook Debugger gives me this

...and at the end it gives this:

    Raw Open Graph Document Information

Meta Tag    <meta property="fb:app_id" content="***********" />
Meta Tag    <meta property="fb:title" content="Some Title" />
Meta Tag    <meta property="fb:site_name" content="Site Name" />
Meta Tag    <meta property="fb:url" content="http://mysite.com/article/5426" />
Meta Tag    <meta property="fb:image" content="http://mysite.com/pics/t2/5426-1.jpg" />
Meta Tag    <meta property="fb:type" content="blog" />

Could this be something with the og:image? As you can see right above this sentence, the meta properties above are all fb:...... and not og:...... as it should probably be.

And finally my header code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" onkeypress="keyfind(event)">
<head prefix="og: http://ogp.me/ns/fb#">
<title>{if $pagetitle ne ""}{$pagetitle} - {/if}{$site_name}</title>

<meta name="title" content="{if $pagetitle ne ""}{$pagetitle} - {/if}{$site_name}" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="keywords" content="{if $pagetitle ne ""}{$pagetitle},{/if}{if $metakeywords ne ""}{$metakeywords},{/if}{$site_name}">    
<meta name="description" content="{$site_slogan}"/>

<meta property="fb:app_id" content="{$FACEBOOK_APP_ID}"/>
<meta property="og:title" content="{if $pagetitle ne ""}{$pagetitle} - {/if}{$site_name}"/>
<meta property="og:site_name" content="{$site_name}"/>
<meta property="og:url" content="{$baseurl}/lol/{$p.PID}"/>
{if $lol eq 1}
{if $p.video ne ""}
<meta property="og:image" content="http://img.youtube.com/vi/{get_youtube_id($p.video)}/0.jpg" />
{else}
<meta property="og:image" content="{$baseurl}/pics/t2/{$p.image}" />
{/if}
{/if}
<meta property="og:type" content="blog" />

Ps. Is it possible that the thumbnail size has been set somewhere into my script, so I can change it to something bigger as a size?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.