Well, i'm using the facebook sharer to people publish stuff on their profile, like any website does. I'm included the metatags with the rules specified. It was working perfectly, including the tumbnail. But was static, like, just single string on the metatag.
Then, i decided to change, since users can share posts and each post has a music/nick name. I changed the title metatag from "MySite - Welcome" to "$Music by $Nickname". So, it will be always different the name when shared.
But now it's not working anymore, even the string and the thumbnail. I know something about the facebook cache. Basically i need help with it. I created a PHP script to redirect to the facebook sharer, since appears 10 posts in a single webpage.
Here is the code:
<?php
ob_start();
include('inclusoes/PegarURL.php');
include('inclusoes/conexao.php');
include_once ('classes/Funcoes.php');
$Funcoes = new Funcoes();
$PostID = mysql_real_escape_string($_GET['id']);
$PegarPostHeader = "SELECT usuarios.nick, posts.musica FROM posts
LEFT JOIN usuarios ON (posts.fk_usuario = usuarios.id_usuario)
LEFT JOIN generos ON (posts.fk_genero = generos.id_genero)
WHERE id_post = '$PostID'";
$ResulPegarPostHeader = $Funcoes->MySQLError($PegarPostHeader, $conexao);
$PostNaoEncontrado = mysql_num_rows($ResulPegarPostHeader);
$Musica = mysql_result($ResulPegarPostHeader, 0, 'musica');
$Nick = mysql_result($ResulPegarPostHeader, 0, 'nick');
if ($PostNaoEncontrado == 0)
header("location: http://www.aquickgig.com");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>QuickGig</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src='../imgs/js/jquery.jplayer.min.js'></script>
<script type='text/javascript' src='../imgs/js/Resol.js'></script>
<script type='text/javascript' src='../imgs/js/Validacoes.js'></script>
<noscript><meta http-equiv="Refresh" content="0;url=/NoScript.html"></noscript>
<meta name="description" content="Feedback and share your musics!" />
<meta name="keywords" content="quick, gig, quickgig, aquickgig, music, musics, share, download, anonymous, fast, online, search" />
<meta property="og:title" content="<?php echo "$Musica by $Nick"; ?>"/>
<meta property="og:image" content="http://www.aquickgig.com/imgs/Nota.png"/>
<meta property="og:site_name" content="QuickGig"/>
<meta property="og:description" content="Feedback and share your musics!"/>
<meta property="og:url" content="<?php echo $UrlAtual; ?>"/>
<?php
header("location: http://www.facebook.com/share.php?u=http://www.aquickgig.com/fullpost.php?postNumber=$PostID");
ob_end_flush();
?>
</head>
<body>
</body>
</html>
Also, there is no error message, just when open the sharer, the words ans pharases are different from that one i wrote.
Thanks in advanced.