For some reason it did not install the table when first installed or got removed will give you a sql to install it but first try to install it again over writing it
Go to
admincp/Maintenance/Execute SQL Query
In the
Manual Query box, put the code below
First, make sure you have added your userid to the config file
Login to your
FTP to to includes/config.php file, download it to your desktop, open it with
notepad ++ find the line
$config['SpecialUsers']['canrunqueries'] = '1'; default is 1 but change or add to it if your userid is different like this
$config['SpecialUsers']['canrunqueries'] = '1,2';
Then run this
Code:
DROP TABLE IF EXISTS `userregcode`;
Then this after
Code:
CREATE TABLE `userregcode` (
`userregid` int(10) NOT NULL auto_increment,
`userregemail` varchar(100) collate utf8_unicode_ci NOT NULL,
`userregcode` varchar(100) collate utf8_unicode_ci NOT NULL,
`counted` int(10) NOT NULL,
`dayscounter` int(100) NOT NULL,
`wheretoapply` tinyint(1) NOT NULL,
PRIMARY KEY (`userregid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci