Manual changes need with new version of LibXML2

@Mitch, maybe you need the new libxml2? I do not have any problem with the newest version. Try to set new_xml2=yes in options.conf and then:

Code:
./build update
./build libxml2
./build libxslt
ldconfig
./build php n

When you are done and everything is working (using zlib 1.2.3), then make sure to set zlib=no and new_zlib=no in options.conf (the new default for Directadmin installs is to let the OS manage zlib, and not custombuild).
 
@Mitch, maybe you need the new libxml2? I do not have any problem with the newest version. Try to set new_xml2=yes in options.conf and then:

Code:
./build update
./build libxml2
./build libxslt
ldconfig
./build php n

When you are done and everything is working (using zlib 1.2.3), then make sure to set zlib=no and new_zlib=no in options.conf (the new default for Directadmin installs is to let the OS manage zlib, and not custombuild).

You just need to also make sure that your ld.so.conf file includes /usr/local/lib :

Code:
[root@sv ~]# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/local/lib
 
Back
Top