morgan1 Posted January 31, 2007 Share Posted January 31, 2007 I'm planning to install Ship-in-Cart V 2.2.1: http://www.oscommerce.com/community/contri...ns,1781/page,52 I'm hoping to deploy the following SQL out of the box: http://www.hepptech.com/sql.txt This contribution will establish configuration_group_id 19. It looks like 19 is available. Is this where 19 would be shown if already used? ---SQL Snip --------------- CREATE TABLE `configuration_group` ( `configuration_group_id` int(11) NOT NULL auto_increment, `configuration_group_title` varchar(64) NOT NULL default '', `configuration_group_description` varchar(255) NOT NULL default '', `sort_order` int(5) default NULL, `visible` int(1) default '1', PRIMARY KEY (`configuration_group_id`) ) TYPE=MyISAM AUTO_INCREMENT=32 ; -- -- Dumping data for table `configuration_group` -- INSERT INTO `configuration_group` VALUES (30, 'Digistore Setup', 'General configuration settings', 1, 1); INSERT INTO `configuration_group` VALUES (2, 'Minimum Values', 'The minimum values for functions / data', 2, 0); INSERT INTO `configuration_group` VALUES (3, 'Maximum Values', 'The maximum values for functions / data', 3, 0); INSERT INTO `configuration_group` VALUES (4, 'Images', 'Image parameters', 4, 1); INSERT INTO `configuration_group` VALUES (5, 'Customer Details', 'Customer account configuration', 5, 1); INSERT INTO `configuration_group` VALUES (6, 'Module Options', 'Hidden from configuration', 6, 0); INSERT INTO `configuration_group` VALUES (7, 'Shipping/Packaging', 'Shipping options available at my store', 7, 1); INSERT INTO `configuration_group` VALUES (8, 'Product Listing', 'Product Listing configuration options', 8, 0); INSERT INTO `configuration_group` VALUES (9, 'Stock', 'Stock configuration options', 9, 1); INSERT INTO `configuration_group` VALUES (10, 'Logging', 'Logging configuration options', 10, 1); INSERT INTO `configuration_group` VALUES (11, 'Cache', 'Caching configuration options', 11, 1); INSERT INTO `configuration_group` VALUES (12, 'E-Mail Options', 'General setting for E-Mail transport and HTML E-Mails', 12, 1); INSERT INTO `configuration_group` VALUES (13, 'Download', 'Downloadable products options', 13, 1); INSERT INTO `configuration_group` VALUES (14, 'GZip Compression', 'GZip compression options', 14, 1); INSERT INTO `configuration_group` VALUES (15, 'Sessions', 'Session options', 15, 1); INSERT INTO `configuration_group` VALUES (31, 'Template', 'Template Configuration', 2, 1); -------------------------- Is this wehere configuration_group_id 19 would be shown if not available? Thanks 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.
Note: Your post will require moderator approval before it will be visible.