ID: 13729
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Duplicate
Old Bug Type: *Web Server problem
Bug Type: *General Issues
Operating System: Any
PHP Version: 4.0.6
New Comment:
Duplicate of #9041
Previous Comments:
------------------------------------------------------------------------
[2001-10-18 05:00:29] [EMAIL PROTECTED]
When running PHP either as a CGI or through mod_php,
including the #! line causes it to be included in the
output. When running as CGI this trips up the browser, when
running through mod_php it just appears as an additional
part of the display HTML document.
The check is in the source code, but it's ignored. The
patch to fix is:
*** sapi/cgi/cgi_main.c Thu Oct 18 07:01:34 2001
--- sapi/cgi/cgi_main.c.orig Thu Oct 18 06:19:44 2001
***************
*** 699,706 ****
return FAILURE;
}
file_handle.filename = argv0;
! }
! if (file_handle.handle.fp &&
file_handle.handle.fp!=stdin) {
/* #!php support */
c = fgetc(file_handle.handle.fp);
if (c == '#') {
--- 699,705 ----
return FAILURE;
}
file_handle.filename = argv0;
! } else if (file_handle.handle.fp &&
file_handle.handle.fp!=stdin)
{
/* #!php support */
c = fgetc(file_handle.handle.fp);
if (c == '#') {
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=13729&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]