Re: [PHP] known problems with session_register()?

2001-04-03 Thread Yasuo Ohgaki
script execution is ended. Regards, -- Yasuo Ohgaki - Original Message - From: "Felix Kronlage" [EMAIL PROTECTED] To: "Yasuo Ohgaki" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, April 02, 2001 9:21 PM Subject: Re: [PHP] known problems with session_register()?

Re: [PHP] known problems with session_register()?

2001-04-03 Thread Felix Kronlage
On Tue, Apr 03, 2001 at 05:34:05PM +0900, Yasuo Ohgaki wrote: Try register globals off, see if it helps. (You need to use $HTTP_SESSION_VARS) ok. will do that. Does $HTTP_SESSION_VARS always work? (even with register_globals being on?) FYI: It seems there is race condition problem in

Re: [PHP] known problems with session_register()?

2001-04-03 Thread Yasuo Ohgaki
Yasuo Ohgaki" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, April 02, 2001 9:21 PM Subject: Re: [PHP] known problems with session_register()? On Mon, Apr 02, 2001 at 09:13:41PM +0900, Yasuo Ohgaki wrote: If you are enabled track vars and disabled register globals, all you have

Re: [PHP] known problems with session_register()?

2001-04-02 Thread Yasuo Ohgaki
What is your php.ini? If you are enabled track vars and disabled register globals, all you have to do is assign values to $HTTP_SESSION_VARS and unset($HTTP_SESSION_VARS['your_session_var']). You don't need to use session_register(), session_unregister() if it's the case. Refer to User Notes in

Re: [PHP] known problems with session_register()?

2001-04-02 Thread Felix Kronlage
On Mon, Apr 02, 2001 at 09:13:41PM +0900, Yasuo Ohgaki wrote: If you are enabled track vars and disabled register globals, all you have to do is assign values to $HTTP_SESSION_VARS and both are on. Could there be a problem with session_register() ? I do think it's odd, that the same code, on

Re: [PHP] known problems with session_register()?

2001-04-02 Thread Scott Fletcher
You're not alone in this problem. I have the same problem some of the time. I don't know why is that, so someone wrote the script to provide a way around it. If it is for the login, it can be done by terminating hte session_register and all stale session then create a new one once the person