php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #2844 Minor bug with make install and httpd.conf
Submitted: 1999-11-27 13:11 UTC Modified: 1999-11-27 13:38 UTC
From: yzhang at sfu dot ca Assigned:
Status: Closed Package: Installation problem
PHP Version: 4.0 Beta 3 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: yzhang at sfu dot ca
New email:
PHP Version: OS:

 

 [1999-11-27 13:11 UTC] yzhang at sfu dot ca
When you do a make install, the script will try to put

LoadModule php4_module        lib/apache/libphp4.so

at the end of the LoadModules directives in httpd.conf.  In my case, the last LoadModule was inside a <IfDefine> block, so the LoadModule php4_module line got added into the <IfDefine> block.

eg.

<IfDefine SSL>
LoadModule ssl_module         lib/apache/libssl.so
LoadModule php4_module        lib/apache/libphp4.so
</IfDefine>

when it really should be:

<IfDefine SSL>
LoadModule ssl_module         lib/apache/libssl.so
</IfDefine>
LoadModule php4_module        lib/apache/libphp4.so

Same thing with the AddModule directive.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-11-27 13:38 UTC] rasmus at cvs dot php dot net
This is not a PHP bug.  The apxs script which is part of the Apache distribution is responsible for doing this, so if you wish to report this as a bug, report it to the Apache team.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 27 14:01:30 2024 UTC