The system is running debian 3.0
The login script creates a new session id, apparently in a correct way.
The other script is
<?php
session_start();
?>
<html><head><title>Test</title></head>
<body>
<a href="logout.php">logout</a><br>
<?php
$name=$_SESSION["name"];
print "hello $name<br>";
?>
<a href="page1.php">page 1</a><br>
<a href="page2.php">page 2</a><br>
....
This script doesn't use the session but creates a new one. As already mentioned the links aren't rewritten at all.
The php.ini is the php.ini-dist, I modified the session.use_trans_id part accordingly.
I checked the php test page - php is compiled with --enable-trans-sid, nevertheless the test page says 'session.use_trans_sid Off'.
What's next?