如何处理php服务器端requires ext-gd 报错?
程序员文章站
2022-04-21 15:05:34
...
今天在安装Laravel Debugbar 安装包的过程中出现了requires ext-gd * -> the requested PHP extension gd is missing from your system.的错误,谷歌了下,终于找到了解决的方法。 安装报错:
该错误很明显,缺少GD库,所以我们需要通过命令来安装。如果你的服务器是Ubuntu,可以应用以下命令安装GD:
(if you are on a Debian based server (such as Ubuntu) you can run the following command:)
apt-get install php5-gd
然后找到自己的服务器安装路径重启:
(1)Apache服务器重启
/etc/init.d/apache2 restart
(2)Nginx服务器重启方式
sudo service php5-fpm restart // 重启php
sudo service nginx restart // 重启nginx
This will restart your server and enable GD in PHP.
通过 phpinfo() 方法就可以查看安装信息:
上一篇: 最让人容易出错的10道php面试题
推荐阅读
-
php session对象创建报错,该如何处理
-
php session对象创建报错,该如何处理
-
关于php使用system()开启linux下的firefox,报错:Error:no display specified,该如何处理
-
关于php使用system()开启linux下的firefox,报错:Error:no display specified,该如何处理
-
PHP中报错Cannot adopt OID in UCD-SNMP-MIB、 LM-SENSORS-MIB - crxis该如何处理
-
如何处理php服务器端requires ext-gd 报错?
-
如何处理php服务器端requires ext-gd 报错?
-
PHP中报错Cannot adopt OID in UCD-SNMP-MIB、 LM-SENSORS-MIB - crxis该如何处理
-
php双引号中访问数组元素报错如何处理
-
php双引号中访问数组元素报错如何处理