There are times when a site does not appear to work properly.
One of the
first things you need to check is whether your browser accepts "temporary" or
"session" cookies.
These cookies are not used to track what you do, but they
remember settings that are vital to the proper operation of the site.
In Internet Explorer 7, go to tools>internet options>privacy>advanced,
and verify your settings:

";
switch ( $phase )
{
case '2':
require_once ( $_inc_root . "head_top.php" );
require_once ( $_inc_root . "head_bottom.php" );
require_once ( $_inc_root . "body_top.php" );
$cooks = new SessionCookieTest('2');
if ( $cooks->getErrorCode() != '0' )
{
echo "
Session Cookies cannot be retrieved in phase 2
$splain\n";
$cooks->logMessage( 'ERROR', 'Session Cookies cannot be retrieved in phase 2' );
die();
}
break;
default:
$cooks = new SessionCookieTest('1');
if ( $cooks->getErrorCode() != '0' )
{
echo "
Session Cookies cannot be set in phase 1
$splain\n";
$cooks->logMessage( 'ERROR', 'Session Cookies cannot be set in phase 1' );
die();
}
header("Location: $self?phase=2");
exit;
break;
}
echo "$splain Test completed. Your settings are OK.
\n";
$cooks->logMessage( 'OK', 'Session Cookies are OK' );
?>