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 ran a simple test to ensure the PHPSESSID is stored correctly. IE, Chrome and Safari work OK, but Firefox keeps changing the session id when the page is refreshed or when I change to another web page.

This is the test file (test.php):

<?php
    session_start();
    $sessionID = session_id();
    echo $sessionID;
?>

The only add-on I have is Firebug.

Any help is appreciated.

Thanks!

share|improve this question
1  
Are cookies enabled? – John VanDeWeghe May 19 '12 at 5:19
Silly oversight. I thought I did, but I checked it now, and found out it isn't. Thanks for the reminder! – aobs May 19 '12 at 5:25

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.