./build zend errors

afranco

New member
Joined
Jan 11, 2005
Messages
2
I login to as root and did the following

cd /usr/local/directadmin/customapache
./build update
./build clean
./build zend

errors as follows:

[root@server customapache]# ./build zend
File already exists: .tar.gz

gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error exit delayed from previous errors

Location of php.ini:
/usr/local/lib
Press return to continue...

./build: line 1579: ./install.sh: No such file or directory
[root@server customapache]#

What's wrong?

This is just the first of the other 3 things I am trying to get up and running.

The next is "CURL is not compiled into the PHP installation" what should I do?

Finally I am reading the DBD::Mysql from Knowledgebase.... hope I can solve it.

Would really appreciate it if someone can tell me what I'm doing wrong.?
 
Try removing all directories related to zend and then try again.

From: http://directadmin.com/forum/showthread.php?s=&threadid=3938&highlight=curl
run
curl -V
the output should look similar to this:
curl 7.11.0 (i686-pc-linux-gnu) libcurl/7.11.0 OpenSSL/0.9.7a ipv6 zlib/1.1.4
Protocols: ftp gopher telnet dict ldap http file https ftps
Features: IPv6 SSL libz NTLM

If you do not see libcurl and a version, run these commands.

cd /usr/local/directadmin/customapache/curl-7.11.0
CPPFLAGS="-I/usr/kerberos/include" LDFLAGS="-L/usr/kerberos/lib" ./configure --with-ssl
make
make install
/usr/local/etc/rc.d httpd restart

curl -V
curl 7.11.0 (i686-pc-linux-gnu) libcurl/7.11.0 OpenSSL/0.9.7a ipv6 zlib/1.1.4
Protocols: ftp gopher telnet dict ldap http file https ftps
Features: IPv6 SSL libz NTLM

Did that work for you?

MySQL is not a standard perl feature and needs to be installed manually.
http://directadmin.com/forum/showthread.php?s=&threadid=4531&highlight=DBDMySQL
5th Post down.
 
my problem - same..

I have the same problem.. i could not install zend..

run
curl -v and this appears,
Code:
curl 7.13.0 (i386-unknown-freebsd4.11) libcurl/7.13.0 OpenSSL/0.9.7d zlib/1.1.4
Protocols: ftp gopher telnet dict ldap http https ftps
Features: IPv6 Largefile NTLM SSL libz

This is corect right?

What i need to do to instal zend?
 
Back
Top