ID:               15152
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Bogus
 Bug Type:         Documentation problem
 Operating System: Linux 2.4.2-2 RedHat 7.1
 PHP Version:      4.1.1
 New Comment:

Sorry, but the bug system is not the appropriate forum for asking
support questions. Your problem does not imply a bug in PHP itself.
For a list of more appropriate places to ask for help using PHP,
please visit http://www.php.net/support.php

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------

[2002-01-22 14:20:45] [EMAIL PROTECTED]

Reclassified as a documentation problem.

------------------------------------------------------------------------

[2002-01-21 16:14:15] [EMAIL PROTECTED]

I just had a revelation regarding this issue.  I realized that the
problem might be coming from the fact that I have 'output_handler =
ob_gzhandler' in my php.ini file.

I disabled this compressed output handler and it seems to have solved
the problem!

I'm leaving this bug's status in your hands because this might be
useful information to somebody else out there using the ob_gzhandler
output handler (maybe for the documenation).  This is probably a
Netscape compression handling issue?

Thanks.

Adam Taft
[EMAIL PROTECTED]


------------------------------------------------------------------------

[2002-01-21 15:18:47] [EMAIL PROTECTED]

I'm calling a PHP CGI script through Apache's mod_include SSI
directives.  When using Internet Explorer, the output of the PHP script
is just fine.  However, when using Netscape (4.x and 6.x), I just see
garbage as output (similar to what you would see if you were viewing a
website in a language that your browser didn't support).

I was thinking this was an Apache related problem, but then I decided
to try to include a bash shell script cgi using SSI.  This worked just
fine for both browsers which leads me to believe that it's a PHP
specific problem.  Here's the scripts that I'm using:

-- ssi.shtml --

<!--#include virtual="bash-ssi.cgi" -->
<br>
<!--#include virtual="php-ssi.cgi" -->


-- bash-ssi.cgi --

#!/bin/bash
echo "X-Powered-By: PHP/4.1.1"
echo "Content-type: text/html"
echo
echo "This is a test string from a Bash Shell CGI script"


-- php-ssi.cgi --

#!/usr/local/bin/php
<?php
  echo "This is a test string from a PHP CGI script.\n";
?>


Here is the output from the browsers:

-- Internet Explorer --

This is a test string from a Bash Shell CGI script 
This is a test string from a PHP CGI script. 


-- Netscape --

This is a test string from a Bash Shell CGI script 
��-


I'm sorry I can't test this on any other systems.  This is the only one
I have access to right now.  Thanks for the help.

Adam Taft
[EMAIL PROTECTED]



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=15152&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to