Bug [# 1929] Image handling bugs
Tags:   No tags associated yet.

  Go back
 Category:  Products/Categories Administration  Severity:  --  Version:  VirtueMart 1.1.0 RC2
 Joomla! Version:  --  Browser Version:  --  Fixed in Version:  Virtuemart 1.1.0 RC3
Description:
In imageTools.class.php
Line 113
$fileout = IMAGEPATH."/$table_name/resized/".$to_file_thumb."_".PSHOP_IMG_WIDTH."x".PSHOP_IMG_HEIGHT.$noimgif.$ext;
edit to
$fileout = IMAGEPATH. $table_name."/resized/".$to_file_thumb."_".PSHOP_IMG_WIDTH."x".PSHOP_IMG_HEIGHT.$noimgif.$ext;

In ps_product.php ( I think its bug, but not sure)
Line 125
if( $db->f("product_full_image") && substr( $db->f("product_thumb_image"), 0, 4) != "http") {
edit to
if( $db->f("product_full_image") && substr( $db->f("product_full_image"), 0, 4) != "http") {

Details:
Submitted Comment
Nothing found to display.