如何在 ubuntu 上重新编译 php?
我收到此错误
Call to undefined function imagecreatefromjpeg()
,在阅读后我需要使用
- ./configure --with-jpeg-dir=/usr/lib OR any other directory which contains the BINARY library of libjpeg
什么目录重新编译 php,并且是否有一个我需要启用的模块...
I am getting this error
Call to undefined function imagecreatefromjpeg()
and after reading around i need to recompile php with
- ./configure --with-jpeg-dir=/usr/lib OR any other directory which contains the BINARY library of libjpeg
but what directory and is there a module that i need to enable...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用
这不会重新编译 PHP,但会添加 GD 支持,这就是您需要的扩展。
可能需要激活它
Try with
This will not recompile PHP, but will add GD support, that is the extension you need.
May be needed to activate it
默认的
/usr/lib
是在 Debian/Ubuntu 上查找libjpeg.so.62
的正确值。你的问题更有可能是你没有安装头文件,所以PHP和GD扩展自动配置脚本找不到它。尝试:
The default
/usr/lib
is the correct value for findinglibjpeg.so.62
on Debian/Ubuntu.Your problem is more likely that you haven't installed the header files, so PHP and the GD extension autoconfig script cannot find it. Try: