Fixing httpd: [warn] module php5_module is already loaded, skipping

I have a CentOS webserver with the Apache and PHP installed on it and it works perfectly but when I restart the Apache service, I get this error:

[warn] module php5_module is already loaded, skipping

To solve this problem, I have to verify this module load call in two files and need to remove/comment from one of these file.

First, I need to check Apache main file:

sudo nano /etc/httpd/conf/httpd.conf

Yes, the module load call exist in this file:

LoadModule php5_module /usr/lib64/httpd/modules/libphp5.so

Also check the php.conf file:

sudo nano /etc/httpd/conf.d/php.conf 

Yes, module load call also exist here, so to fix this warning, we’ll comment/remove the module load call here:

#LoadModule php5_module modules/libphp5.so

Restart the httpd service:

sudo service httpd restart

This time, it didn’t display the warning!

Hope this will help you!

Please Remember me in your prayers!

Enjoy 🙂

2 responses to “Fixing httpd: [warn] module php5_module is already loaded, skipping

  1. raul March 11, 2015 at 11:40 pm

    Bueno, gracias me sirvio

Leave a comment