Check the two files:
/includes/functions/html_includes.php
/admin/includes/functions/html_includes.php
and make sure that 1 they are different and 2 that you have the current one loaded in the Admin for the Security Patches ...
Next, check the directories:
/includes/modules/shipping
/includes/languages/english/modules/shipping
and make sure that you have code files in the right directory and language files in the right directory ...
then, make sure that you do not have extra files, such as backup files, in the
/includes/modules/shipping.php
as this is a self loading directory ...
NOTE: USPS also has a nifty little additional issue on the International on the number of decimals that it can take ...
Find this line of code:
Code:
$shipping_ounces = (16 * ($usps_shipping_weight - floor($usps_shipping_weight)));
and change it to read;
Code:
$shipping_ounces = (16 * ($usps_shipping_weight - floor($usps_shipping_weight)));
$shipping_ounces = zen_round($shipping_ounces, 2);
there will be a proper fix posted before too long, I am just testing for any other idiot ... er ... idiosyncrasies that might exist ...
Bookmarks