Re: [PHP] session_regenerate_id()

2003-10-30 Thread Alexander Mueller
Cpt John W. Holmes wrote: If you're using sessions in the URL, then it works just fine. So, if PHP is less than 4.3.3, you need to use setcookie() to reset the value of the session id yourself. If you're using 4.3.3, then you don't have to worry about it. I see, but then I would rather

[PHP] session_regenerate_id()

2003-10-29 Thread Alexander Mueller
I am not entirely sure what the following paragraph at http://at2.php.net/manual/en/function.session-regenerate-id.php shall mean As of PHP 4.3.3, if session cookies are enabled, use of session_regenerate_id() will also submit a new session cookie with the new session id. What did it in

Re: [PHP] session_regenerate_id()

2003-10-29 Thread CPT John W. Holmes
From: Alexander Mueller [EMAIL PROTECTED] I am not entirely sure what the following paragraph at http://at2.php.net/manual/en/function.session-regenerate-id.php shall mean As of PHP 4.3.3, if session cookies are enabled, use of session_regenerate_id() will also submit a new session cookie

Re: [PHP] session_regenerate_id()

2003-10-29 Thread Curt Zirzow
* Thus wrote Alexander Mueller ([EMAIL PROTECTED]): I am not entirely sure what the following paragraph at http://at2.php.net/manual/en/function.session-regenerate-id.php shall mean As of PHP 4.3.3, if session cookies are enabled, use of session_regenerate_id() will also submit a new

Re: [PHP] session_regenerate_id()

2003-10-29 Thread Alexander Mueller
Cpt John W. Holmes wrote: PHP 4.3.2 created a new session ID, but it didn't resend the cookie. So the next request would include the old session ID again from the cookie. I wonder what it is then good for. Changing the id internally without notifying the client does not make much sense IMHO.

Re: [PHP] session_regenerate_id()

2003-10-29 Thread Alexander Mueller
Curt Zirzow wrote: how is it not comatible with Opera? With 4.3.3 it works for IE and Mozilla, however Opera still has some problems with recognising the new id under certain circumstances. Alexander -- PINO - The free Chatsystem! Available at http://www.pino.org -- PHP General Mailing

Re: [PHP] session_regenerate_id()

2003-10-29 Thread CPT John W. Holmes
From: Alexander Mueller [EMAIL PROTECTED] Cpt John W. Holmes wrote: PHP 4.3.2 created a new session ID, but it didn't resend the cookie. So the next request would include the old session ID again from the cookie. I wonder what it is then good for. Changing the id internally without

[PHP] session_regenerate_id() - Call to undefined function

2003-06-26 Thread D. R. Hansen
I am getting a Call to undefined function when invoking session_regenerate_id(). No typos -- I've checked. Fatal error: Call to undefined function: session_regenerate_id() in /path_to_my_script/resetsession.php3 on line 5 Running PHP 4.3.1 on RH 8.0 and Apache 2 -- PHP General Mailing List

Re: [PHP] session_regenerate_id() - Call to undefined function

2003-06-26 Thread Gerard Samuel
PHP 4 = 4.3.2 D. R. Hansen wrote: I am getting a Call to undefined function when invoking session_regenerate_id(). No typos -- I've checked. Fatal error: Call to undefined function: session_regenerate_id() in /path_to_my_script/resetsession.php3 on line 5 Running PHP 4.3.1 on RH 8.0 and

Re: [PHP] session_regenerate_id() - Call to undefined function

2003-06-26 Thread Leif K-Brooks
D. R. Hansen wrote: I am getting a Call to undefined function when invoking session_regenerate_id(). No typos -- I've checked. Fatal error: Call to undefined function: session_regenerate_id() in /path_to_my_script/resetsession.php3 on line 5 Running PHP 4.3.1 on RH 8.0 and Apache 2

[PHP] session_regenerate_id()

2003-05-30 Thread Dan Joseph
Hi, I know this function is new, however, does anyone have any documentation on it? There is nothing on php.net... -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php