again for create thumbs
inside includes/functions.php replace
PHP Code:
$ext = strtolower(end(explode('.', $image_path)));
with
PHP Code:
$image_path_exp = explode('.', $image_path);
$image_path_end = end($image_path_end);
$ext = strtolower($image_path_end);