I am using remi's php repositories to use php5.6 in parallel with php 7, and so my apache config file /etc/httpd/conf.modules.d/10-php56-php.conf
is like so:
<IfModule prefork.c> LoadModule php5_module modules/libphp56-php5.so </IfModule>
However my main php config (/etc/httpd/conf.d/php56-php.conf
) looks for the apache module as follows:
... <IfModule mod_php5.c> ...
So which is it? Do I have to change that IFModule to php5_module
? How do I know my loaded module php5_module
corresponds to mod_php5.c
?