[PHP] sessions and https

2002-07-28 Thread Mike Mannakee

Do sessions not work when using an https connection?  It seems I'm losing my
data between pages.

Mike



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




Re: [PHP] sessions and https

2002-07-28 Thread Oscar F

Mike,

I have used them with https, and they work fine. Make sure you are calling
session_start(); on every page you need your session vars.

 Oscar.-

- Original Message -
From: Mike Mannakee [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, July 28, 2002 9:21 PM
Subject: [PHP] sessions and https


 Do sessions not work when using an https connection?  It seems I'm losing
my
 data between pages.

 Mike



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





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




Re: [PHP] sessions and https

2002-07-28 Thread Tom Rogers

Hi,

Monday, July 29, 2002, 11:21:34 AM, you wrote:
MM Do sessions not work when using an https connection?  It seems I'm losing my
MM data between pages.

MM Mike

If you are changing domain names when going to https you will lose the
session info if relying on cookies. You will have to hard code the
session id in the url if this is the case.

-- 
regards,
Tom


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




Re: [PHP] sessions and https

2002-07-28 Thread Mike Mannakee

Thank you.  This has been driving me up the wall like you wouldn't believe.

Mike


Tom Rogers [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hi,

 Monday, July 29, 2002, 11:21:34 AM, you wrote:
 MM Do sessions not work when using an https connection?  It seems I'm
losing my
 MM data between pages.

 MM Mike

 If you are changing domain names when going to https you will lose the
 session info if relying on cookies. You will have to hard code the
 session id in the url if this is the case.

 --
 regards,
 Tom




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