在 Mac OS X 10.5.8 上安装 PHP 的 Mcrypt 扩展
如何安装 mcrypt?我正在使用 Leopard 10.5.8 和 PHP5。
How do I install mcrypt? I'm using Leopard 10.5.8 with PHP5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的,我只是花了 1.5 小时尝试在 10.6.7 上自己完成此操作,
我相信解决方案是这样的:
我使用 macports 安装了
php5-mcrypt + universal
:那么,你不能只把
extension=mycrypt.so
在php.ini
文件中,你必须输入直接路径,即:你看,PHP 在
/usr/local/lib/php 中查找/extensions/no-debug-non-zts-20090626/
这就是我错过的区别!
然后用你的命令重新启动apache
,然后
确保它在那里。
希望这对某人有帮助!
Ok, I just spent 1.5 hours trying to do this myself on 10.6.7
I believe the solution was this:
I installed
php5-mcrypt + universal
with macports:then, you can't just put
extension=mycrypt.so
in thephp.ini
file, you have to put the direct path i.e.:you see, PHP looks in
/usr/local/lib/php/extensions/no-debug-non-zts-20090626/
which is the difference I missed!!
Then just restart apache with your
and then
to make sure it's there.
Hope this helps someone!
来源:此页面。
Source: This page.
这取决于您安装 PHP 的方式。
如果您通过 macports 安装了 PHP,您可以:
如果您自定义编译了 PHP,那么重新编译可能是最简单的:(
不确定 macports 实际将其保存在哪里,因为我不使用 macports,而只是编译我的 AMP 堆栈(和大多数依赖项)来自源)
It depends on how you've installed PHP.
If you installed PHP via macports, you can:
If you custom-compiled your PHP, it's probably easiest to just recompile with:
(Not sure where macports actually keeps it, since I don't use macports, but just compile my AMP stack (and most dependencies) from source)