diff --git a/type/__nextcloud/gencode-remote b/type/__nextcloud/gencode-remote index 38024a6..1850dd0 100755 --- a/type/__nextcloud/gencode-remote +++ b/type/__nextcloud/gencode-remote @@ -17,7 +17,7 @@ occ() { # will not use -q as it supresses errors, too cat << SHELL su -s /bin/sh -l "$user" -- -e <`_ or from the `GitHub Releases + `_ page. The type will + download the tarball over the official nextcloud website. + The type will never downgrade a nextcloud instance. Rather, it will fail, as this is a missconfiguration. Downgrades are not recommended and supported by upstream. Such cases can happen if the nextcloud instance was @@ -255,13 +260,19 @@ it is not handled for the following cases: do not delete configuration options and set all available nextcloud options that are available through this type. +If the nextcloud installation does not work and you stuck in a plaintext error +screen, try to restart your Apache WWW server first! This type will install all +php dependencies, but there are not recognised by the server-internal php +environment. This can happen after a database migration between different +database types, as it installs the database module only when it is required. + AUTHORS ------- Matthias Stecher -COPYRIGHT +COPYING --------- Copyright \(C) 2020 Matthias Stecher. You can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/type/__nextcloud/map-conf-changes.sh b/type/__nextcloud/map-conf-changes.sh index 3c98c3b..caad3bd 100755 --- a/type/__nextcloud/map-conf-changes.sh +++ b/type/__nextcloud/map-conf-changes.sh @@ -230,6 +230,7 @@ migrate_db() { database_port="${database_host##*:}" else # set default port because the tool can not do this for pgsql + # it looks like mysql get struggles, too case "$database_type" in mysql) database_port=3306 @@ -244,6 +245,7 @@ migrate_db() { printf "php occ db:convert-type --no-interaction --no-ansi --clear-schema --all-apps \ '%s' '%s' --password '%s' '%s' --port '%u' '%s'\n" \ "$database_type" "$database_user" "$database_pass" "$database_host" "$database_port" "$database_name" + printf "php occ maintenance:mode --on\n" # was disabled by database convertion }