我在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
答案 0 :(得分:6)
GD图形库用于动态处理图像。对于Ubuntu,您应该手动安装它:
UITextField
这就是全部,您可以验证是否已加载GD支持:
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
输出应该是这样的:
php -i | grep -i gd
答案 1 :(得分:2)
我通过运行此代码从"Remi's RPM repository"重新安装php71和php-gd来修复它。
# yum --enablerepo=remi-php71 install php-gd
之后你应该重启nginx和php-fpm:
# systemctl restart nginx
# systemctl restart php-fpm
另见How to Install PHP 7, NGINX & MySQL 5.6 on CentOS/RHEL 7.4 & 6.9 如果您在为laravel安装和配置服务器时遇到任何问题。