Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • noblogs/noblogs-composer
1 result
Show changes
Commits on Source (2)
......@@ -180,7 +180,7 @@
"sl",
"sv_SE",
"ro_RO",
"tr"
"tr_TR"
],
"patches-file": "composer.patches.json",
"composer-exit-on-patch-failure": true,
......
......@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "55b6e6a290ab394a9c18560f377e16fd",
"content-hash": "7f12dc2d42bf50c4af43f3784e0a7e19",
"packages": [
{
"name": "bjornjohansen/wplang",
......
......@@ -168,9 +168,16 @@ define('NOSPAM_API_URL', 'http://nospam.investici.org:9001');
* Memcache servers for Wordpress object caching.
*/
$memcached_servers = array(
// Cache most things locally.
'default' => array(
'127.0.0.1:7108'
)
),
// User metadata (including session ticket info) needs to be global.
// See issue #114.
'userlogins' => $noblogs_config['memcached'],
'usermeta' => $noblogs_config['memcached'],
'user_meta' => $noblogs_config['memcached'],
);
/*
......