|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-11-02 12:54 UTC] ehesry at yahoo dot com
Because problem between apache 2.0.43 and PHP 4.2.3, i download the last version from CVS but i have some apache unpredictable restart. I install the same configuration with apache 1.3.27 and it works fine. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 14:00:01 2025 UTC |
I had some troubles with Apache 2.0.42 (Win2Kpro) and PHP 4.2.1 (full-pack). Thought that my problem looks like this bug. Anyway somhing is wrong... Previously I have Apache 1.3.12 and 1.3.24 with PHP 4.2.1 (Win2Kpro) and there was no problems at all. After reinstalling the system, I use Apache 2.0.42 instead of 1.x, and have next troubles (I use settings from old Apache, but no all .conf file - I make changes manually, in new .conf file): When I use next (in file "index.php"): --- $fs = fopen ("http://sample.xxx/inner.php?a=v","r"); fpassthru ($fs); --- browser(IE 5.5, Mozilla 1.1) fails to open page, but if I use: --- $fs = fopen ("inner.php","r"); fpassthru ($fs); --- All is OK. PS. allow_url_fopen = On in php.ini file. --- Apache log --- 127.0.0.1 - - [08/Nov/2002:04:49:58 +0600] "GET /index.php HTTP/1.1" 500 601 127.0.0.1 - - [08/Nov/2002:05:07:57 +0600] "GET /inner.php HTTP/1.0" 200 334 --- Apache log --- after it a copy of php.exe loaded in memory and hangs up, until reboot. Some time past browser sais - "can't open page". No any PHP error in log.