The compile and install seemed to go smoothly, but apache just doesn't seem to want to parse php files.
Here is an example cli transaction that shows my problem. As you can see, in stead of processing the php, it simply spits it out. In a browser, it prompts me to save the file:
----Begin example---
$ telnet localhost 80 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET /test.php HTTP/1.0 Host: localhost
HTTP/1.1 200 OK Date: Tue, 13 Jan 2004 18:28:58 GMT Server: Apache/1.3.27 Ben-SSL/1.48 (Unix) PHP/4.3.4 mod_perl/1.28 Last-Modified: Mon, 12 Jan 2004 21:18:40 GMT ETag: "30948-14-40030f30" Accept-Ranges: bytes Content-Length: 20 Connection: close Content-Type: application/x-httpd-php
<?php phpinfo(); ?> Connection closed by foreign host.
---End example---
Any advice would be appreciated.
TIA,
__Jason