View Single Post
  #449  
Old 06-02-2008, 03:33 AM
 
membot membot is offline
 

Advanced Member
  
Join Date: Jan 2007
Posts: 55
 

Default Re: TelaFirma - X-Cart Dynamic Image Generator

Hey hey I finally found an old email from Stephen about this. I've been having this same problem.

Quote:
Originally Posted by 01bodyjewellery
What was the actual fix for this error - I now have the same problem - I have increased the PHP memory but that did not help

Warning
: Division by zero in /home/xxxxxx/public_html/shop/var/templates_c/%%5F^5F5^5F5284F3%%product_image.tpl.php on line 16

Warning: Division by zero in /home/xxxxxx/public_html/shop/var/templates_c/%%5F^5F5^5F5284F3%%product_image.tpl.php on line 41

On line 17 of /skin1/modules/Dynamic_Images/product_image.tpl

change the following line:
Code:
{math equation="floor(x / y)-1" x=$config.Dynamic_Images.di_product_image_width y=$config.Dynamic_Images.di_detail_thumb_width assign=number}

to:

Code:
{math equation="floor(x / y)" x=$config.Dynamic_Images.di_product_image_width y=$config.Dynamic_Images.di_detail_thumb_width assign=number}

Basically all you are doing is removing the "-1" from the floor(x / y) equation.

Hope this helps
__________________
X-Cart Version 4.1.10
www.memedia.com.au
Reply With Quote