AHA, i know whats going on, and i might update the query in the install file if this keeps up a problem >.>
PHP Code:
CREATE TABLE `topsites_options` (
`active` tinyint( 1 ) NOT NULL default '0',
`hitson` tinyint( 1 ) NOT NULL default '0',
`perpage` tinyint( 3 ) NOT NULL default '10',
`daytime` tinyint( 2 ) NOT NULL default '1',
`require` tinyint( 1 ) NOT NULL default '1',
`buttons` varchar( 75 ) NOT NULL default '',
`totalbuttons` int( 3 ) NOT NULL default '50',
`resolve` tinyint( 1 ) NOT NULL default '0',
`display` tinyint( 1 ) NOT NULL default '1',
`htmlallowed` varchar( 75 ) NOT NULL default '<b><u><i>',
`bheight` tinyint( 3 ) NOT NULL default '0',
`bwidth` tinyint( 3 ) NOT NULL default '0',
`bborder` tinyint( 3 ) NOT NULL default '0',
`arrows` varchar( 75 ) NOT NULL default '',
`rankby` varchar( 75 ) NOT NULL default 'todayunique',
KEY `active` ( `active` )
) TYPE = MyISAM ;
there, the problem (thanks for putting the entire error message) was that the word 'require' is a reserved word, and to use it in a table requires that you quote it to work *edit: just verified this*