Re: Automatic Image Upload with Thumbnails
Did you change anything in the uploadimg_config.php file?
It seems the problem is with the following two lines:
$zoomw = $currwidth/$twidth;
$zoomh = $currheight/$theight;
if $twidth and $theight is not set in the uploadimg_config.php file - you will get a 'Division by zero' error.
try replacing the above with
$zoomw = $currwidth/150;
$zoomh = $currheight/150;
to see if it fixes the problem.
Thanks, my settings was:
$twidth = "500"; // Maximum Width For Thumbnail Images - default = 150
$theight = "auto"; // Maximum Height For Thumbnail Images - default = 150
but now with
$twidth = "500"; // Maximum Width For Thumbnail Images - default = 150
$theight = "1000"; // Maximum Height For Thumbnail Images - default = 150
It seems to works perfect, thx lot''