我正在尝试安装 mcrypt 以在我的本地机器开发环境中使用。我需要这个来安装 Magento。

我将此答案用于 install mcrypt ,但出现以下错误:

$ brew link mcrypt
Linking /usr/local/Cellar/mcrypt/2.5.8... Warning: Could not link mcrypt. Unlinking...

Error: Could not symlink file: /usr/local/Cellar/mcrypt/2.5.8/include/mutils/mcrypt.h
Target /usr/local/include/mutils/mcrypt.h already exists. You may need to delete it.
To force the link and delete this file, do:
  brew link --overwrite formula_name

To list all files that would be deleted:
  brew link --overwrite --dry-run formula_name

尝试按照不允许的建议覆盖链接。
$ brew link --overwrite mcrypt
Linking /usr/local/Cellar/mcrypt/2.5.8... Warning: Could not link mcrypt. Unlinking...

Error: Permission denied - /usr/local/include/mutils/mcrypt.h

在此命令前加上“sudo”并不能解决这个问题,因为这也是不允许的。

运行 php -m 不会将 mcrypt 显示为已安装的模块,还会引发以下错误:
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions/no-debug-non-zts-20100525/mcrypt.so' - dlopen(/usr/lib/php/extensions/no-debug-non-zts-20100525/mcrypt.so, 9): image not found in Unknown on line 0

这一切似乎都与我无法链接这个事实有关,但我似乎无法解决这个问题。有没有人遇到过这个?感谢您的任何帮助,您可以提供。

最佳答案

托马斯,从我上面看到的情况来看,您似乎正在尝试使用 Homebrew 将 mcrypt 包安装到您的 系统 ,但是 mcrypt 已经由另一个包管理系统安装(或者可能会在您的版本中默认安装) OS X — 我跟不上这些事情)

由于 mcrypt 已经安装在您的 *nix 系统上,您需要做的是为 mycrypt 安装 PHP 扩展 ,或者安装一个开箱即用的支持 mcrypt 的 PHP 版本。

我通常的做法是使用 hp-osx.liip.ch 包(它似乎是 Marc Liyanage 的旧 entropy.ch 包的继承者)。这会将 PHP 的独立版本安装为二进制文件,并且应该具有运行 Magento 所需的库。

关于php - 我如何链接 mcrypt?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15979612/

10-13 00:11