Hi there,
This module could be the saint graal for all international shipper ! thanks.
However I have an error on install :
user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''units' enum('LB','G','KG','OZ') NOT NULL, `conditions` text NOT NULL, ' at line 10 query: CREATE TABLE dp_uc_worldquote ( `id` mediumint(9) NOT NULL, `name` varchar(255) NOT NULL, `area` varchar(255) NOT NULL, `type` enum('code','zone','country','anywhere', 'region') NOT NULL, `rate` float unsigned NOT NULL default '0', `min_weight` float unsigned, `max_weight` float unsigned, `max_amount` float unsigned, 'units' enum('LB','G','KG','OZ') NOT NULL, `conditions` text NOT NULL, `flat_weight` enum('flat','weight') NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ; in \drupal\includes\database.mysqli.inc on line 151.Edit : Ok it's a little SQL error in the .install file :
replace :
'units'
By :
`units`
ant It should work.



