如何进行 PHP 重新编译?图像创建真彩色错误

发布于 2024-11-09 02:44:34 字数 596 浏览 0 评论 0原文

由于这是一个新问题,我认为可以创建一个新问题吗?

我之前的问题在这里:

imageantialias call to undefined function error with GD安装

Markus帮助我解决了问题,此后我联系了客户并为他们设置了VPS,我已经传输了文件和数据库,一切都运行良好。除了相同的错误之外,只是这一次,我收到了不同的错误;

Fatal error: Call to undefined function imagecreatetruecolor() in /home/public_html/admin/library/functions.php on line 232

我认为这与同一件事有关,并且需要重新编译 php?有人可以给我一些关于如何在 Mac OS X 上重新编译 php 的说明吗?我尝试了 PHP 文档,但我似乎无法理解它是如何工作的。

非常感谢!

As this is a new question I assume it's fine to create a new fresh question?

My previous question is here:

imageantialias call to undefined function error with GD installed

Markus helped me figure out the problem, I have since contacted the clients and set up a VPS for them, I have transferred the files and database and everything is running fine. Apart from the same error, only this time, I'm getting a different error;

Fatal error: Call to undefined function imagecreatetruecolor() in /home/public_html/admin/library/functions.php on line 232

I assume this is relating to the same thing and it required a php recompile? Could someone please give me some instructions on how to do a php recompile on Mac OS X, I tried the PHP docs but I can't seem to understand how it works.

Many Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

胡渣熟男 2024-11-16 02:44:34

确保您安装了正确版本的 PHP 和 GD。来自 PHP 手册

取决于您的 PHP 和 GD 版本
该函数是否已定义。和
PHP 4.0.6 到 4.1.x 此函数
如果 GD 模块始终存在
已加载,但在没有 GD2 的情况下调用它
正在安装 PHP 会发出致命错误
错误并退出
。对于 PHP 4.2.x 来说
发行时的行为有所不同
警告而不是错误。其他
版本仅定义此功能,如果
安装了正确的 GD 版本。

Make sure you have the correct version of PHP and GD installed. From the PHP manual:

Depending on your PHP and GD versions
this function is defined or not. With
PHP 4.0.6 through 4.1.x this function
always exists if the GD module is
loaded, but calling it without GD2
being installed PHP will issue a fatal
error and exit
. With PHP 4.2.x this
behaviour is different in issuing a
warning instead of an error. Other
versions only define this function, if
the correct GD version is installed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文