From: Josh Date: Tue, 2 Apr 2024 13:46:58 +0000 (-0400) Subject: fix(SetupChecks): Add hint about dns/firewall if `mjs` check can't run X-Git-Tag: v29.0.0rc2~4^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c0debe27d6c500c50c318cab158195da063993f7;p=nextcloud-server.git fix(SetupChecks): Add hint about dns/firewall if `mjs` check can't run Signed-off-by: Josh --- diff --git a/apps/settings/lib/SetupChecks/JavaScriptModules.php b/apps/settings/lib/SetupChecks/JavaScriptModules.php index 81f580a37bc..6aff7dcfaaa 100644 --- a/apps/settings/lib/SetupChecks/JavaScriptModules.php +++ b/apps/settings/lib/SetupChecks/JavaScriptModules.php @@ -68,7 +68,7 @@ class JavaScriptModules implements ISetupCheck { } if ($noResponse) { - return SetupResult::warning($this->l10n->t('Could not check for JavaScript support. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.') . "\n" . $this->serverConfigHelp()); + return SetupResult::warning($this->l10n->t('Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.') . "\n" . $this->serverConfigHelp()); } return SetupResult::error($this->l10n->t('Your webserver does not serve `.mjs` files using the JavaScript MIME type. This will break some apps by preventing browsers from executing the JavaScript files. You should configure your webserver to serve `.mjs` files with either the `text/javascript` or `application/javascript` MIME type.'));