|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-11-18 14:54 UTC] dmitry at koteroff dot ru
When I use MaxRequestsPerChild 0 (e.g. infinite) in httpd.conf, sometimes Apache crashes. I have tested this bug on framed page (it is phpMyAdmin, two frames in frameset). When I use only one page (without frames), I have to press Reload button (F5 in Internet Explorer) many times (I rather hold it) to produce crash. I think something's wrong in multithreaded code in php4apache.dll: it crashes when two requests occurs at the SAME TIME (often, but not always). Tere is no bug in 4.2.3, but I cannot use php4apache.dll from 4.2.3 for 4.3.0 - it crashes immediately. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 02:00:01 2025 UTC |
Sorry, maybe this bug is hard-reproducible in other machines. Well, then you may use the following script: /index.html: ------------ <frameset rows="*,*"> <frame src=/test.php> <frame src=/test.php> </frameset> /test.php: ---------- <?sleep(1)?> Apache 1.3.27, Windows 2000 SP2, 4.3.0RC1. Load http://localhost/index.html, then press Reload button. You will see GP Fault message immediately. See that you need at least TWO frames in frameset to emulate simultaneous requests. NEXT (!) Reload will kick ass.