2017-10-13 15:30:29 -04:00
|
|
|
<?php
|
2021-04-26 06:33:36 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-12-03 13:57:53 -05:00
|
|
|
*/
|
2024-04-01 11:31:57 -04:00
|
|
|
// Show warning if a PHP version below 8.1 is used,
|
|
|
|
|
if (PHP_VERSION_ID < 80100) {
|
2017-10-13 15:30:29 -04:00
|
|
|
http_response_code(500);
|
2024-04-01 11:31:57 -04:00
|
|
|
echo 'This version of Nextcloud requires at least PHP 8.1<br/>';
|
2017-10-13 15:30:29 -04:00
|
|
|
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
|
2021-10-03 15:51:45 -04:00
|
|
|
exit(1);
|
2017-10-13 15:30:29 -04:00
|
|
|
}
|
|
|
|
|
|
2023-08-10 09:52:20 -04:00
|
|
|
// Show warning if >= PHP 8.4 is used as Nextcloud is not compatible with >= PHP 8.4 for now
|
|
|
|
|
if (PHP_VERSION_ID >= 80400) {
|
2017-10-13 15:30:29 -04:00
|
|
|
http_response_code(500);
|
2023-08-10 09:52:20 -04:00
|
|
|
echo 'This version of Nextcloud is not compatible with PHP>=8.4.<br/>';
|
2017-10-13 15:30:29 -04:00
|
|
|
echo 'You are currently running ' . PHP_VERSION . '.';
|
2021-10-03 15:51:45 -04:00
|
|
|
exit(1);
|
2017-10-13 15:30:29 -04:00
|
|
|
}
|