HI Suzarte,
I think this must be a problem with the setup script, for some reason it has not created the config table needed to configure SiT with the GUI interface. I've logged it as
Bug 674 you can monitor progress there.
As a work-around, to fix this you can run the following SQL which will create the config table for you:
- Code: Select all
CREATE TABLE IF NOT EXISTS `config` (
`config` varchar(255) NOT NULL,
`value` text,
PRIMARY KEY (`config`)
) TYPE=MyISAM COMMENT='SiT configuration';
Note: if you are using a database prefix you'll have to change the table name above, e.g. if your db prefix is 'sit_' use:
- Code: Select all
CREATE TABLE IF NOT EXISTS `sit_config` (
`config` varchar(255) NOT NULL,
`value` text,
PRIMARY KEY (`config`)
) TYPE=MyISAM COMMENT='SiT configuration';
Hope this helps,
Ivan