update to php 5.4.15 and now httpd wont start

comnfo

Verified User
Joined
Aug 22, 2011
Messages
9
Hi All,

My config. custombuild 2 apache 2.4.4

I updated to php 5.4.15 from 5.4.14 and now httpd will not start. I get this error after ./build update_versions


Stopping httpd: [FAILED]
Starting httpd: AH00526: Syntax error on line 18 of /etc/httpd/conf/extra/httpd-hostname.conf:
Wrapper .php cannot be accessed: (2)No such file or directory


I already tried:

./build update
./build apache
./build php n
./build rewrite_confs

and also:

./build update
./build all d

Advise? Thanks.
 
Last edited:
This issue was noticed and fixed in latest version of the CustomBuild script. You should try the following again:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build rewrite_confs

Thank you for the report.
 
this may still be an issue as it just happened to me
my error
Starting httpd: [Wed May 22 14:36:28.314163 2013] [so:warn] [pid 8356:tid 140587783219136] AH01574: module fcgid_module is already loaded, skipping
AH00526: Syntax error on line 18 of /etc/httpd/conf/extra/httpd-hostname.conf:
Wrapper .php cannot be accessed: (2)No such file or directory

lines 16 to 22

<IfModule mod_fcgid.c>
AddHandler fcgid-script .php
FcgidWrapper .php
<FilesMatch "\.php$">
Options +ExecCGI
</FilesMatch>
</IfModule>
will retry to make sure I did the build rewrite, got sidetracked so I may have missed it.
I DID do the build update before anything
 
Back
Top