What setting might be causing an AMP server to only allow 1 request at a time per browser? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:49:06Z http://stackoverflow.com/feeds/question/395377 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395377/what-setting-might-be-causing-an-amp-server-to-only-allow-1-request-at-a-time-per 0 What setting might be causing an AMP server to only allow 1 request at a time per browser? Darryl Hein 2008-12-27T20:30:45Z 2008-12-27T21:00:32Z <p>I'm using an AMP server (Apache 1.3, MySQL 5.0, PHP 5.1.5) which I have found to only allow 1 connection/request per browser at one time. The easiest way to reporduce this is to request a large download which is passed through PHP and try to access another page at the same time. You will end up waiting for the first request (the file download) to complete before the other page loads.</p> <p>I'm not sure if the problem is Apache, MySQL or PHP. Any ideas where I should start looking?</p> <p>I can make other requests through other browsers on the same computer.</p> http://stackoverflow.com/questions/395377/what-setting-might-be-causing-an-amp-server-to-only-allow-1-request-at-a-time-per/395385#395385 0 Answer by PEZ for What setting might be causing an AMP server to only allow 1 request at a time per browser? PEZ 2008-12-27T20:35:45Z 2008-12-27T20:35:45Z <p>I would start looking in the apache config. MaxClients might be set to 1?</p> http://stackoverflow.com/questions/395377/what-setting-might-be-causing-an-amp-server-to-only-allow-1-request-at-a-time-per/395404#395404 1 Answer by Tom Haigh for What setting might be causing an AMP server to only allow 1 request at a time per browser? Tom Haigh 2008-12-27T21:00:32Z 2008-12-27T21:00:32Z <p>If you are using PHP Sessions then this could be caused by the session file being locked. To prevent the session file from being corrupted by simultaneous writes, only one script per session can be running at once. This means subsequent requests will have to wait until the first has ended.</p> <p>The session is written automatically when a script terminates, but you can make this happen earlier by calling <code>session_write_close()</code>. If you are writing a script that is going to take a while to run it would be wise to call this as soon as you no longer need access to the session data.</p> <p>There is some explanation of this in the documentation <a href="http://uk.php.net/manual/en/function.session-write-close.php" rel="nofollow">here</a></p>