Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-composer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container registry
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Noblogs
noblogs-composer
Compare revisions
d926b4aec99dda7edf3e13c89f1bbfcae4c6c274 to 6754cfd919e28880fdaae99a5a2dca8fcac66321
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
noblogs/noblogs-composer
Select target project
No results found
6754cfd919e28880fdaae99a5a2dca8fcac66321
Select Git revision
Branches
23theme-child
back-to-hyperdb
creativecommons
debug
footnotes-made-easy
logo-login
master
renovate/roots-wordpress-6.x
responsive-twentyten
theme-link-folio
twentytwentytwochild
wordpress-full
wp-6.8.1
wpgancio
Tags
noblogs-5.6.1c
15 results
Swap
Target
noblogs/noblogs-composer
Select target project
noblogs/noblogs-composer
1 result
d926b4aec99dda7edf3e13c89f1bbfcae4c6c274
Select Git revision
Branches
23theme-child
back-to-hyperdb
creativecommons
debug
footnotes-made-easy
logo-login
master
renovate/roots-wordpress-6.x
responsive-twentyten
theme-link-folio
twentytwentytwochild
wordpress-full
wp-6.8.1
wpgancio
Tags
noblogs-5.6.1c
15 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Use global memcache for usermeta object cache
· ce5f0121
ale
authored
2 years ago
Attempts to fix issue #114.
ce5f0121
tr_TR
· 6754cfd9
agata
authored
2 years ago
6754cfd9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
composer.json
+1
-1
1 addition, 1 deletion
composer.json
composer.lock
+1
-1
1 addition, 1 deletion
composer.lock
docker/wp-config.php
+8
-1
8 additions, 1 deletion
docker/wp-config.php
with
10 additions
and
3 deletions
composer.json
View file @
6754cfd9
...
...
@@ -180,7 +180,7 @@
"sl"
,
"sv_SE"
,
"ro_RO"
,
"tr"
"tr
_TR
"
],
"patches-file"
:
"composer.patches.json"
,
"composer-exit-on-patch-failure"
:
true
,
...
...
This diff is collapsed.
Click to expand it.
composer.lock
View file @
6754cfd9
...
...
@@ -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",
...
...
This diff is collapsed.
Click to expand it.
docker/wp-config.php
View file @
6754cfd9
...
...
@@ -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'
],
);
/*
...
...
This diff is collapsed.
Click to expand it.