PHP報錯 ZipArchive library is not enabled

來源:互聯網
上載者:User

使用PHPExcel類讀取Excel2007時出現'ZipArchivelibraryisnotenabled解決方案

詳細錯誤資訊:

Fatalerror:Uncaughtexception'Exception'withmessage'ZipArchive
libraryisnotenabled'in

是由於缺少PHP的zip模組導致,收到安裝即可。

windows下:

解決方案:

在php.ini檔案中開啟extension=php_zip.dll這個即可。

Linux下:

在Linux下沒有php_zip.dll這個檔案,所以需要重新編譯一下php的zip模組。

wgethttp://pecl.php.net/get/zip預設會線上下載最新版本的)

tarzxvfzip-1.x.x.tgz

cdzip-1.x.x

/usr/bin/phpize對應的phpize路徑find/-namephpize出來結果/usr/bin/phpize)

./configure--with-php-config=/usr/bin/php-config對應的php-config路徑)

make

makeinstall

如果在make過程包supportrequiresZLIB.Use--with-zlib-dir=<DIR>tospecifypre錯誤,請安裝依賴包

yuminstallzlib-devel

2、查看產生的模組路徑安裝完之後,螢幕上會提示zip.so的位置):

cd/usr/lib/php/modules/對應的extensions路徑/usr/lib/php/modules/)

3、修改php.ini

增加extension=zip.so或在/etc/php.d/目錄下建立zip.ini檔案,輸入extension=zip.so

然後同樣在php.ini檔案中,將zlib.output_compression=Off改為zlib.output_compression=On;

4、最後再重啟一下Apache:./apachectlrestart;

本文出自 “itdept” 部落格,請務必保留此出處http://itdept.blog.51cto.com/1034307/1297135

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.