xmlrpc-php install

dtech

New member
Joined
Feb 15, 2009
Messages
3
Hi,

i want to install xmlrpc-php.
Apache does not work.
How do i setup ?
My operating system CentOS 5.2
php 5 and apache 2.2 is installed.
 
I presume you used custombuild to install apache and php? If so, due to the fact that you compiled php from source, you need to rebuild it after adding --with-xmlrpc to the list of configuration arguments.
This is the place to add it;
/usr/local/directadmin/custombuild/configure/ap2/configure.php5

After that run ./build php inside the custombuild DIR.

Hope this works for you.
 
Last edited:
I presume you used custombuild to install apache and php? If so, due to the fact that you compiled php from source, you need to rebuild it after adding --with-xmlrpc to the list of configuration arguments.
This is the place to add it;
/usr/local/directadmin/custombuild/configure/ap2/configure.php5

After that run ./build php inside the custombuild DIR.

Hope this works for you.

was useful.
thanks.
 
for all others arriving to this post:

little point of attention :

if you make the change in
/usr/local/directadmin/custombuild/configure/ap2/configure.php5
it will get overwritten during next directadmin "./build update"

you may want to use this procedure:
http://help.directadmin.com/item.php?id=252

Code:
cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5
#add your --with-module line to the end of the custom/ap2/configure.php5 file,
# and make sure the \ character exists at the end of all lines except the last one.
./build php n


L
 
Back
Top