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 have integrated facebook into my webpage to manage logins. The problem that I'm currently experiencing is that on the first page load if I am inactive for a while, it usually seems to just crash.

I've managed to determine at what part my code just stops working. I imagine it has more to do with facebook sdk. But I have no clue where to even start looking.

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en">
<?php

echo "<!--  fetfacebook p1 -->";

define('YOUR_APP_ID', 'XXX');
define('YOUR_APP_SECRET', 'XXX');

//uses the PHP SDK.  Download from https://github.com/facebook/php-sdk

echo "<!-- fetfacebook p1 just before require facebook.php  -->";
require 'facebook.php';

echo "<!-- fetfacebook p1 just after facebook.php require. -->";

$facebook = new Facebook(array(
  'appId'  => YOUR_APP_ID,
  'secret' => YOUR_APP_SECRET,
));




echo "<!-- fetfacebook p1 just before get user. -->";
$FBUID = $facebook->getUser();

echo "<!--  fetfacebook end p1 -->";

?>



<?php 

      echo "<!--  fetfacebook  end p1.5 -->";
      ?>

<?php  

      if ($FBUID > 1) { 
      echo "<!-- id: $FBUID  fetfacebook p2 -->";

      // Code randomly seems to crash here

      $userInfo = $facebook->api('/' + $FBUID);     

      // this bottom echo isn't printed.

      echo "<!--  fetfacebook  end p2 -->";

    // cut the rest off here..
      }
      ?>

I haven't changed inside of their sdk, so I'm not sure why it wouldn't work. The end result is however that after I load it once, it then works just fine.

  • Often times when I load the page, it says the user is signed out at first but shortly refreshes after. Which is what I assume is supposed to happen, yet it doesn't always.

  • If you felt like looking at the actual site and checking it out it's here: http://infinitysocial.net/infinitywar/ thanks for any assistance.

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.