[PHP] https sessions failing to persist

2004-04-30 Thread Michael R. Wayne

Upgraded our PHP installation from 4.1.2 to 4.3.4, scripts that
worked fine before are no longer doing so.  The failure can be
traced to the fact that sessions are never being reused (i.e. a new
session gets started with each connection).  The session files get
written with proper information but never get read.

The relevant session variables are:
   Session Support  enabled 
   session.auto_start   On
   session.use_cookies  Off
   session.use_trans_sidOn
and, as noted in the subject line, all connections are via https.

Any suggestions on how to debug this?

/\/\ \/\/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] https sessions failing to persist

2004-04-30 Thread Curt Zirzow
* Thus wrote Michael R. Wayne ([EMAIL PROTECTED]):
 
 Upgraded our PHP installation from 4.1.2 to 4.3.4, scripts that
 worked fine before are no longer doing so.  The failure can be
 traced to the fact that sessions are never being reused (i.e. a new
 session gets started with each connection).  The session files get
 written with proper information but never get read.
 
 The relevant session variables are:
Session Supportenabled 
session.auto_start On
session.use_cookiesOff
session.use_trans_sid  On

What about:

session.cookie_path
session.cookie_domain
session.cookie_secure



Curt
-- 
I used to think I was indecisive, but now I'm not so sure.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] https sessions failing to persist

2004-04-30 Thread Michael R. Wayne
On Fri, Apr 30, 2004 at 08:52:37PM +, Curt Zirzow wrote:
 
 session.cookie_path
 session.cookie_domain
 session.cookie_secure

session.cookie_path /
session.cookie_secure   Off
session.cookie_domain   no value

But we never use cookies:
session.use_cookies Off

/\/\ \/\/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] https sessions failing to persist

2004-04-30 Thread Curt Zirzow
* Thus wrote Michael R. Wayne ([EMAIL PROTECTED]):
 On Fri, Apr 30, 2004 at 08:52:37PM +, Curt Zirzow wrote:
  
  session.cookie_path
  session.cookie_domain
  session.cookie_secure
 
 session.cookie_path   /
 session.cookie_secure Off
 session.cookie_domain no value
 
 But we never use cookies:
 session.use_cookies   Off

do'h.. i completly missed that.  



Curt
-- 
I used to think I was indecisive, but now I'm not so sure.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php