My host is schedom-europe.
showimage.php contains following code:
header("Content-type: image/jpeg");
$view = ImageCreateFromJPEG($filename);
$ni = ImageCreateTrueColor($nx, $ny);
ImageCopyResampled ($ni, $view, 0, 0, 0, 0, $nx, $ny, $ox, $oy);
ImageJPEG($ni, '', 95);
ImageDestroy($view);
ImageDestroy($ni);
The whole website is about 10.000 lines so I suppose you don't want me to post that 😉
showimage.php is also giving errors so I suppose it's all from the same problem.
$filename = a defined path + $image variable.
Cheers,
Logic