Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1537633463 OutOfRangeException

Hash not resolvable

in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php line 73
        if (strlen($hash) < 31) {
            return $hash;
        }
        if (!isset($this->hashes[$hash])) {
            throw new \OutOfRangeException(
                'Hash not resolvable',
                1537633463
            );
        }
at TYPO3\CMS\Core\Routing\Enhancer\VariableProcessor->resolveHash()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php line 375
    protected function inflateArray(array $array, ?string $namespace, array $arguments): array
    {
        $result = [];
        foreach ($array as $key => $value) {
            $inflatedKey = $this->resolveHash((string)$key);
            // inflate nested values `namespace__any__nested` -> `namespace__any/nested`
            $inflatedKey = $this->inflateNestedValue($inflatedKey, $namespace, $arguments);
            $steps = explode(static::LEVEL_DELIMITER, $inflatedKey);
            $pointer = &$result;
at TYPO3\CMS\Core\Routing\Enhancer\VariableProcessor->inflateArray()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php line 191
        if (empty($namespace) || empty($parameters)) {
            return $parameters;
        }

        $parameters = $this->inflateArray($parameters, $namespace, $arguments);
        // apply argument mapping on items of inflated namespace parameters
        if (!empty($parameters[$namespace]) && !empty($arguments)) {
            $parameters[$namespace] = $this->inflateKeys($parameters[$namespace], null, $arguments, false);
        }
at TYPO3\CMS\Core\Routing\Enhancer\VariableProcessor->inflateNamespaceParameters()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Routing/ExtbasePluginEnhancer.php line 171
     */
    public function inflateParameters(array $parameters, array $internals = []): array
    {
        $parameters = $this->getVariableProcessor()
            ->inflateNamespaceParameters($parameters, $this->namespace);
        $parameters[$this->namespace] = $parameters[$this->namespace] ?? [];

        // Invalid if there is no controller given, so this enhancers does not do anything
        if (empty($internals['_controller'] ?? null)) {
at TYPO3\CMS\Extbase\Routing\ExtbasePluginEnhancer->inflateParameters()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Routing/PageRouter.php line 394
                $appliedDefaults = $matchedRoute->getOption('_appliedDefaults') ?? [];
                parse_str($uri->getQuery(), $remainingQueryParameters);
                $enhancer = $route->getEnhancer();
                if ($enhancer instanceof InflatableEnhancerInterface) {
                    $remainingQueryParameters = $enhancer->inflateParameters($remainingQueryParameters);
                }
                $pageRouteResult = $this->buildPageArguments($route, array_merge($appliedDefaults, $parameters), $remainingQueryParameters);
                break;
            } catch (MissingMandatoryParametersException $e) {
at TYPO3\CMS\Core\Routing\PageRouter->generateUri()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 501
                $uri = $siteOfTargetPage->getRouter()->generateUri(
                    $pageObject,
                    $queryParameters,
                    $fragment,
                    $useAbsoluteUrl ? RouterInterface::ABSOLUTE_URL : RouterInterface::ABSOLUTE_PATH
                );
            } catch (InvalidRouteArgumentsException $e) {
                throw new UnableToLinkException('The target page could not be linked. Error: ' . $e->getMessage(), 1535472406);
            }
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->generateUrlForPageWithSiteConfiguration()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 167
                throw new UnableToLinkException('Link to external page "' . $page['uid'] . '" does not have a proper target URL, so "' . $linkText . '" was not linked.', 1551621999, null, $linkText);
            }
        } else {
            // Generate the URL
            $url = $this->generateUrlForPageWithSiteConfiguration($page, $siteOfTargetPage, $queryParameters, $fragment, $conf);
            // no scheme => always not external
            if (!$url->getScheme() || !$url->getHost()) {
                $treatAsExternalLink = false;
            } else {
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->build()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4823
                // records set links.
                $tsfe instanceof TypoScriptFrontendController ? $tsfe : null
            );
            try {
                $linkedResult = $linkBuilder->build($linkDetails, $linkText, $target, $conf);
                // Legacy layer, can be removed in TYPO3 v12.0.
                if (!($linkedResult instanceof LinkResultInterface)) {
                    if (is_array($linkedResult)) {
                        [$url, $linkText, $target] = $linkedResult;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->typoLink()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 2346
     * @return string The processed input value
     */
    public function stdWrap_typolink($content = '', $conf = [])
    {
        return $this->typoLink($content, $conf['typolink.']);
    }

    /**
     * wrap
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap_typolink()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1362
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                    // Call the function with the prefix stdWrap_ to make sure nobody can execute functions just by adding their name to the TS Array
                    $functionName = 'stdWrap_' . $functionName;
                    $content = $this->{$functionName}($content, $singleConf);
                } elseif ($functionType === 'boolean' && !($conf[$functionName] ?? null)) {
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/TextContentObject.php line 44
            $content = $this->cObj->stdWrap($content, $conf['value.']);
            unset($conf['value.']);
        }
        if (!empty($conf)) {
            $content = $this->cObj->stdWrap($content, $conf);
        }
        return $content;
    }
}
at TYPO3\CMS\Frontend\ContentObject\TextContentObject->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/partial_Form_Field_Current_url_ba5a50dc820881a8f1ab5d2ffca10f9819ed09af.php line 92
'additionalAttributes' => NULL,
'data' => NULL,
'aria' => NULL,
'name' => NULL,
'value' => TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments3, $renderChildrenClosure4, $renderingContext),
'property' => $renderingContext->getVariableProvider()->getByPath('field.marker'),
'class' => NULL,
'dir' => NULL,
'id' => $output5,
at partial_Form_Field_Current_url_ba5a50dc820881a8f1ab5d2ffca10f9819ed09af->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 326
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 164
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086.php line 153
'contentAs' => NULL,
'debug' => true,
];

$output11 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments12, $renderChildrenClosure13, $renderingContext);

$output11 .= '
        ';
return $output11;
at partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086.php line 288
return $output18;
},
];

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, static fn() => '', $renderingContext)
;

$output3 .= '
    ';
at partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 149
                $localVariableProvider->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
        }

        $renderingContext->setVariableProvider($globalVariableProvider);

at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086.php line 304
'reverse' => false,
'iteration' => NULL,
];

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
  </fieldset>

at partial_Form_Page_c4817acc22c74fad884371d66f7730276b4c2086->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 326
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 164
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468.php line 238
'contentAs' => NULL,
'debug' => true,
];

$output40 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments41, $renderChildrenClosure42, $renderingContext);

$output40 .= '
              ';
return $output40;
at Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 149
                $localVariableProvider->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
        }

        $renderingContext->setVariableProvider($globalVariableProvider);

at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468.php line 253
'reverse' => false,
'iteration' => NULL,
];

$output35 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments38, $renderChildrenClosure39, $renderingContext);

$output35 .= '

              ';
at Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 293
    public function renderChildren()
    {
        if ($this->renderChildrenClosure !== null) {
            $closure = $this->renderChildrenClosure;
            return $closure();
        }
        return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
    }

at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->renderChildren()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php line 171
        $this->addFormObjectNameToViewHelperVariableContainer();
        $this->addFormObjectToViewHelperVariableContainer();
        $this->addFieldNamePrefixToViewHelperVariableContainer();
        $this->addFormFieldNamesToViewHelperVariableContainer();
        $formContent = $this->renderChildren();

        if (isset($this->arguments['hiddenFieldClassName']) && $this->arguments['hiddenFieldClassName'] !== null) {
            $content = LF . '<div class="' . htmlspecialchars($this->arguments['hiddenFieldClassName']) . '">';
        } else {
at TYPO3\CMS\Fluid\ViewHelpers\FormViewHelper->render()
at call_user_func()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 256
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 244
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 507
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468.php line 413
'tabindex' => NULL,
'onclick' => NULL,
];

$output22 .= TYPO3\CMS\Fluid\ViewHelpers\FormViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output22 .= '
          </div>
        ';
at Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468.php line 448
return $output48;
},
];

$output12 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments19, static fn() => '', $renderingContext)
;

$output12 .= '
    ';
at Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 293
    public function renderChildren()
    {
        if ($this->renderChildrenClosure !== null) {
            $closure = $this->renderChildrenClosure;
            return $closure();
        }
        return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
    }

at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->renderChildren()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/fluid_components/Classes/Fluid/ViewHelper/ComponentRenderer.php line 202
        $variableContainer->add('settings', $this->componentSettings);

        // Provide component content to renderer
        if (!isset($this->arguments['content'])) {
            $this->arguments['content'] = (string)$this->renderChildren();
        }

        // Provide supplied arguments from component call to renderer
        foreach ($this->arguments as $name => $argument) {
at SMS\FluidComponents\Fluid\ViewHelper\ComponentRenderer->render()
at call_user_func()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 256
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 244
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/fluid_components/Classes/Fluid/ViewHelper/ComponentRenderer.php line 286
        $componentRenderer = $container->get(static::class);
        $componentRenderer->setComponentNamespace($componentNamespace);

        return $renderingContext->getViewHelperInvoker()->invoke(
            $componentRenderer,
            $arguments,
            $renderingContext,
            $renderChildrenClosure
        );
at SMS\FluidComponents\Fluid\ViewHelper\ComponentRenderer::renderComponent()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468.php line 481
'type' => TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments9, static fn() => '', $renderingContext)
,
];

$output0 .= SMS\FluidComponents\Fluid\ViewHelper\ComponentRenderer::renderComponent($arguments7, $renderChildrenClosure8, $renderingContext, 'Zeroseven\\SwuStyleguide\\Components\\Atoms\\Container');

$output0 .= '
  ';

at Form_action_form_94aad3fe2278b7b10fe85121e51316de45c53468->section_b28b7af69320201d1cf206ebf28373980add1451()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 257
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 166
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/layout_Default_html_1472ac68465eb2d654d4e3fe95d1596c4f823598.php line 82
'contentAs' => NULL,
'debug' => true,
];

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
 </div>
';
at layout_Default_html_1472ac68465eb2d654d4e3fe95d1596c4f823598->{closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 61
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/var/cache/code/fluid_template/layout_Default_html_1472ac68465eb2d654d4e3fe95d1596c4f823598.php line 93

$arguments1 = [
];

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at layout_Default_html_1472ac68465eb2d654d4e3fe95d1596c4f823598->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 199
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1092
    protected function htmlResponse(string $html = null): ResponseInterface
    {
        return $this->responseFactory->createResponse()
            ->withHeader('Content-Type', 'text/html; charset=utf-8')
            ->withBody($this->streamFactory->createStream((string)($html ?? $this->view->render())));
    }

    /**
     * Returns a response object with either the given json string or the current rendered
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->htmlResponse()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/powermail/Classes/Controller/FormController.php line 87
                'action' => ($this->settings['main']['confirmation'] ? 'confirmation' : 'create'),
            ]
        );

        return $this->htmlResponse();
    }

    /**
     * Rewrite Arguments to receive a clean mail object in confirmationAction
at In2code\Powermail\Controller\FormController->formAction()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 571
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 488
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

        return $response;
    }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 96
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $response = $controller->processRequest($request);
                if ($response instanceof ForwardResponse) {
                    // The controller action returned an extbase internal Forward response:
                    // Another action should be dispatched.
                    $request = static::buildRequestFromCurrentRequestAndForwardResponse($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 46
     * @throws InfiniteLoopException
     */
    public function handleRequest(RequestInterface $request)
    {
        return $this->dispatcher->dispatch($request);
    }

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

        // Dispatch the extbase request
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler($extbaseRequest);
        $response = $requestHandler->handleRequest($extbaseRequest);
        if ($response->getStatusCode() >= 300) {
            // Avoid caching the plugin when we issue a redirect or error response
            // This means that even when an action is configured as cachable
            // we avoid the plugin to be cached, but keep the page cache untouched
at TYPO3\CMS\Extbase\Core\Bootstrap->handleFrontendRequest()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 148
    public function run(string $content, array $configuration, ?ServerRequestInterface $request = null): string
    {
        $request = $request ?? $GLOBALS['TYPO3_REQUEST'];
        $this->initialize($configuration);
        return $this->handleFrontendRequest($request);
    }

    protected function handleFrontendRequest(ServerRequestInterface $request): string
    {
at TYPO3\CMS\Extbase\Core\Bootstrap->run()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5431
                        // Extensions should either drop the property altogether if they don't need current instance
                        // of ContentObjectRenderer, or set the property to protected and use the setter above.
                        $classObj->cObj = $this;
                    }
                    $content = $callable($content, $conf, $this->getRequest());
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2853
                        case 'COA':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->cObjGetSingle('COA', $nonCacheableData[$nonCacheableKey]['conf']);
                            break;
                        case 'FUNC':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->cObjGetSingle('USER', $nonCacheableData[$nonCacheableKey]['conf']);
                            break;
                        case 'POSTUSERFUNC':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->callUserFunction($nonCacheableData[$nonCacheableKey]['postUserFunc'], $nonCacheableData[$nonCacheableKey]['conf'], $nonCacheableData[$nonCacheableKey]['content']);
                            break;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->processNonCacheableContentPartsAndSubstituteContentMarkers()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2811
    protected function recursivelyReplaceIntPlaceholdersInContent(ServerRequestInterface $request)
    {
        do {
            $nonCacheableData = $this->config['INTincScript'];
            $this->processNonCacheableContentPartsAndSubstituteContentMarkers($nonCacheableData, $request);
            // Check if there were new items added to INTincScript during the previous execution:
            // array_diff_assoc throws notices if values are arrays but not strings. We suppress this here.
            $nonCacheableData = @array_diff_assoc($this->config['INTincScript'], $nonCacheableData);
            $reprocess = count($nonCacheableData) > 0;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->recursivelyReplaceIntPlaceholdersInContent()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2780
            $assetCollector = unserialize($this->config['INTincScript_ext']['assetCollector'], ['allowed_classes' => [AssetCollector::class]]);
            GeneralUtility::makeInstance(AssetCollector::class)->updateState($assetCollector->getState());
        }

        $this->recursivelyReplaceIntPlaceholdersInContent($request);
        $this->getTimeTracker()->push('Substitute header section');
        $this->INTincScript_loadJSCode();
        $this->generatePageTitle();

at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->INTincScript()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 165
                    'prefixWithAbsRefPrefix'
                );
            }
            $this->timeTracker->push('Non-cached objects');
            $controller->INTincScript($request);
            $this->timeTracker->pull();
        }

        // Create a default Response object and add headers and body to it
at TYPO3\CMS\Frontend\Http\RequestHandler->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/z7_semantilizer/Classes/Middleware/Request.php line 26
        && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
        && $GLOBALS['TSFE']->set_no_cache(sprintf('Semantilizer frontend request (%s, line %d)', self::class, __LINE__));

        // Go your way …
        return $handler->handle($request);
    }
}
at Zeroseven\Semantilizer\Middleware\Request->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 20
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 42
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)) {
            /* @var PageIndexerRequestHandler $pageIndexerRequestHandler */
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->shutdown();
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerFinisher->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/z7_cookiemanager/Classes/Middleware/FooterData.php line 72
            $this->addNecessaryHTML();
            $this->addJavaScript();
        }

        return $handler->handle($request);
    }
}
at Zeroseven\Z7Cookiemanager\Middleware\FooterData->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/packages/swu_core/Classes/Middleware/HtmlMinifier.php line 45
    }

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        $applicationContext = GeneralUtility::makeInstance(ApplicationContext::class);

        if (
            !$applicationContext->isDevelopment()
at Zeroseven\SwuCore\Middleware\HtmlMinifier->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/routes/Classes/Middleware/ExtbaseRouteResolver.php line 72
            $this->apiHandler->handle($request);
        } catch (ResourceNotFoundException | NoConfigurationException $e) {
            // Usually thrown when requested api slug is not registered.
            // Like `/api/bla`
            return $handler->handle($request);
        } catch (PropagateResponseException $e) {
            // Might be thrown from custom user middlewares for redirects
            return $e->getResponse();
        } catch (Exception $e) {
at LMS\Routes\Middleware\ExtbaseRouteResolver->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 66
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 47
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 128
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

        $response = $handler->handle($request);

        $tsfe = $this->getTypoScriptFrontendController();
        if ($tsfe instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $tsfe->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/z7_cookiemanager/Classes/Middleware/LogConsent.php line 53

            return $this->createStautsResponse(false);
        }

        return $handler->handle($request);
    }
}
at Zeroseven\Z7Cookiemanager\Middleware\LogConsent->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/z7_cookiemanager/Classes/Middleware/JavaScript.php line 147
                'X-Render' => (new ReflectionClass($this))->getShortName()
            ]);
        }

        return $handler->handle($request);
    }
}
at Zeroseven\Z7Cookiemanager\Middleware\JavaScript->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

        return $handler->handle($request);
    }

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 97
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

        $response = $handler->handle($request);

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/fluid_styleguide/Classes/Middleware/StyleguideRouter.php line 81
        $prefix = $prefixWithoutSlash . '/';

        // Check if fluid styleguide should be rendered
        if (strpos($request->getUri()->getPath(), $prefixWithoutSlash) !== 0) {
            return $handler->handle($request);
        }

        // Correct calls without trailing slash in request url
        if (strpos($request->getUri()->getPath(), $prefix) !== 0) {
at Sitegeist\FluidStyleguide\Middleware\StyleguideRouter->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/solr/Classes/Middleware/SolrRoutingMiddleware.php line 140
            $this->language->getLanguageId() === 0 ? (int)$page['uid'] : (int)$page['l10n_parent']
        );

        if ($enhancerConfiguration === null) {
            return $handler->handle($request);
        }

        $this->configure($enhancerConfiguration);

at ApacheSolrForTypo3\Solr\Middleware\SolrRoutingMiddleware->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3conf/ext/zabbix_client/Classes/Middleware/ZabbixClient.php line 48
        if (strpos($requestedUri->getPath(), '/zabbixclient/') === 0) {
            return $this->processRequest($request);
        }

        return $handler->handle($request);
    }

    private function processRequest(ServerRequestInterface $request)
    {
at WapplerSystems\ZabbixClient\Middleware\ZabbixClient->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

        return $handler->handle($request);
    }

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$344->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /var/www/vhosts/facelift/deployment/releases/20240328-144423/public/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});