Jump to content

Featured Replies

Удалил по неосторожности core_output_cache.MYD. Какое содержание должно быть в этом файле?

Link to comment
https://ipbmafia.ru/topic/21977-core_output_cachemyd/
Share on other sites

Кэш для гостей. Можно периодически чистить.

Link to comment
https://ipbmafia.ru/topic/21977-core_output_cachemyd/?&do=findComment&comment=160953
Share on other sites
31 минуту назад, Respected сказал:

Кэш для гостей. Можно периодически чистить.

Как его восстановить? Создать в БД новый? Тогда какая структура таблицы `core_output_cache ?

Link to comment
https://ipbmafia.ru/topic/21977-core_output_cachemyd/?&do=findComment&comment=160954
Share on other sites
CREATE TABLE `core_output_cache` (
  `cache_key` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'The key',
  `cache_value` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT 'The output HTML',
  `cache_meta` mediumtext COLLATE utf8_unicode_ci NOT NULL COMMENT 'JSON headers and meta data',
  `cache_expire` int(10) NOT NULL DEFAULT '0' COMMENT 'Unix timestamp of when the cache expires',
  PRIMARY KEY (`cache_key`),
  KEY `cache_expire` (`cache_expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci


 

Только engine свой поставьте, MyISAM, если с InnoDB не работаете.

Link to comment
https://ipbmafia.ru/topic/21977-core_output_cachemyd/?&do=findComment&comment=160960
Share on other sites

Спасибо всем,все поправил,все работает.

Link to comment
https://ipbmafia.ru/topic/21977-core_output_cachemyd/?&do=findComment&comment=160969
Share on other sites
Guest
This topic is now closed to further replies.

Последние посетители 0

  • No registered users viewing this page.