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 know, that this is very popular issue and there is many post about, but i didn't find anything that could help me in my situation.

At the beginning I would like to present, how my application works: the address you type is some url/index.pxp?page=pagetype&subpage=subpagenumber When you type this address into web browser, php will execute index.php include engine.php from other subfolder to choice correct functions set and then, using those functions generate page. To do this, it's crucial, to have access to $_SESSION and few php files (e.g. with sql functions). I'm not sure, but it somewhere here could be source of my problems with facebook plugins. I tried to use any of solutions from this forum, but none has positive results. In this moment my site looks like this:

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>some title</title>
<meta http-equiv="Content-Language" content="pl" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta prefix="og: http://ogp.me/ns#/" property="og:title" content="My subpage title" />
<meta prefix="og: http://ogp.me/ns#/" property="og:type" content="article" />
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="{site url}/index.php?page=polecenie&polecenie=100000005" />
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="{photos urs}/100000005.jpg" />
<meta prefix="og: http://ogp.me/ns#" property="og:site_name" content=" my site name" />
<meta prefix="fb: http://ogp.me/ns/fb#" property="fb:admins" content="{my number}" />
<meta prefix="fb: http://ogp.me/ns/fb#" property="fb:app_id" content="{my app id}" />

I know that it looks strange, but when i tried to put prefixes into head tag it won't work, so i tried other solution. Could anyone tell me, if this kind of php engine, with $_SESSION variable will work with facebook, or what sould i do with this code? Debugger can't see anything except html tag and my links have no description or images. Thanks for any help, and sorry for my English :)

Edit:

Little change in question: is there any connection between site generation through GET value and incorrect like button effect? Should I change it to separate sites (index.php) input to some subfolders?

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.