Another thing you can try is converting your PHP Session page into an object, and then referencing that object via include() before any of your page code on each page. Like this:
<<< Put this code in a file called session.php in the same directory as your other pages>>>
<?php
class session {
function session() { /* class constructor */
session_start();
}
}
$session = new session;
?>
Then, in any page you want to use sessions or session variables, put the following code before any of your php or html code:
<?php
include('session.php');
?>
This way, you assure yourself that you are using your sessions on every page you might need them. This is object code, you might want to read up on it by searching for it on google, perhaps with the keywords: PHP object code tutorial
Hope this helps.