使用WordPress网站健康工具进行测试时,提示没有安装zip模块,于是Google了一下如何安装zip模块,网上很多教程,试了好多都不行,现在把成功的安装方法记录下来,给需要的人,少走弯路。
尝试如下命令中的一个:
sudo apt-get install php-zip
或者
sudo apt-get install php5.6-zip
安装完成后,不要忘记重启Web服务器:
sudo service apache2 restart
或者(如果你使用的是nginx服务器)
sudo service nginx restart
如果你在centos 或者 fedora OS 上安装,你只需要用 yum替换掉上面的 apt-get. 例如:
sudo yum install php-zip
或者
sudo yum install php5.6-zip
然后重启Web服务器
sudo service httpd restart