本文介绍了警告:imagejpeg()[function:imagejpeg]:gd-jpeg:JPEG库报告不可恢复的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的根文件夹上安装了wordpress,
I have wordpress installation on my root folder,
直到昨天为止一切正常,但是今天我猜测生成缩略图会出现以下错误,
until yesterday it was working fine, but today it gives following error for i guess generating thumbnail images,
Warning: imagejpeg() [function:imagejpeg]: gd-jpeg: JPEG library reports unrecoverable error: in public_html/wp-includes/media.php on line 459
有人对此警告有任何想法吗?
do anyone have any idea regarding this warning??
请帮助我
以下代码在第459行上
following code is on line 459
if ( !imagejpeg( $newimage, $destfilename, apply_filters( 'jpeg_quality', $jpeg_quality, 'image_resize' ) ) )
推荐答案
1)检查磁盘空间
您的系统必须有足够的磁盘空间
Your system must have enough disk space
2)检查内存限制
在您的php中设置更多内存:
Set more memory in your php:
ini_set("memory_limit","256M");
3)检查post_max_size和upload_max_filesize
在htaccess文件中设置更多内容:
Set more in your htaccess file:
php_value post_max_size 16M
php_value upload_max_filesize 6M
4)将@放在函数前面
@imagejpeg(..............);
第1点)为我工作.
这篇关于警告:imagejpeg()[function:imagejpeg]:gd-jpeg:JPEG库报告不可恢复的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!