Installing Dolphine (XsltProcessor)

Starteck2002

Verified User
Joined
Apr 17, 2008
Messages
8
Hi, I am trying to install Dolpin on a DA server and get the following error:

XsltProcessor is Off, you should install XsltProcessor
Please go to the
Dolphin Troubleshooter
and solve the problem.

Anyone know how to get this to install? Better still, anyone know where i can find a complete DirectAdmin guide to installing Dolphin ;-)
 
ya... so do i... maybe some expert can guide regarding this...

I've found a site which suggest this, but i still getting error...
Code:
OS CentOS
yum install libxml2-devel libxslt-devel libgcrypt-devel

OS Debian
1.aptitude install libxslt1.1 libxslt1-dev libgcrypt11-dev libxml2 libxml2-dev

Edit config for Custombuild DirectAdmin
1.cd /usr/local/directadmin/custombuild
2.vi configure/ap2/configure.php5

Add below
1. --with-dom=/usr/lib \
2. --with-dom-exslt=/usr/lib \
3. --with-dom-xslt=/usr/lib \
4. --with-xsl

or

1. --with-dom=/usr/local/lib \
2. --with-dom-exslt=/usr/local/lib \
3. --with-dom-xslt=/usr/local/lib \
4. --with-xsl

Save and Compile Custombuild

1. ./build clean
2. ./build php n

Restart Apache service CentOS

1. /etc/init.d/httpd restart

end.

Source from http://www.taxze.com/d/xsltprocessor
 
The last lines that I get are:

Code:
/usr/local/lib/libexslt.so: undefined reference to `xmlXPathPopBoolean@LIBXML2_2                                              .4.30'
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] Error 1

And stop working all pages.
 
is:

Delete ";" in php.ini
;extension=php_xmlrpc.dll
;extension=php_xsl.dll

add in configure.php5
"--enable-xslt" \
"--with-xslt-sablot" \
"--with-xsl"

Save and Compile Custombuild

1. ./build clean
2. ./build php n
 
Back
Top