drupal 7和wamp的SQL错误

时间:2015-07-15 09:44:35

标签: mysql drupal drupal-7

好的,每当我尝试执行从刷新缓存到编辑块的任何操作时,我都会发现这个奇怪的错误。

  

PDOException:SQLSTATE [42S02]:找不到基表或视图:1146 La   table' test-site.cache_image' n' existe pas:TRUNCATE {cache_image};   cache_clear_all()中的Array()(第167行)   C:\瓦帕\ WWW \ www.test-site.com \包括\ cache.inc)

来自cache.inc的第167行是:

function cache_clear_all($cid = NULL, $bin = NULL, $wildcard = FALSE) {
  if (!isset($cid) && !isset($bin)) {
    // Clear the block cache first, so stale data will
    // not end up in the page cache.
    if (module_exists('block')) {
      cache_clear_all(NULL, 'cache_block');
    }
    cache_clear_all(NULL, 'cache_page');
    return;
  }
  return _cache_get_object($bin)->clear($cid, $wildcard); *<- this is line 167*
}

立即重新安装drupal是不可能的。 (由于某些原因,来自wamp的消息是法语)

0 个答案:

没有答案