Session Not Starting
Posted: Wed Mar 19, 2003 4:09 pm
I created a 'nologin' page to my site for those users that don't want to bother with logging in. It's a temporary substitute for IP authentication.
For one subscriber, the session will only start from one computer on campus. It has Windows XP & IE6. The computers that cannot start a session have Windows XP or another older version of Windows and IE & NS 6 or older. Is there a setting somewhere that would disrupt the session starting process??? Since I'm not using cookies, cookie settings are irrelevent right?
Since only 1 subscriber is complaining, I'm assuming it is a isolated incident. The nologin page seems pretty simplistic, but do you see any errors????
For one subscriber, the session will only start from one computer on campus. It has Windows XP & IE6. The computers that cannot start a session have Windows XP or another older version of Windows and IE & NS 6 or older. Is there a setting somewhere that would disrupt the session starting process??? Since I'm not using cookies, cookie settings are irrelevent right?
Since only 1 subscriber is complaining, I'm assuming it is a isolated incident. The nologin page seems pretty simplistic, but do you see any errors????
Code: Select all
<?php
#PG ENABLES USERS TO BYPASS LOGIN
if($_GET[user])
{
include 'functions.phps';
session_start();
$_SESSION['user']=$_GET[user];
#userip($_SESSION['user']);
$nologin=$_SESSION['user'];
}
header("Location: http://website.com?nologin=$nologin");
?>