timbrd
Forum Replies Created
-
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Google Drive backup folder issueActually it happened twice in the row. It might be a good idea to catch the exception and retry the request.
Please check if your posts are fresh, as per Google requirements News Sitemap should contain only URLs for your articles published in the last two days.
Oh, I see it, to avoid duplicates. I’ve change it to
PRIMARY KEY ('reference_ID','ID'), KEY 'ID' ('ID')Correction, in my case PRIMARY KEY (
reference_ID,ID) will not work:ALTER TABLE <code>wp_9_yarpp_related_cache</code> ADD PRIMARY KEY ( <code>reference_ID</code> , <code>ID</code> ) ; Duplicate entry '43334-28576' for key 'PRIMARY'I’m using now the following:
CREATE TABLE IF NOT EXISTS wp_9_yarpp_related_cache ( reference_ID bigint(20) unsigned NOT NULL DEFAULT '0', ID bigint(20) unsigned NOT NULL DEFAULT '0', score float unsigned NOT NULL DEFAULT '0', date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, KEY reference_ID (reference_ID), KEY ID (ID) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;Will be the same at least at
cache-tables.php line 94 (JOIN will force full scan)
cache-tables.php line 221I would leave Primary key as it is, drop index by Score and add index by ID.
where_filter from cache-tables.php (line 103) is supposed to use Score index but MySQL ignores it:
possible_keys: reference_ID,ID,score
key: reference_IDForum: Plugins
In reply to: [Plugin: W3 Total Cache] Settings don’t get savedThanks a lot, I was going crazy trying to figure out why I cannot save settings. “apc.stat=1” solved the problem.
WordPress 3.0.4
W3 Total Cache 0.9.1.3
APC 3.1.7Hey,
Thanks. It is fixed in 3.2