2008-10-05, 05:48 AM
In inc/functions_image.php, the check_thumbnail_memory doesn't work because of the following line of code:
$memory_limit and $thumbnail_memory are in bytes. ini_set needs the "B", or "K" ect. i.e. 128M
if($thumbnail_memory > $free_memory)
{
@ini_set("memory_limit", $memory_limit+$thumbnail_memory);
}
$memory_limit and $thumbnail_memory are in bytes. ini_set needs the "B", or "K" ect. i.e. 128M