The problem will be in the following then:
PHP Code:
------------------------------------------------------------------------------------>>
INSERT INTO settinggroup (settinggroupid,title,displayorder) VALUES (NULL,'Licensed Users Options','62');
------------------------------------------------------------------------------------>>
------------------------------------------------------------------------------------>>
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,62,'Which usergroups can view license status?','licenseusergroup','6','In this field, enter the usergroupids of the usergroups which you want to allow to view the license status of users on the forum. Separate each usergroup id with a comma (ie. 5,6,7)','','1');
------------------------------------------------------------------------------------>>
------------------------------------------------------------------------------------>>
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,62,'Text for licensed member?','licensedtext','Licensed','You may use HTML.','','2');
------------------------------------------------------------------------------------>>
------------------------------------------------------------------------------------>>
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,62,'Text for unlicensed member?','licensednottext','Unlicensed','You may use HTML.','','3');
------------------------------------------------------------------------------------>>
These queries, as you can see the number 62 in each, that's the setting group id. Make sure that the settinggroup you've got's id is the same as in the queries you run to add the settings.