|
Posted by Nik Coughlin on 02/28/07 04:37
Steve wrote:
> "Nik Coughlin" <nrkn.com@gmail.com> wrote in message
> news:es2o3p$550$1@aioe.org...
>> Sessions have unexpectedly stopped working on a client's webserver.
>>
>> PHP Version 4.4.1 running under IIS. When moving from page to page
>> the session information is lost.
>>
>> It used to work fine, and the same code works on other machines.
>> AFAIK no-one has been messing with the box, but it's possible. I've
>> asked them to try and find out if anyone has changed anything.
>>
>> Any ideas?
>
> wow, this is a big problem as of late! i recommend that you quit using
> freaking google groups to access usenet.
Um, I'm not using Google Groups.
> were you to use a moderately
> good news reader, you'd be able to more easily see there have been at
> least three long discussions about this in as many days...each
> describing what to look for.
You mean, if I had been already subscribed to alt.php and had been
downloading headers? Well, I wasn't already subscribed so I only got the
latest headers. I missed the posts you're talking about.
Ironically though, given your statement about not using Google Groups to
access Usenet, I was able to find those posts by searching Google Groups.
There are two posts about sessions in this group in the last two weeks, not
3 in the last 3 days.
One of them relates to something that AOL does with sessions. Not my issue.
Not related at all. No help to me.
The second one has nothing that helps me determine the cause of my problem
either.
A minimal test case:
sessionTest1.php:
<?php
session_start();
$_SESSION[ 'test' ] = "Testing";
echo "Test = " . $_SESSION[ 'test' ] . "<br>";
echo '<a href="sessionTest2.php?' . htmlspecialchars(SID) . '">Test Page
2</a>';
?>
sessionTest2.php:
<?php
session_start();
echo "Test = " . $_SESSION[ 'test' ] . "<br>";
echo '<a href="sessionTest1.php">Test Page 1</a>';
?>
You can see what happens here:
http://www.masterpiece.co.nz/sessionTest1.php
[Back to original message]
|