Ok heres what I have tried in myphpadmin...
Made sure nothing is using ID-300...
Code:
SELECT configuration_group_title FROM configuration_group where configuration_group_id = 300;
MySQL returned an empty result set (i.e. zero rows). (Query took 0.0006 sec)
Trying to add it one line at a time....
Code:
INSERT INTO configuration_group (`configuration_group_id`, `configuration_group_title`, `configuration_group_description`, `sort_order`, `visible`) VALUES ('300', 'Quick Updates', 'Here you can configure what you will be able to modify in Quick Updates.', '300', '1');
Inserted rows: 1
Inserted row id: 300 (Query took 0.0502 sec)
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
('', 'Display the model.', 'QUICKUPDATES_DISPLAY_MODEL', 'true', 'Enable/Disable the model displaying', 300, 1, '2003-06-04 05:04:11', '2003-06-04 04:18:06', NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
Inserted rows: 1
Inserted row id: 798 (Query took 0.0091 sec)
edited a very lonnnnnnnnnnng post to say doing it this way WORKED!!!!!!
(strange because when I tried it all together it didnt like it)
HURRAH!
Thank you for your patience Chris, greatly appreciated.