I run php4.4.0 on Apache 2.0.49 as CGI module ,and use php_java.dll,
the test file hello.php like this:
<html>
<body>
<?php
$hello = new Java("hello");
?>
</body>
</html>
and the hello class is:
import java.io.*;
public class hello {
public hello(){
System.out.println("hello,world!");
}
}
when I run it, The server encountered an 550 internal error ,the error log show that:
[client 127.0.0.1] malformed header from script. Bad header=hello,world!: php.exe
how to do with this error as do not modify the hello class?