ID: 31645 Updated by: [EMAIL PROTECTED] Reported By: john at jelsoft dot com -Status: Assigned +Status: Closed Bug Type: Apache2 related Operating System: * PHP Version: 4CVS, 5CVS (2005-01-22) Assigned To: jorton New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Ah, thanks, my bad. Previous Comments: ------------------------------------------------------------------------ [2005-01-22 14:54:02] [EMAIL PROTECTED] This bug was caused by this fix: ---------------------------- revision 1.16 date: 2005/01/11 14:01:32; author: jorton; state: Exp; lines: +6 -1 Fixed bug #30446 - virtual() includes files out of sequence, work around 2.0 subrequest/internal redirect issue. ---------------------------- ------------------------------------------------------------------------ [2005-01-22 12:20:58] john at jelsoft dot com >From my phpinfo, from the 'Loaded modules' section of apache2handler, it has sapi_apache2. Also listed in the modules section is worker. PHP's server API is reported as Apache 2.0 Handler. Is that the information you're after? Thanks! ------------------------------------------------------------------------ [2005-01-22 01:12:16] [EMAIL PROTECTED] What Apache SAPI are you using? ------------------------------------------------------------------------ [2005-01-21 19:25:10] john at jelsoft dot com Description: ------------ Any calls to the header() function after apache_lookup_uri() is called are not processed properly, so that the headers are not sent. Running 4.3.11-dev, build date Jan 16 2005 16:25:34 Save the following in test.php: Reproduce code: --------------- <?php header( "X-John: test1" ); apache_lookup_uri( 'test.php' ); header( "X-John2: test2" ); echo "hello"; ?> Expected result: ---------------- The header X-John2: test2 to be sent. Actual result: -------------- It's not sent, while X-John: test is sent. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=31645&edit=1