Hi everyone!
Can anyone out there tell me how to properly configure session-handling in php4 with the help of the php.ini file? What should the right values be in the session-section of the php.ini file?Can't fing this information anywhere.
I'm running php4 on the apache web-server 1.3.12 and win98SE.
When I for example try to execute this simple script:
<?
session_start();
session_register("SESSION");
if (! isset($SESSION)) {
$SESSION["count"] = 0;
echo "<li>Counter initialized, please reload this page to see it increment";
} else {
echo "<li>Waking up session $PHPSESSID";
$SESSION["count"]++;
}
echo "<li>The counter is now $SESSION[count] ";
?>
It won't increment the count-variable.It refuses to do so.Everything else works fine except for the session-handling functions.