Discussion about CustomBuild

re: libxslt

In your build file, it references 1.1.22 on DA's server. Only problem is that 1.1.20 is the latest one there. I just changed the version and the build file completes.
 
Hi, thank you for the report. It will be uploaded soon. For now just do:
Code:
cd /usr/local/directadmin/custombuild
wget http://fresh.t-systems-sfr.com/fresh/unix/privat/libxslt-1.1.22.tar.gz
 
Hi, thank you for the report. It will be uploaded soon. For now just do:
Code:
cd /usr/local/directadmin/custombuild
wget http://fresh.t-systems-sfr.com/fresh/unix/privat/libxslt-1.1.22.tar.gz

Any idea on the .custombuild problem when doing ./build apache?
 
Hello,

Doing the wget smtalk mentioned will actually save the new file as:

libxslt-1.1.22.tar.gz.1

because wget won't overwrite another file unless you tell it to.

The error doesn't say the file is missing, it says the file is corrupted or empty, so to fix it, delete the file and then download it again.
Code:
cd /usr/local/directadmin/custombuild
rm -f libxslt-1.1.22.tar.gz
./build update_data
John
 
Thanks smtalk.

In relation to fastcgi.... I'm a little confused. I was under the impression you needed to run a fastcgi server... much like what's documented here.

However, I've searched the system but cannot find the suexec-fcgi binary. :confused:

Code:
find / -name suexec-fcgi -ls
returns nothing.

My options file looks like such:

Code:
#PHP settings. default_php possible values - 4 or 5
default_php=5
php4_cli=no
php4_cgi=no
php5_cli=no
php5_cgi=yes
zend=yes
...
#Possible values - 1.3, 2.0 or 2.2
apache_ver=2.2
Am I missing something there? :confused:

Whilst I can see I'm compiling PHP in fastcgi mode... I am under the impression that Apache 2.2 also needs to have the mod_fastcgi module compiled in.

I'm only seeing a mod_cgi.c module. As such I'm thinking this is running in cgi mode and not mod_fastcgi.

Would this be correct?!

You don't need to run mod_fcgid module if you want to run PHP as CGI. If you want PHP to be served via FastCGI, Apache must be compiled with mod_fcgid support
 
Need to upgrade php client API to version 5.x too

I used this script on my VPS with Directadmin for upgrading the MySQL and php versions to 5.x. Anyway I haven't managed to upgrade the PHP/MySQL client as you can see in this URL http://epsilon.vohosting.com/phpinfo.php

I have a reseller hosting account (with another company) and my provider has managed to install php5+MySQL5, as you can see in this URL http://pi.vohosting.com/_phpinfo.php

As you can see there, they do managed to upgrade the version of the PHP/MySQL client to 5.x, just what I want to do in my VPS, but I can't... .

Any ideas on how can I finish this upgrade process? I have been told that it is not completely necessary... but I am not sure.
 
Problem about squirrelmail:

[root@host custombuild]# ./build squirrelmail

gzip: stdin: unexpected end of file
/bin/tar: Child returned status 1
/bin/tar: Error exit delayed from previous errors
cp: `/var/www/html/squirrelmail/data' and `/var/www/html/squirrelmail-1.4.13/data' are the same file
 
Try:
Code:
cd /usr/local/directadmin/custombuild
rm -f /usr/local/directadmin/scripts/packages/squirrelmail-1.4.13.tar.gz
./build squirrelmail
 
thanks but still same :

[root@host ~]# cd /usr/local/directadmin/custombuild
[root@host custombuild]# rm -f /usr/local/directadmin/scripts/packages/squirrelmail-1.4.13.tar.gz
[root@host custombuild]# ./build squirrelmail

gzip: stdin: unexpected end of file
/bin/tar: Child returned status 1
/bin/tar: Error exit delayed from previous errors
cp: `/var/www/html/squirrelmail/data' and `/var/www/html/squirrelmail-1.4.13/data' are the same file
[root@host custombuild]#
 
Hello.

Try to run custombuild 1.1 on a new server clean server....
Run "./build all d". When program come to "./build libxslt" i received this error:

./build libxslt checking for libxml libraries >= 2.6.27... configure: error: Could not find libxml2 anywhere, check ftp://xmlsoft.org/. :confused:

custombuild 1.2 give the same error...but libxml2 are installed (2.6.30). I have run "./build libxml2" separately
 
Last edited:
Hello.

Try to run custombuild 1.1 on a new server clean server....
Run "./build all d". When program come to "./build libxslt" i received this error:

./build libxslt checking for libxml libraries >= 2.6.27... configure: error: Could not find libxml2 anywhere, check ftp://xmlsoft.org/. :confused:


I use Centos , that was here

/usr/lib/libxml2.a /usr/lib/libxml2.so /usr/include/libxml2
 
Hello.

Try to run custombuild 1.1 on a new server clean server....
Run "./build all d". When program come to "./build libxslt" i received this error:

./build libxslt checking for libxml libraries >= 2.6.27... configure: error: Could not find libxml2 anywhere, check ftp://xmlsoft.org/. :confused:

custombuild 1.2 give the same error...but libxml2 are installed (2.6.30). I have run "./build libxml2" separately

Try to run ldconfig.
 
After updating apache 2.2 does not start :(

Starting httpd: httpd: Syntax error on line 67 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/mod_frontpage.so into server: /usr/lib/apache/mod_frontpage.so: undefined symbol: apr_filename_of_pathname
 
After updating apache 2.2 does not start :(

Starting httpd: httpd: Syntax error on line 67 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/mod_frontpage.so into server: /usr/lib/apache/mod_frontpage.so: undefined symbol: apr_filename_of_pathname

Code:
./build rewrite_confs
 
Back
Top