php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16311 php.ini-dist and php.ini-recommended missing extensions
Submitted: 2002-03-27 10:12 UTC Modified: 2002-07-05 14:22 UTC
Votes:3
Avg. Score:2.3 ± 0.9
Reproduced:2 of 2 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: chrismcc+php at pricegrabber dot com Assigned:
Status: No Feedback Package: *Configuration Issues
PHP Version: 4.1.2 OS: linux
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: chrismcc+php at pricegrabber dot com
New email:
PHP Version: OS:

 

 [2002-03-27 10:12 UTC] chrismcc+php at pricegrabber dot com
the php.ini-dist and php.ini-recommended files are missing extensions (version 4.1.2 and 4.2.0RC1)

;extension=php_curl.dll , etc.

there also is no mention of the UNIX style extansions

;extension=curl.so 

RedHat has generally patched the php.ini to do this.  At least for me, this makes managing a server farm _much_ easier.

these can easily be generated thus:
[chrismcc@philippe ext]$ for EXT in $(ls|grep -v 'ext_skel\|Makefile.in') ; do echo ";extension=${EXT}.so" ;done
;extension=aspell.so
;extension=bcmath.so
;extension=bz2.so
;extension=calendar.so
;extension=ccvs.so
;extension=com.so
;extension=cpdf.so
;extension=crack.so

and
[chrismcc@philippe ext]$ for EXT in $(ls|grep -v 'ext_skel\|Makefile.in') ; do echo ";extension=php_${EXT}.dll" ;done
;extension=php_aspell.dll
;extension=php_bcmath.dll
;extension=php_bz2.dll
;extension=php_calendar.dll
;extension=php_ccvs.dll
;extension=php_com.dll
;extension=php_cpdf.dll
;extension=php_crack.dll

Is there a way to upload patches?


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-03-27 13:03 UTC] derick@php.net
It would be nice if you could make a list of the missing ones. If you send that list to phpdoc@lists.php.net, somebody will commit it to CVS.

Derick
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Jul 02 14:01:36 2025 UTC