--with-xsl

fschuurman

New member
Joined
Aug 27, 2012
Messages
5
I try to add xsl package to the custombuild 1.39.3 version. I have read al posts and chat solutions and tried all of them. Config is now that i have downloaded the xlst-devel package with yum. i see xslt package in custombuild folder (tarred) and in /usr/local/lib.

I have copied configure.php5 (CLI) to ./custom/suphp/configure.php5 and added to the last line --with-xsl. I see when i ./build php n that the startup option is with xsl. But when he is checking states that xsl=no.

I am a bit lost now what i am missing. I have some experience with linux since early versions and now normally where to copy past knownledge from the internet.

Any assistance would be appriciated and shared with the commmunity.

Thank you
 
Hello

custombuild 1.39.3

I guess, it's Directadmin version, but not custombuild
Are you sure you are using suPHP (PHP as CGI)?

Code:
grep ^php5 /usr/local/directadmin/custombuild/options.conf

or run

Code:
cd /usr/local/directadmin/custombuild/
./build options

And what is your /usr/local/directadmin/custombuild/custom/suphp/configure.php5
looking like?

Code:
cat /usr/local/directadmin/custombuild/custom/suphp/configure.php5


Note, we would require the output of these commands to see if you want more help from us.
 
Hi, thanks for getting back to me.

I guess, it's Directadmin version, but not custombuild
Are you sure you are using suPHP (PHP as CGI)?

It is custombuild version 1.1.39

And what is your /usr/local/directadmin/custombuild/custom/suphp/configure.php5
looking like?

configure.php5 file

Code:
 # /bin/sh
"./configure" \
"--prefix=/usr/local/php5" \
"--enable-force-cgi-redirect" \
"--enable-fastcgi" \
"--with-config-file-path=/usr/local/etc/php5/cgi" \
"--with-curl=/usr/local/lib" \
"--with-gd" \
"--with-gettext" \
"--with-jpeg-dir=/usr/local/lib" \
"--with-freetype-dir=/usr/local/lib" \
"--with-kerberos" \
"--with-openssl" \
"--with-mcrypt" \
"--with-mhash" \
"--with-mysql" \
"--with-mysqli" \
"--with-pcre-regex=/usr/local" \
"--with-pdo-mysql" \
"--with-pear" \
"--with-png-dir=/usr/local/lib" \
"--with-zlib" \
"--with-zlib-dir=/usr/local/lib" \
"--enable-zip" \
"--enable-gd-native-ttf" \
"--with-iconv=/usr/local" \
"--enable-bcmath" \
"--enable-calendar" \
"--enable-ftp" \
"--enable-magic-quotes" \
"--enable-sockets" \
"--enable-mbstring" \
"--with-xsl=/usr/local/lib"

I tried it different way's, with just /usr, with xslt and so on.

Frank
 
So if you use php5_cli=yes why do you modify /usr/local/directadmin/custombuild/custom/suphp/configure.php5, which is used only for PHP_CGI?

You should do that for /usr/local/directadmin/custombuild/custom/ap2/configure.php5
 
So if you use php5_cli=yes why do you modify /usr/local/directadmin/custombuild/custom/suphp/configure.php5, which is used only for PHP_CGI?

Because i do not understand a rats ass of it :)

You should do that for /usr/local/directadmin/custombuild/custom/ap2/configure.php5

Ok, great. I will modify this one and rebuild it. I will get back to here with the results.....

Frank
 
So if you use php5_cli=yes why do you modify /usr/local/directadmin/custombuild/custom/suphp/configure.php5, which is used only for PHP_CGI?

You should do that for /usr/local/directadmin/custombuild/custom/ap2/configure.php5

Applauding to you. XSL added.

Thanks!
 
Back
Top