Hello !
Can you help me perhaps ?
I created a site with PHP session management on a Win2K machine running Personal Web Server. Everything worked fine. I even managed to implement MySQL session storage. The PHP on this computer was 4.06 and it was sucessfully installed as a mudule with ISAPI filter.
But the target machine is Win2K Server where unfortunately PHP module didn't start, so PHP is running as plain CGI without ISAPI filter. The PHP is now 4.08.
And now the real problem starts:
- (please notice MySQL sessions are now off - the sessions are stored in files)
This simple piece of code:
session_start();
$session_id = session_id();
session_destroy($session_id);
Is producing an ugly error:
"Wrong parameter count for session_destroy() in E:\Witryny\Preps\forum\logout.php on line 3"
- Whenever session handling is managed by MySQL custom handler I get this error:
"Warning: Unknown persistent list entry type in module shutdown (11) in Unknown on line 0"
Any ideas what went wrong ???
Please help !!!
Ziggi