How-to php extensions (iconv)

itactician

Verified User
Joined
Nov 11, 2006
Messages
11
How-to php extensions
How can y build custom php extensions, not included in default DA install ?

I need
* iconv

Thanks!
 
1, edit /usr/local/directadmin/customapache/configure.php

and add

Code:
--with-iconv \

over

Code:
--with-apxs \


So the first few lines of your configure.php will look like

Code:
#!/bin/sh
./configure \
        --with-iconv \
        --with-apxs \


2, recompile php

./build clean
./build php n
 
Back
Top