From 54e66a314b5d56bcaedec565bcbba3b39345315e Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Sat, 17 Aug 2019 14:18:03 +0200 Subject: [PATCH] Fix phpmyadmin blowfish_secret --- CHANGELOG.md | 1 + wo/cli/plugins/stack_pref.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28c19dc..00a0f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - `wo stack remove/purge --all` - variable substitution in install script - `wo stack upgrade --phpmyadmin/--dashboard` +- phpmyadmin blowfish_secret key length ### v3.9.8 - 2019-08-16 diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index 50ed569..559a6bc 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -1282,7 +1282,7 @@ def post_pref(self, apt_packages, packages): blowfish_key = ''.join([random.choice (string.ascii_letters + string.digits) - for n in range(25)]) + for n in range(32)]) WOFileUtils.searchreplace(self, '{0}22222/htdocs/db/pma' '/config.inc.php'