então isso parece um problema com o Apache na minha opinião. Você está carregando o PHP no seu arquivo httpd.com? Eu sugiro que as seguintes configurações estejam presentes ..
LoadModule php5_module modules/libphp5.so
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.ph(p[2-6]?|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
RewriteEngine On
RewriteRule (.*\.php)s$ $1 [H=application/x-httpd-php-source]
Depois, certifique-se de reiniciar o Apache. Espero que ajude.