安装php71w-gd并获取错误GD库扩展不适用于此PHP安装
作者:互联网
我在centos 7服务器和nginx web服务器上使用laravel web框架,我安装了php71w-gd,当我想上传文件时仍然出现此错误
Intervention \ Image \ Exception \ NotSupportedException
GD Library extension not available with this PHP installation.
你可能需要知道这一点
# php -i | grep gd
/etc/php.d/gd.ini,
gd
gd.jpeg_ignore_warning => 1 => 1
解决方法:
@Hamed Abdollahi请检查以下步骤,
GD图形库用于动态处理图像.对于Ubuntu,您应该手动安装它:
PHP5: sudo apt-get install php5-gd
PHP7.0: sudo apt-get install php7.0-gd
PHP7.1: sudo apt-get install php7.1-gd
PHP7.2: sudo apt-get install php7.2-gd
这就是全部,您可以验证GD支持加载:
php -i | grep -i gd
输出应该是这样的:
GD Support => enabled
GD headers Version => 2.1.1-dev
gd.jpeg_ignore_warning => 0 => 0
标签:php,laravel,nginx,centos,php-gd 来源: https://codeday.me/bug/20190724/1521833.html