List of php custom modules in custombuild

Or just the ones DirectAdmin can instal?
This,

Code:
        --with-zlib \
        --enable-json \
        --enable-zip \
        --without-libzip \
        --with-iconv=/usr/local \
        --enable-bcmath \

Also why with / enable etc i have never been good at compiling from source so I am happy CS does it for me but a list of the switches would be nice.,
 
On a fresh system type

Code:
php -m

This will list all the installed php modules on the system.

standard php list here and docs

 
On a fresh system type

Code:
php -m

This will list all the installed php modules on the system.

standard php list here and docs

This pointed me into the right direction.

The options are the ./configure --help list (I rarely compile so i din't recognise it.)
 
Back
Top