Fix phpmyadmin blowfish_secret

This commit is contained in:
VirtuBox
2019-08-17 14:18:03 +02:00
parent 15607ab641
commit 54e66a314b
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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'