I am trying to install the PHPExcel library on an Ubuntu server. I executed the following commands on the command line:
pear channel-discover pear.pearplex.net
pear install pearplex/PHPExcel
The channel was installed, but instakll generates an error:
pearplex/PHPExcel requires PHP extension "zip" (version >= 1.8.0), installed version is 1.4.0
No valid packages found
install failed
Then I made a safe update:
aptitude safe-upgrade
and when I check PHP, I see this (Zip version 2.0.0):

Any ideas?
source
share