Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/settings/lib/SetupChecks/SystemIs64bit.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function run(): SetupResult {
return SetupResult::success($this->l10n->t('64-bit'));
} else {
return SetupResult::warning(

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe also upgrade to error?

Suggested change
return SetupResult::warning(
return SetupResult::error(

$this->l10n->t('It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit!'),
$this->l10n->t('It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit! The support for 32-bit system will be removed in Nextcloud Hub 27 Spring (Nextcloud 36).'),
$this->urlGenerator->linkToDocs('admin-system-requirements')
);
}
Expand Down
Loading