如何在xampp中启用zip.dll

时间:2014-05-09 12:01:05

标签: php xampp

你好我使用xampp for windows。 我想跑:

https://github.com/johmue/mysql-workbench-schema-exporter

导出我的架构。

我在mysql workbench中创建我的架构并保存它。仍然当我运行程序时,我得到错误。

  

可能不是MySQL Workbench文档

要修复它需要在xampp上启用zip模块。我知道我必须编辑php.ini,但我找不到zip.dll,所以我想知道如何启用它。

2 个答案:

答案 0 :(得分:6)

启用zip.dll

  • here
  • 下载php_zip.dll
  • 将php_zip.dll解压缩到C:\xampp\php\ext
  • 编辑php.ini并添加新行extension=php_zip.dll
  • 重启apache

这应该为您启用zip模块。

答案 1 :(得分:1)

@Guns的回答很好,但到目前为止有点过时了,他提供的链接很旧。对于最新版本的PHP,您应该转到https://pecl.php.net/package/zip,然后单击最新版本。

enter image description here

在那之后,@ Guns的步骤完全相同:

  1. php_zip.dll提取到C:\xampp\php\ext(如果在那里安装了XAMPP)
  2. 编辑php.ini并添加新行extension=php_zip.dll
  3. 重新启动Apache