how should it be vachar or wat
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Extraindo dados da tabela `site_cron`
--
INSERT INTO `site_cron` (`id`, `prio`, `enabled`, `scriptfile`, `last_exec`, `exec_every`) VALUES
(1, 5, '1', 'mod_forum.php', 1277927521, 7200),
(2, 4, '1', 'moderation_cleanup.php', 1277927521, 7200),
(3, 5, '1', 'respect.php', 1277927521, 86400),
(4, 5, '1', 'serverstat.php', 1277931156, 120),
(5, 3, '1', 'credits.php', 1277927521, 10800);
no dont call it test.site_cron, just call it site_cronYou must be registered for see links