Hi All.
My MW 1.35.5 work fine with memcached as follows.
$wgMainCacheType = CACHE_MEMCACHED;
$wgParserCacheType = CACHE_MEMCACHED;
$wgMessageCacheType = CACHE_MEMCACHED;
$wgSessionCacheType = CACHE_MEMCACHED;
$wgMemCachedServers = array("unix:///var/run/memcached/memcached.sock:0");
$wgSessionsInMemcached = true; # optional
$wgSessionsInObjectCache = true; # optionalAnd tried to upgrade to latest of series 1.35 (1.35.8) but got error as follow
LogicException: Process cache for 'en' should be set by now
I had been report at task of https://phabricator.wikimedia.org/T258860 using MW 1.35.6.
Upgrade success when disable message cache as follows.
$wgMessageCacheType = CACHE_NONE;
Work fine look like until try to logging in as follows.
There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Please resubmit the form.
Login success when disable cache completed as follows.
$wgMainCacheType = CACHE_NONE;
$wgParserCacheType = CACHE_NONE;
$wgMessageCacheType = CACHE_NONE;
$wgSessionCacheType = CACHE_NONE;
# $wgMemCachedServers = array("unix:///var/run/memcached/memcached.sock:0");
$wgSessionsInMemcached = false; # optional
$wgSessionsInObjectCache = false; # optionalPlease help to debug.
Thanks a lot.