Executando o PHP 5.3.3 através do Apache 2.2.15, no Red Hat (kernel 2.6)
Eu tenho um arquivo de teste no diretório raiz chamado test.php:
<?
phpinfo();
?>
Quando eu aponto meu navegador para este arquivo, ele me envia essa fonte não interpretada.
Nenhum erro é mostrado no log e o log de acesso tem uma entrada padrão:
xx.xx.xx.xx - - [29/Nov/2012:10:26:56 -0500] "GET /test.php HTTP/1.1" 200 17 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.91 Safari/537.11"
Meu arquivo de configuração tem as seguintes linhas:
/etc/httpd/conf/httpd.conf
...
Include conf.d/*.conf
...
/etc/httpd/conf.d/php.conf
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
<IfModule worker.c>
LoadModule php5_module modules/libphp5-zts.so
</IfModule>
#
# Cause the PHP interpreter to handle files with a .php extension.
#
AddHandler php5-script .php
AddType text/html .php
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
#
# Uncomment the following line to allow PHP to pretty-print .phps
# files as PHP source code:
#
#AddType application/x-httpd-php-source .phps
Nenhum erro é registrado na inicialização, o que sugere que os módulos estão sendo carregados corretamente.
Tudo isso é uma configuração pronta para uso, então estou realmente surpreso que isso não funcione. Alguma idéia?