Okay, this morning and going back 6 months I'm able to use sessions.
Suddenly this afternoon, users can not log in. After messing with the code for awhile, I discover that the session variable that my header checks for is not being passed from the login page to the rest of the site:
My code:
(script1)
session_start();
session_register("secure");
$secure=1;
Is not being picked up on the other "end":
(script2)
session_start();
echo $secure;
//returns nothing....nor does:
while (list($key,$val) = each($HTTP_SESSION_VARS)){
echo "$key=$val</br>\n";
}
There are four administrators who claim they have not touched anf config file period today.
Here's my phpinfo results:
http://bluephantomwriters.com/temp060602/phpinfo.htm
Any insight would be greatly appreciated.