Search found 3 matches

by mr_coko
Wed Jun 12, 2013 8:03 pm
Forum: PHP Help and Discussion
Topic: PHP update failed!
Replies: 7
Views: 12682

Re: PHP update failed!

Yes, the problem is that the Atomic RPM places a broken /etc/httpd/conf.d/php.conf. Simply add the following lines in the top of that file: <IfModule prefork.c> LoadModule php5_module modules/libphp5.so </IfModule> <IfModule worker.c> LoadModule php5_module modules/libphp5-zts.so </IfModule> and res...
by mr_coko
Wed Jun 12, 2013 7:56 pm
Forum: PHP Help and Discussion
Topic: PHP 5.3.26 and PHP 5.4.16
Replies: 12
Views: 18764

Re: PHP 5.3.26 and PHP 5.4.16

The current PHP 5.3.26 update breaks Apache PHP integration, as the included file /etc/httpd/conf.d/php.conf seems to miss LoadModule directives...
by mr_coko
Wed Jun 12, 2013 7:46 pm
Forum: General Help and Development Discussion
Topic: yum update from atomic repo breaks php leaving server down
Replies: 2
Views: 7227

Re: yum update from atomic repo breaks php leaving server do

Hi, the update breaks the file /etc/httpd/conf/php.conf removing lines like: <IfModule prefork.c> LoadModule php5_module modules/libphp5.so </IfModule> <IfModule worker.c> LoadModule php5_module modules/libphp5-zts.so </IfModule> which are needed to load the PHP module for Apache. For me it solved t...