FastCGI sent in stderr: “PHP message: PHP Fatal error: Call to undefined function imagecreatefromjpeg()错误解决办法

【linux命令】FastCGI sent in stderr: “PHP message: PHP Fatal error:  Call to undefined function imagecreatefromjpeg()错误解决办法

原因:gd不支持jpeg,安装jpeg支持JPEG Support即可。
安装方法:
1、找到php 源码目录安装扩展。或单独自己安装,这里使用php源码原始目录。

cd ext/gd 
/usr/local/php/bin/phpize 
./configure -–with-php-config=/usr/local/php/bin/php-config –-with-jpeg-dir –-with-freetype-dir
make && make install

重启web。重新查看phpinfo支持以后即可。

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » FastCGI sent in stderr: “PHP message: PHP Fatal error: Call to undefined function imagecreatefromjpeg()错误解决办法