HotelHoster
Member
- Sep 19, 2013
- 35
- 3
Can some1 help me i got this Error
UberCMS has encountered an error
Table neti.site_cron' doesn't exist
Try uploading the database again and check that you are using the correct one. If that doesnt work run this sql:
Code:
DROP TABLE IF EXISTS `site_cron`;
CREATE TABLE `site_cron` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`prio` int(11) NOT NULL DEFAULT '5',
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`scriptfile` varchar(50) NOT NULL,
`last_exec` int(11) NOT NULL,
`exec_every` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;