on my website when customer tries to check out, two errors comes:
Warning: Division by zero in /includes/classes/shipping.php on line 94
Warning: Division by zero in /includes/classes/shipping.php on line 95
this is what is in my file on 94 and 95
93 if ($shipping_weight > SHIPPING_MAX_WEIGHT) { // Split into many boxes
94 $shipping_num_boxes = 0; ceil($shipping_weight/SHIPPING_MAX_WEIGHT);
95 $shipping_weight = 0; $shipping_weight/$shipping_num_boxes;
96 }
Please let me know what i'm doing wrong?
Thanks



