I built apache, PHP and MySQL on Linux from sources with no apparent errors. However, PHP pages are not being interpretted. Any suggestions?
$ /usr/local/apache/bin/httpd -t
Syntax OK
$ /usr/local/apache/bin/httpd -v
Server version: Apache/2.0.44
Server built: Feb 17 2003 06:55:39
$ /usr/local/apache/bin/httpd -l
Compiled in modules:
core.c
mod_access.c
mod_auth.c
mod_include.c
mod_deflate.c
mod_log_config.c
mod_env.c
mod_mime_magic.c
mod_usertrack.c
mod_setenvif.c
mod_ssl.c
prefork.c
http_core.c
mod_mime.c
mod_status.c
mod_autoindex.c
mod_asis.c
mod_info.c
mod_cgi.c
mod_negotiation.c
mod_dir.c
mod_imap.c
mod_actions.c
mod_speling.c
mod_userdir.c
mod_alias.c
mod_rewrite.c
mod_so.c
$ /usr/local/apache/bin/httpd -V
Server version: Apache/2.0.44
Server built: Feb 17 2003 06:55:39
Server's Module Magic Number: 20020903:0
Architecture: 32-bit
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D HTTPD_ROOT="/usr/local/apache"
-D SUEXEC_BIN="/usr/local/apache/bin/suexec"
-D DEFAULT_PIDLOG="logs/httpd.pid"
-D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
-D DEFAULT_LOCKFILE="logs/accept.lock"
-D DEFAULT_ERRORLOG="logs/error_log"
-D AP_TYPES_CONFIG_FILE="conf/mime.types"
-D SERVER_CONFIG_FILE="conf/httpd.conf"
$ ps -ef |grep httpd
root 1797 1 0 21:35 ? 00:00:00 /usr/local/apache/bin/httpd -k s
nobody 1849 1797 0 21:52 ? 00:00:00 /usr/local/apache/bin/httpd -k s
nobody 1850 1797 0 21:52 ? 00:00:00 /usr/local/apache/bin/httpd -k s
nobody 1851 1797 0 21:52 ? 00:00:00 /usr/local/apache/bin/httpd -k s
nobody 1852 1797 0 21:52 ? 00:00:00 /usr/local/apache/bin/httpd -k s
nobody 1853 1797 0 21:52 ? 00:00:00 /usr/local/apache/bin/httpd -k s
root 1873 1756 0 21:57 pts/0 00:00:00 grep httpd
$ telnet localhost 80
Trying 127.0.0.1...
Connected to localhost.localdomain.
Escape character is ']'.
HEAD / HTTP/1.0
HTTP/1.1 200 OK
Date: Wed, 19 Feb 2003 03:58:21 GMT
Server: Apache/2.0.44 (Unix) mod_ssl/2.0.44 OpenSSL/0.9.6 PHP/4.3.0
Content-Location: index.html.en
Vary: negotiate,accept-language,accept-charset
TCN: choice
Last-Modified: Fri, 04 May 2001 00:01:18 GMT
ETag: "141cc2-5b0-40446f80;141cde-945-a61467c0"
Accept-Ranges: bytes
Content-Length: 1456
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Language: en
Expires: Wed, 19 Feb 2003 03:58:21 GMT
Connection closed by foreign host.
Regards,
Tim
tkeith@gvtc.com