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
