gentle folk,
We are using win2k servers and php4.2..
We received a session_start() and session id error today on a script that has been working fine. I have looked in the D:/Inetpub/mailtemp folder and can see session files that have been written to it.
The script:
<?php
require_once('SHA/PageUtils.php');
require_once('hraq/hraquser.php');
#initialize a session
session_start(); // this is line 7 mentioned in error
// rest of code
?>
[22-Oct-2003 02:11:22] PHP Warning: session_start() [http://www.php.net/function.session-start'>function.session-
start]: The session id contains illegal characters, valid
characters are only a-z, A-Z and 0-9 in
D:\inetpub\wwwroot\publications\hraq\index.html on line 7
[22-Oct-2003 02:11:22] PHP Warning: Unknown(): The session id
contains illegal characters, valid characters are only a-z, A-Z and
0-9 in Unknown on line 0
[22-Oct-2003 02:11:22] PHP Warning: Unknown(): Failed to write
session data (files). Please verify that the current setting of
session.save_path is correct (D:/Inetpub/mailtemp) in Unknown on
line 0
Can anyone interpret these errors for me and what they might mean.
I thought session id was created automatically by php with session_start().
Thanks much for any advice.