Damn, thats a title fit for this situation.....
Running EasyPHP in english as a dev environment. PHP v4.3.3 Apache/1.3- php.ini is as follows:
session.save_handler = files
session.save_path = "C:\Program Files\EasyPHP1-7\tmp\"
session.use_cookies = 0
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
Each page as a
<?php
session_start();
$_SESSION['name'] = "bob";
?>
Subsequent pages have the save session_start(); and
<? echo $_SESSION['name']; ?>
Sessions are NOT carrying from page to page. If I do an echo session ID, I get completely different IDs on each reload of the same page.
Please tell me someone else has gotten through this maddness. Its been 2 days screwing with this.
Hope I have been able to provide all relevant information.