els --vps {some warning}

ben29

Verified User
Joined
Jul 20, 2006
Messages
449
Location
Israel
hi
i install now the els --vps
and i saw 2 warnings

Code:
Warning: prerequisite DBD::mysql 1 not found.
Warning: prerequisite Term::ReadKey 2.1 not found.
and i got more problem
i install php 5
but the codes on php4 does'nt work
i install apache 2.2.10
how i fix that?
thanks
 
perl -MCPAN -e 'install DBD::mysql'
perl -MCPAN -e 'install Term::ReadKey'
 
perl -MCPAN -e 'install DBD::mysql'
perl -MCPAN -e 'install Term::ReadKey'
when i do the secend command
[
Code:
root@server ~]# perl -MCPAN -e 'install Term::ReadKey'
Can't locate object method "install" via package "Term::ReadKey" at -e line 1.
 
Try:

Code:
mkdir /usr/local/src
cd /usr/local/src
wget http://search.cpan.org/CPAN/authors/id/J/JS/JSTOWE/TermReadKey-2.30.tar.gz
tar xvfz TermReadKey-2.30.tar.gz
cd TermReadKey-2.30
perl Makefile.PL
make install
 
Back
Top