|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-27 14:44 UTC] hholzgra@php.net
[2001-08-27 18:37 UTC] tthiery at yahoo dot de
[2001-12-19 22:22 UTC] yohgaki@php.net
[2002-01-09 02:06 UTC] lobbin@php.net
[2002-01-27 06:41 UTC] tthiery at yahoo dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 18:00:01 2025 UTC |
System: Linux PHP 4.06 Apache 1.3.19 mySQL 3.23.38 side1.php session_start(); session_register("var1"); Header("location:page2.php); side2.php session_start(); session_is_register("logon") returns false; I check the mySQL logs (i have a personal written session_handler, which works fine under a lot of different systems with mySQL) and see following problem side1.php: SELECT * FROM Session WHERE SessionID ... .... script queries from side1.php side2.php: SELECT * FROM Session WHERE SessionID ... side1.php: UPDATE Session SET ... WHERE SessionID ... .... script queries from side2.php side2.php: UPDATE Session Set ... WHERE SessionID .... instead of the normal: side1.php: SELECT * FROM Session WHERE SessionID ... .... script queries from side1.php side1.php: UPDATE Session SET ... WHERE SessionID ... side2.php: SELECT * FROM Session WHERE SessionID ... .... script queries from side2.php side2.php: UPDATE Session Set ... WHERE SessionID .... i think the problem is that the header("Location: ...") works so fast over the intranet network, that my old developer machine isn't fast enaugh to handle the script SQL statement, before the new site request reach another process of the apache and query the session table. the problem is that the buffer is flushed before the session related operations are done What can i do against this behavior? thanx