启用/安装 GD 扩展? --没有-gd
当我的 phpinfo() 在“配置命令”中输出时,如何启用(或者可能我需要安装)GD; --没有-gd ?
我的 phpinfo() 输出“Core”中也没有任何内容列出
AWS 上的“gd”PHP 版本 5.2.4。
How does one enable (or perhaps I need to install) GD when my phpinfo() output in "Configure Command" says; --without-gd ?
I also have nothing in my phpinfo() output "Core" that lists "gd"
PHP Version 5.2.4 on AWS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
检查你的 php.ini 文件中是否有以下行:
如果存在,请将其更改为
并重新启动 apache
(它适用于 MAC)
Check if in your php.ini file has the following line:
if exists, change it to
and restart apache
(it works on MAC)
Windows 上的 PHP7 或 PHP8:
检查你的 php.ini 文件中是否有以下行:
如果存在,请将其更改为
如果未找到,添加此内容
并重新启动 apache
(它适用于 WINDOWS)
PHP7 Or PHP8 For Windows:
Check if in your php.ini file has the following line:
if exists, change it to
if not found, Add this
and restart apache
(it works on WINDOWS)
就我而言(
php 5.6
、Ubuntu 14.04
),以下命令对我有用:根据 php 版本,我们需要更改
php5.x-gd
In my case (
php 5.6
,Ubuntu 14.04
) the following command worked for me:According to php version we need to change the
php5.x-gd
之前的所有答案都是正确的,但对我来说在 ArchLinux 上还不够。我还需要编辑
/etc/php/php.ini
并取消注释:需要删除该行的初始
;
。通过 systemctl restart nginx 重新启动 Nginx 后,我就可以开始了。
All previous answers are correct but were not sufficient for me on ArchLinux. I also needed to edit
/etc/php/php.ini
and to uncomment :The initial
;
on the line needs to be removed.After restarting Nginx via
systemctl restart nginx
, I was good to go.在 Windows 中通过 XAMPP 启用 gd
首先停止服务器并转到配置
查找
;extension=gd
删除
;
并保存并启动服务器即可解决问题。
Enable gd via XAMPP in windows
First stop the server and go to config
Find the
;extension=gd
Remove the
;
and saveand start the server then you will fixed the issue.
对于 php7.1 执行:
并重新启动网络服务器。对于
apache
做For
php7.1
do:and restart webserver. For
apache
do如果您使用 php5.6 和 Ubuntu 18.04 然后在终端中运行这两个命令您的错误肯定会得到解决。
然后通过此命令重新启动您的 apache 服务器。
If You're using php5.6 and Ubuntu 18.04 Then run these two commands in your terminal your errors will be solved definitely.
then restart your apache server by this command.
我在 Ubuntu 18 上安装了 PHP 7.3 和 Nginx 1.14。
可以用!
I've PHP 7.3 and Nginx 1.14 on Ubuntu 18.
Works!
就我而言:
我正在使用 PHP 8
我必须在我的
php.ini
文件中搜索;extension=gd
。然后删除;
并且错误消失了。in my case:
I am using PHP 8
I had to search for
;extension=gd
in myphp.ini
file. Then removed the;
and error has gone.在 CentOS 中(但同样也可能适用于其他发行版),如果您安装 php7x-gd 模块,然后重新启动 Apache,但
php -i
仍然不显示GD Support =>启用
这可能意味着 php.ini 没有自动配置为支持此扩展。您所要做的就是编辑
/etc/php/php.ini
或使用以下内容创建/etc/php.d/gd.ini
文件内容:In CentOS (but the same may apply to other distros too) if you install the php7x-gd module followed by Apache restart and still the
php -i
does not show theGD Support => enabled
it might mean that the php.ini was not automatically configured to support this extension.All you have to to is either to edit the
/etc/php/php.ini
or to create a/etc/php.d/gd.ini
file with the following content:如果您使用的是基于 Debian 的服务器(例如 Ubuntu),您可以运行以下命令:
然后一旦完成运行:
这将重新启动您的服务器并在 PHP 中启用 GD。
如果您使用的是其他类型的系统,您将需要使用其他东西(例如 yum install)或直接编译为 PHP。
if you are on a Debian based server (such as Ubuntu) you can run the following command:
Then once it is complete run:
This will restart your server and enable GD in PHP.
If you are on another type of system you will need to use something else (like yum install) or compile directly into PHP.
对于 PHP8 使用(php8.1-gd 也可用):
对于 PHP7.0 使用(php7.1-gd、php7.2-gd、php7 .3-gd 和 php7.4-gd 也可用):
然后重新启动您的网络服务器。
或者
For PHP8 use (php8.1-gd are also available):
For PHP7.0 use (php7.1-gd, php7.2-gd, php7.3-gd and php7.4-gd are also available):
and than restart your webserver.
or