mirror of
https://github.com/nextcloud/server.git
synced 2026-03-28 13:23:49 -04:00
disable upgrades to 26 for 32-bit
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
075a87670d
commit
faa747e445
1 changed files with 4 additions and 0 deletions
|
|
@ -40,6 +40,7 @@ declare(strict_types=1);
|
|||
*/
|
||||
namespace OC;
|
||||
|
||||
use Composer\Semver\Semver;
|
||||
use OCP\App\IAppManager;
|
||||
use OCP\EventDispatcher\Event;
|
||||
use OCP\EventDispatcher\IEventDispatcher;
|
||||
|
|
@ -138,6 +139,9 @@ class Updater extends BasicEmitter {
|
|||
|
||||
$success = true;
|
||||
try {
|
||||
if (PHP_INT_SIZE < 8 && Semver::satisfies($currentVersion, '> 25')) {
|
||||
throw new HintException('You are running a 32-bit PHP version. Cannot upgrade to Nextcloud 26 and higher. Please switch to 64-bit PHP.');
|
||||
}
|
||||
$this->doUpgrade($currentVersion, $installedVersion);
|
||||
} catch (HintException $exception) {
|
||||
$this->log->error($exception->getMessage(), [
|
||||
|
|
|
|||
Loading…
Reference in a new issue