if I create simple scripts
ses.php
<?
session_start();
$_SESSION["t1"] = "ses_test1";
?>
ses1.php
<?
session_start();
print_r($_SESSION);
?>
It works and data is written to session file and persistent along the site. But the settings from the actual scripts are not committed to file and not persistent. When I fill the $_SESSION array and then print it - it prints it but only on this script output where I filled it in and not another script. But the weirdness that the same actual scripts are working with session ok on another box.
Hence the conclusion is since simplest test session scripts are working, the session handling works with Apache and php. What else left to check? Permissions on the scripts, owner:group, security context?
All ideas are welcome, thank you.