简体   繁体   中英

Can't install PHPExcel

I'm trying to install the PHPExcel library on an Ubuntu server. I executed the following commands in the command line:

pear channel-discover pear.pearplex.net
pear install pearplex/PHPExcel

The channel was install but the 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 did a safe-upgrade:

aptitude safe-upgrade

and when I check PHP, I see this (Zip version 2.0.0): 在此输入图像描述

Any ideas?

Use

$ php -m

to see if the zip extension is there on command line. Then use

$ php --ini

to find the location of your php.ini file and fix it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM