Guest Posted July 22, 2005 Share Posted July 22, 2005 Is there a userguide to cubecart 3.0.1? Specifically, if I only want to sell to US residents, do I have to delete every other country, one at a time? Also, if I sell to other countries, how do I set different shipping costs for each? Quote Link to comment Share on other sites More sharing options...
Guest Posted July 24, 2005 Share Posted July 24, 2005 I would be interested in knowing if theres an easy way of deleting all the countries if i did it one by one in the admin panel it s going to take at least an hour! Quote Link to comment Share on other sites More sharing options...
Guest Race-Rims Posted July 24, 2005 Share Posted July 24, 2005 Easy login to your database and look for the table called CubeCart_iso_countries and delete it. Then add this sql $db->misc("CREATE TABLE `".$_POST['dbprefix']."CubeCart_iso_countries` ( Â `id` int(11) NOT NULL auto_increment, Â `iso` char(2) NOT NULL default '', Â `printable_name` varchar(80) NOT NULL default '', Â `iso3` char(3) default NULL, Â `numcode` smallint(6) default NULL, Â PRIMARY KEY Â (`iso`), Â KEY `id` (`id`), Â KEY `id_2` (`id`) ) TYPE=MyISAM AUTO_INCREMENT=242;"); $db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (226, 'US', 'United States', 'USA', 840);"); $db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (227, 'UM', 'United States Minor Outlying Islands', NULL, NULL);"); This will allow all the US states Quote Link to comment Share on other sites More sharing options...
convict Posted July 24, 2005 Share Posted July 24, 2005 Race-Rims wow, your sql DB engine knows classes? Excelent polybeads If you arent familiar with SQL, do it with CC Admin panel - its safe ;) Quote Link to comment Share on other sites More sharing options...
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.