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
|
|
|
*/
|
2025-12-16 03:06:58 -05:00
|
|
|
// Show warning if a PHP version below 8.2 is used,
|
2025-10-02 05:04:07 -04:00
|
|
|
if (PHP_VERSION_ID < 80200) {
|
2017-10-13 15:30:29 -04:00
|
|
|
http_response_code(500);
|
2025-10-02 05:04:07 -04:00
|
|
|
echo 'This version of Nextcloud requires at least PHP 8.2<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
|
|
|
}
|
|
|
|
|
|
2025-12-16 03:06:58 -05:00
|
|
|
// Show warning if >= PHP 8.6 is used as Nextcloud is not compatible with >= PHP 8.6 for now
|
|
|
|
|
if (PHP_VERSION_ID >= 80600) {
|
2017-10-13 15:30:29 -04:00
|
|
|
http_response_code(500);
|
2025-12-16 03:06:58 -05:00
|
|
|
echo 'This version of Nextcloud is not compatible with PHP>=8.6.<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
|
|
|
}
|