ID: 35940 Updated by: [EMAIL PROTECTED] Reported By: cristic at interaktonline dot com -Status: Open +Status: Feedback Bug Type: Reproducible crash Operating System: Windows XP PHP Version: 5.1.1 New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php5.1-latest.tar.gz For Windows: http://snaps.php.net/win32/php5.1-win32-latest.zip This is most likely fixed in CVS already. Previous Comments: ------------------------------------------------------------------------ [2006-01-09 10:55:06] cristic at interaktonline dot com Description: ------------ When a redirect (header('Location:')) is used with a virtual include the Apache crash: --------------------------- Apache.exe - Application Error --------------------------- The instruction at "0x008736ac" referenced memory at "0x0001ee6c". The memory could not be "read". Click on OK to terminate the program Click on CANCEL to debug the program --------------------------- OK Cancel --------------------------- Reproduce code: --------------- a.php: <?php virtual(/b.php);?> <?php header('Location: http://server.com/c.php');?> b.php: <?php ?> c.php: <?php phpinfo(); ?> Expected result: ---------------- When doing this I just expect to be redirected to the c.php. Actual result: -------------- 1. Windows XP and Apache/1.3.33(Win32): --------------------------- Apache.exe - Application Error --------------------------- The instruction at "0x008736ac" referenced memory at "0x0001ee6c". The memory could not be "read". Click on OK to terminate the program Click on CANCEL to debug the program --------------------------- OK Cancel --------------------------- The php.ini differences with php.ini-dist: short_open_tag = Off output_buffering = 65535 output_handler = ob_gzhandler allow_call_time_pass_reference = Off memory_limit = 100M error_reporting = E_ALL log_errors = On error_log = errors_php register_long_arrays = Off register_argc_argv = Off 2.Linux Fedora RC 4, Apache 2.0.54: The Apache is not crashing anymore but the header() is still not working: Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/a.php:1) in /var/www/html/a.php on line 0 ------------------------------------ The problem I could reproduce on Linux on PHP 4.3.11 as well. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35940&edit=1