davehodg Posted July 17, 2003 Posted July 17, 2003 I noticed that having any kind of handling fee broke the UK postage tables contribution. It seems there were some undefined varibales. zones.php has this after the main calculation: if ($shipping == -1) { $shipping_cost = 0; $shipping_method = MODULE_SHIPPING_ZONES_UNDEFINED_RATE; } else { $shipping_cost = ($shipping + MODULE_SHIPPING_ZONES_HANDLING + SHIPPING_HANDLING); } } that last one should be a no_brainer, right? Hm, looks like i only have one of those in the database: mysql> select configuration_group_id , configuration_key, configuration_title, configuration_value from configuration where configuration_key LIKE "%HANDLING%"; +------------------------+--------------------------------+---------------------+---------------------+ | configuration_group_id | configuration_key |configuration_title | configuration_value | +------------------------+--------------------------------+---------------------+---------------------+ | 6 | MODULE_SHIPPING_ZONES_HANDLING | Handling Fee | | +------------------------+--------------------------------+---------------------+---------------------+ OK, having checked, yes, lose "SHIPPING_HANDLING" and it works. Hope this helps someone! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.