php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #9756 Module activation line in wrong place with ssl
Submitted: 2001-03-14 14:33 UTC Modified: 2001-03-15 21:51 UTC
From: mrobinso@php.net Assigned:
Status: Closed Package: Installation problem
PHP Version: 4.0.4pl1 OS: Redhat6.1 / Redhat7.0
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mrobinso@php.net
New email:
PHP Version: OS:

 

 [2001-03-14 14:33 UTC] mrobinso@php.net
When executing 'make install', php4 activates the
php module by adding 2 lines to httpd.conf.

If I have SSL installed, then php4 activates itself
by adding the lines thus:

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

...and...

<IfDefine SSL>
AddModule mod_ssl.c   
AddModule mod_php4.c
</IfDefine>

Starting apache without ssl excludes the php module.

Apache is 1.3.19, but I think it happens with 1.3.14
and 1.3.17 as well.





Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-03-14 17:25 UTC] wez@php.net
I also find this problem using SuSE 7.0 (apache 1.3.12), BUT I think this is a problem with apxs and not the PHP installer.
A quick grep for the word "activating" through the PHP tree reveals that it is not PHP which does the activating.

 [2001-03-15 21:51 UTC] sniper@php.net
Not PHP problem. It seem like the apxs tool just
finds the last LoadModule / AddModule entries
and adds the new module after them.

Still, this is not a bug in PHP but in apxs.

--Jani

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed May 07 22:01:27 2025 UTC