php-windows Digest 10 Nov 2004 02:26:06 -0000 Issue 2462
Topics (messages 24948 through 24950):
PHP and IIS6 on Win2k3
24948 by: Dean L. Howen
24949 by: Bowden, Zeb
Is session held in the cache?
24950 by: graeme
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
HI,
I have been successful config PHP 5 on IIS5 , but not with IIS6 on Win2k3. I
have done by following the install instruction.
The error is "404-This page cannot display"
Tell me what to do continue...
Thanks
--- End Message ---
--- Begin Message ---
Did you add php as an allowed web service extension?
-----Original Message-----
From: Dean L. Howen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 09, 2004 12:40 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] PHP and IIS6 on Win2k3
HI,
I have been successful config PHP 5 on IIS5 , but not with IIS6 on
Win2k3. I
have done by following the install instruction.
The error is "404-This page cannot display"
Tell me what to do continue...
Thanks
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I've used the following script from the help file. It works fine BUT
when I recreate the session (in the same script) the session file is
created with the same file name (and the creation date is the original
date). So is it really being deleted or is it just hanging about (like
the evil dead) in a cache waiting to walk again?
session_start();
$_SESSION = array();
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), '', time()-42000, '/');
}
session_destroy();
I've tried adding a call to session_write_close(); but no joy.
Any advice would be appreciated.
graeme.
--- End Message ---