hi,
my site experienced stalled content, so I've checked the cron script and it fails with:

PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'expire' in 'where clause': DELETE FROM {cache_feeds_http} WHERE (expire <> :db_condition_placeholder_0) AND (expire < :db_condition_placeholder_1) ; Array ( [:db_condition_placeholder_0] => 0 [:db_condition_placeholder_1] => 1452854645 ) in cache_clear_all() (line 168 of /usr/share/drupal7/includes/cache.inc).

the table has only on column
id int(11)

Comments

jan.ptacek created an issue. See original summary.

MegaChriz’s picture

Status: Active » Postponed (maintainer needs more info)

This indicates that something failed during either the installation of Feeds or when updating Feeds.

Have you done a fresh install of Feeds 7.x-2.0-beta1 or did you update from a previous version (and which one)? If you did a fresh install, did you install it as part of an install profile or after Drupal was already installed?

A way to repair the failure is:

  1. Drop the table "cache_feeds_http".
    DROP TABLE `cache_feeds_http`;
    
  2. Set the schema version of Feeds to "7211".
    UPDATE `system` SET `schema_version` = '7211' WHERE `system`.`name` = 'feeds';
    
  3. Run database updates.
MegaChriz’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

No further info provided.