Seems to be a bug with this addon and particular .gif files when you have the 'thumbnail' option set to yes.
One of my users have been trying to upload their signature file but it keeps timing out in PHP. I am using the latest build in GD version 2.0.28. Latest version of VB.
The problem code seems to be:
Code:
switch ($imageExt){
case (".gif"):
$srcImg = imagecreatefromgif("$imageDirectory/$imageName");
$colortrans = imagecolortransparent($srcImg);
$thumbImg = imagecreate($width, $height);
imagepalettecopy($thumbImg,$srcImg);
imagefill($thumbImg,0,0,$colortrans);
imagecolortransparent($thumbImg,$colortrans);
imagecopyresized($thumbImg,$srcImg,0,0,0,0,$width,$height,$imageWidth,$imageHeight);
imagegif($thumbImg,"$thumbDirectory/$thumbName");
This doesn't happen with all .gifs, just this particular one at the time. Its a 330x120 pixels gif thats 17kb in size.
I've been able to upload smaller and larger gifs though.