RE: [PHP] session data missing

2003-07-14 Thread Ford, Mike [LSS]
-Original Message- From: ulf sundin [mailto:[EMAIL PROTECTED] Sent: 13 July 2003 23:37 I'm not the admin on the server, so I'll have to manage with the software provided. And that is php 4.0.6. Ah, right. Me, too, actually, which is why I still have the 4.0.6 manual on my PC!

Re: [PHP] session data missing

2003-07-13 Thread ulf sundin
Message- From: Kevin Stone [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 20:30 - Original Message - From: ulf sundin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 1:00 PM Subject: Re: [PHP] session data missing ok, so now the variable names

RE: [PHP] session data missing

2003-07-11 Thread Ford, Mike [LSS]
-Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 20:30 - Original Message - From: ulf sundin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 1:00 PM Subject: Re: [PHP] session data missing ok, so now

RE: [PHP] session data missing

2003-07-09 Thread Ford, Mike [LSS]
-Original Message- From: ulf sundin [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 01:01 After creating a new session with session_start() and inserting a few values e.g $HTTP_SESSION_VARS['foo'] = 'bar'; a file /tmp/sess_{session_id} is created. The problem is that this file is

RE: [PHP] session data missing

2003-07-09 Thread Johnson, Kirk
After creating a new session with session_start() and inserting a few values e.g $HTTP_SESSION_VARS['foo'] = 'bar'; a file /tmp/sess_{session_id} is created. The problem is that this file is empty! 0 bytes. no data is stored. I'm using php 4.0.6 on linux with apache 1.3 something. Check

Re: [PHP] session data missing

2003-07-09 Thread ulf sundin
ok, so now the variable names are registred and stored in the file. But without values. check this: --firstpage.php session_start() session_register('foo'); $HTTP_SESSION_VARS['foo'] = 'bar'; echo $HTTP_SESSION_VARS['foo']; //outputs bar; transport by a href to: secondpage.php

Re: [PHP] session data missing

2003-07-09 Thread Kevin Stone
- Original Message - From: ulf sundin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 1:00 PM Subject: Re: [PHP] session data missing ok, so now the variable names are registred and stored in the file. But without values. check this: --firstpage.php

Re: [PHP] session data missing

2003-07-09 Thread ulf sundin
to be working the way I wanted it to. Regards Ulf Kevin Stone [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] - Original Message - From: ulf sundin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 1:00 PM Subject: Re: [PHP] session data missing