"radar" <> wrote in message
news:690b385d-d0ef-4e40-b089-...
> I've found a session "bug" on IE (from 6.0 to 8.0)...
> This simple script (test.php):
>
> <?php
> session_start();
> $_SESSION['test'].=" - ";
> print_r($_SESSION);
> ?>
>
> don't works if domain name contains a "_" (session are deleted on
> every reload).
> In my case, the script works on:
>
> http://test.mydomain.com:8080/test.php
>
> but don't works on:
>
> http://test_v1.mydomain.com:8080/test.php
>
> Can you try?
>
> PS: same script work on Firefox, Konqueror and Opera (latest versions)
>
> Thanks,
> Antonio
IE is very strict about domain name handling - the RFCs do not allow FQDNs
to contain an underscore, so IE will not allow a cookie to be set for one
that does.
--
Dan