After import from PP vBgallery all the images show with size = 0
Work around in dbtech/gallery/modules/gallery/actions/view_image.php:
PHP Code:
if (!$image_data['is_youtube'])
{
$img_location = DBTECH_GALLERY::fetch_image_path($image_data['imageid'], 'local', $image_data['instanceid']) . '/full/' . $image_data['imageid'] . '_' . $image_data['dateline'] . '.' . $image_data['filetype'];
$img_info = getimagesize($img_location);
$image_data['filesize'] = filesize($img_location); // this line added
}