I have a picture blog and just added some Like/Send buttons to it but boy what a mission. I'm not a professional programmer and just about manage php SQL and css and it took me 3 days and I gave up. Now I'm thinking is it worth it.
I did all that facebook told me in step by step instruction.
I have og: tags here they are including server string that shows og:immage when clicked on a picture plys static .jpg for main page:
So this is in the head
<meta property="fb:admins" content="admin ID normally here" />
<meta property="og:title" content="<?php echo $conf->pobierz("tytul").@$title; ?>"/>
<meta property="og:type" content="activity" />
<meta property="og:description" content="<?php echo $conf->pobierz("description"); ?>" />
<meta property="og:url" content="http://www.facebook.com/OlympicsPictures">
<?php
$ex = explode("/",$_SERVER['SCRIPT_NAME']);
if($ex[1]='olympic-picture.php' || $ex[2]='olympic-picture.php') {
if($img['type']=='obrazek') { echo '<meta property="og:image" content="http://'.$conf->host().'/'.$img['img'].'" />'."\n"; }
elseif($img['type']=='film') {
$id_filmu=str_replace("http://www.youtube.com/watch?v=", "", $img['img']);
echo '<meta property="og:image" content="http://i.ytimg.com/vi/'.$id_filmu.'/default.jpg" />'."\n";
}
}
?>
<meta property="og:image" content="http://www.olympicspictures.co.uk/img/logo.jpg" />
first og:image has php code that calls og:image if on image page but hidden on index page and the last og:image tag is for static main page logo image.
Also I have facebook SDK element at the beginning of body
<div id="fb-root"></div>
<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/en_GB/all.js#xfbml=1&appId=270674026366590";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
and Like/share button for main site (intended for main site anyway) also in the body:
<div class="like">
<div id="fb-root"></div>
<script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js#xfbml=1&appId=270674026366590"></script>
<div class="fb-like" data-href="http://www.olympicspictures.co.uk/" data-send="true" data-layout="button_count" data-width="200" data-show-faces="true" data-colorscheme="light" data-font="arial"></div>
</div>
and Like/Share buttons for each rendered picture with server code calling to that picture url:
<div class="fb-like" data-href="http://'.$conf->host().'/olympic-picture.php?'.$img['id'].'" data-send="true" data-layout="button_count" data-width="100%" data-show-faces="false" data-colorscheme="dark" data-font="verdana"></div>
Each time I click Like button, a new page is created on facebook!!! I already have one fan page and it would be nice if Like could go through that page rather then create new fanpage. soon it will take me a day scrolling through new pages...
Facepile does not show who like my www.olympicspictures.co.uk site despite that I have likes on main page. I replaced the facepile address with fun page I have on facebook so at least it shows some activities.
What am I doing wrong? I've wasted 3 days on this. Some Like buttons associated with pictures show Likes for the main site, some Like buttons instead Like picture like main site or fan page. Now I'm at my wits end.
Anyone has any ideas how to fix it?
How can I see on insight who Like my page and how many Likes my pictures have. I thought that what I will have if I complete their installation. Instead I have frustration and headache.
Please any one can help?