Table 'phoenix.site_cron' doesn't exist?

Exilo

Member
Apr 27, 2012
192
5
Hello guys, got a little MYSQL problem here.
When I am trying to go to my site, I get this erro:
Title: Table 'phoenix.site_cron' doesn't exist
Text: Table 'phoenix.site_cron' doesn't exist

Tryed to add the table "phoenis.site_cron" in MYSQL, but I get the same erro on it.
Well, is this not a MYSQL problem? Since it wont work...
Trying with uberCMS.
-Alex
 

Exilo

Member
Apr 27, 2012
192
5
Worked now, but now I got the warning Warning: mysql_result() [ ]: Unable to jump to row 0 on MySQL result index 17 in C:\xampp\htdocs\includes\class.core.php on line 191

On the site, any ideas what that warning want me to do? Have looked on line 191: return mysql_result(dbquery("SELECT maintenance FROM site_config LIMIT 1"), 0);
 

Wouto

Posting Freak
FindRetros Moderator
May 31, 2011
750
305
Add this SQL code into your database:
Code:
-- ----------------------------
-- Table structure for `site_cron`
-- ----------------------------
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 DEFAULT CHARSET=latin1;
 
-- ----------------------------
-- Records of site_cron
-- ----------------------------
 

Users who are viewing this thread

Top