private function checkMaximumPhpVersion(): ?array
{
- // Maximum: PHP 8.3.x
- if (\PHP_VERSION_ID < 80399) {
+ // Maximum: PHP 8.4.x
+ if (\PHP_VERSION_ID < 80499) {
return null;
}
if (WCF::getLanguage()->getFixedLanguageCode() === 'de') {
return [
'title' => 'Inkompatible PHP-Version',
- 'description' => 'Es wird nur PHP 8.1, 8.2 oder 8.3 unterstützt.',
+ 'description' => 'Es wird nur PHP 8.1, 8.2, 8.3 oder 8.4 unterstützt.',
];
} else {
return [
'title' => 'Incompatible PHP version',
- 'description' => 'Only PHP 8.1, 8.2 or 8.3 are supported.',
+ 'description' => 'Only PHP 8.1, 8.2, 8.3 or 8.4 are supported.',
];
}
}
'minimum' => '8.1.2',
'deprecated' => [],
'sufficient' => ['8.1'],
- 'recommended' => ['8.2', '8.3'],
+ 'recommended' => ['8.2', '8.3', '8.4'],
];
public $foreignKeys = [
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
if (!RequestHandler::getInstance()->isACPRequest()) {
- if (!(80100 <= \PHP_VERSION_ID && \PHP_VERSION_ID <= 80399)) {
+ if (!(80100 <= \PHP_VERSION_ID && \PHP_VERSION_ID <= 80499)) {
return new HtmlResponse(
(new HtmlErrorRenderer())->render(
WCF::getLanguage()->getDynamicVariable('wcf.global.error.title'),
protected function showSystemRequirements(): ResponseInterface
{
$phpVersionLowerBound = '8.1.2';
- $phpVersionUpperBound = '8.3.x';
+ $phpVersionUpperBound = '8.4.x';
$system = [];
// php version
private function getBasicMessages(): array
{
$messages = [];
- if (!(80100 <= PHP_VERSION_ID && PHP_VERSION_ID <= 80399)) {
+ if (!(80100 <= PHP_VERSION_ID && PHP_VERSION_ID <= 80499)) {
$messages[] = new StatusMessage(
StatusMessageType::Error,
WCF::getLanguage()->getDynamicVariable('wcf.global.incompatiblePhpVersion')
<item name="wcf.global.rss.accessToken.info"><![CDATA[Der Link zum anonymen RSS-Feed enthält nur Inhalte, auf die Gäste Zugriff haben. Der Link zum personalisierten RSS-Feed enthält alle Inhalte, auf die {if LANGUAGE_USE_INFORMAL_VARIANT}du{else}Sie{/if} Zugriff {if LANGUAGE_USE_INFORMAL_VARIANT}hast{else}haben{/if}.]]></item>
<item name="wcf.global.rss.withAccessToken"><![CDATA[Personalisierter RSS-Feed]]></item>
<item name="wcf.global.rss.withoutAccessToken"><![CDATA[Anonymer RSS-Feed]]></item>
- <item name="wcf.global.incompatiblePhpVersion"><![CDATA[Fehlerhafte Server-Konfiguration: Die eingesetzte Version von „PHP” ist nicht kompatibel, ein Betrieb ist nicht möglich. Es wird mindestens PHP in Version 8.1 benötigt, unterstützt werden die Versionen bis PHP 8.3. Für den Einsatz höherer PHP-Versionen muss die Software auf eine aktuelle Version umgestellt werden.]]></item>
+ <item name="wcf.global.incompatiblePhpVersion"><![CDATA[Fehlerhafte Server-Konfiguration: Die eingesetzte Version von „PHP” ist nicht kompatibel, ein Betrieb ist nicht möglich. Es wird mindestens PHP in Version 8.1 benötigt, unterstützt werden die Versionen bis PHP 8.4. Für den Einsatz höherer PHP-Versionen muss die Software auf eine aktuelle Version umgestellt werden.]]></item>
</category>
<category name="wcf.global.form">
<item name="wcf.global.form.boolean.no"><![CDATA[Nein]]></item>
<item name="wcf.global.rss.accessToken.info"><![CDATA[The link to the anonymous RSS feed only contains contents that guests can access. The link to the personalized RSS feed contains all contents that you can access.]]></item>
<item name="wcf.global.rss.withAccessToken"><![CDATA[Personalized RSS Feed]]></item>
<item name="wcf.global.rss.withoutAccessToken"><![CDATA[Anonymous RSS Feed]]></item>
- <item name="wcf.global.incompatiblePhpVersion"><![CDATA[Bad server configuration: The configured version of “PHP” is not compatible, operation is not possible. At least PHP in version 8.1 is required, versions up to PHP 8.3 are supported. For the use of higher PHP versions the software must be updated to a current version.]]></item>
+ <item name="wcf.global.incompatiblePhpVersion"><![CDATA[Bad server configuration: The configured version of “PHP” is not compatible, operation is not possible. At least PHP in version 8.1 is required, versions up to PHP 8.4 are supported. For the use of higher PHP versions the software must be updated to a current version.]]></item>
</category>
<category name="wcf.global.form">
<item name="wcf.global.form.boolean.no"><![CDATA[No]]></item>
$language = $_GET['language'];
}
-const WSC_SRT_VERSION = '6.1.0';
+const WSC_SRT_VERSION = '6.1.1';
$requiredExtensions = [
'ctype',
'dom',
'zlib',
];
$phpVersionLowerBound = '8.1.2';
-$phpVersionUpperBound = '8.3.x';
+$phpVersionUpperBound = '8.4.x';
$phrases = [
'php_requirements' => [
'de' => 'PHP',