Jump to content

[SOLVED] SESSION doesnt work correct in IE8


Allan-

Recommended Posts

PHP is server side so not affected by client browser..

 

However, without seeing your code theirs not much we can say,

does this code work (in its own file) ?

<?php
session_start();
if(isset($_SESSION['online']))
{
$_SESSION['online']++;
}else{
$_SESSION['online'] = 1;
}
echo $_SESSION['online'];
?>

  • 2 years later...

I just had this issue show up, and (finally) managed to track down the problem / solution:

 

IE8 rejects cookies when there is an underscore in the URL.

 

http://genotrance.wordpress.com/2006/11/23/session-cookies-rejected-by-internet-explorer/

 

As ridiculous as it sounds, that's it.    >:(

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.