I'm on centos 7 and have the httpd
service (2.4.6) installed from yum no problems and I had to install PHP from a different repo remi
to get php 5.6 installed.
PHP works on the command line and the httpd service is running but all php is not being executed, there are no errors in any logs, and the below php.conf exists.
AddHandler php5-script .php
AddType text/html .php
<IfModule mod_php5.c>
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
</IfModule>
I've been at this hours now going around in circles and just can't seem to see where the disconnect between apache and php is, any help greatly appreciated.