Cron generates following error everytime:

"Table 'drupal.httpbl' doesn't exist query: DELETE FROM httpbl WHERE expire <= 1179597606 in /srv/www/htdocs/includes/database.mysql.inc on line 172."

What's wrong?

Comments

praseodym’s picture

For some reason the httpbl table doesn't exist.
Try running update.php or execute the following SQL code:

CREATE TABLE httpbl (
    hostname varchar(128) NOT NULL,
    status tinyint(2) NOT NULL default '0',
    expire int(11) NOT NULL default '0',
    PRIMARY KEY (hostname),
    INDEX (expire)
  ) /*!40100 DEFAULT CHARACTER SET UTF8 */
praseodym’s picture

Assigned: Unassigned » praseodym
Category: bug » support
Status: Active » Closed (fixed)