I’m not familiar with debugging, but I did the following:
– Enabled WP_DEBUG, WP_DEBUG_DISPLAY, WP_DEBUG_LOG and SAVEQUERIES
– Deactivated the WP LCache plugin
– Reactovated the WP LCache plugin.
Output below. If you need me to do something different then please tell me how.
Message in wp-admin:
————————————————————————-
The plugin generated 1484 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Contents of debug.log:
————————————————————————-
[28-Sep-2017 14:12:06 UTC] WordPress database error Specified key was too long; max key length is 1000 bytes for query CREATE TABLE IF NOT EXISTS
wpul_lcache_events` (
event_id
bigint(20) unsigned NOT NULL AUTO_INCREMENT,
pool
varchar(255) NOT NULL DEFAULT ” COMMENT ‘PHP process pool that wrote the change.’,
address
varchar(255) DEFAULT NULL COMMENT ‘Cache entry address (bin and key).’,
value
longblob COMMENT ‘A collection of data to cache.’,
expiration
int(11) DEFAULT NULL COMMENT ‘A Unix timestamp indicating when the cache entry should expire, or NULL for never.’,
created
int(11) DEFAULT ‘0’ COMMENT ‘A Unix timestamp indicating when the cache entry was created.’,
PRIMARY KEY (event_id
),
UNIQUE KEY event_id
(event_id
),
KEY expiration
(expiration
),
KEY lookup_miss
(address
,event_id
)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci; made by activate_plugin, do_action(‘activate_wp-lcache/wp-lcache.php’), WP_Hook->do_action, WP_Hook->apply_filters, wp_lcache_initialize_database_schema
[28-Sep-2017 14:12:06 UTC] WordPress database error Specified key was too long; max key length is 1000 bytes for query CREATE TABLE IF NOT EXISTS wpul_lcache_tags
(
tag
varchar(191) NOT NULL DEFAULT ”,
address
varchar(191) NOT NULL DEFAULT ”,
PRIMARY KEY (tag
,address
),
KEY rewritten_entry
(address
)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci; made by activate_plugin, do_action(‘activate_wp-lcache/wp-lcache.php’), WP_Hook->do_action, WP_Hook->apply_filters, wp_lcache_initialize_database_schema`
-
This reply was modified 7 years, 2 months ago by Ramón.