Whoops, looks like something went wrong.

(1/1) Symfony\Component\Routing\Exception\InvalidParameterException

Parameter "tag" for route "enhancer_000000007eac06e9000000006782e5b5" must match "[a-zA-Z0-9].*" ("" given) to generate a corresponding URL.

in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/vendor/symfony/routing/Generator/UrlGenerator.php line 194
                if (!$optional || $important || !\array_key_exists($varName, $defaults) || (null !== $mergedParams[$varName] && (string) $mergedParams[$varName] !== (string) $defaults[$varName])) {
                    // check requirement (while ignoring look-around patterns)
                    if (null !== $this->strictRequirements && !preg_match('#^'.preg_replace('/\(\?(?:=|<=|!|<!)((?:[^()\\\\]+|\\\\.|\((?1)\))*)\)/', '', $token[2]).'$#i'.(empty($token[4]) ? '' : 'u'), $mergedParams[$token[3]] ?? '')) {
                        if ($this->strictRequirements) {
                            throw new InvalidParameterException(strtr($message, ['{parameter}' => $varName, '{route}' => $name, '{expected}' => $token[2], '{given}' => $mergedParams[$varName]]));
                        }

                        if ($this->logger) {
                            $this->logger->error($message, ['parameter' => $varName, 'route' => $name, 'expected' => $token[2], 'given' => $mergedParams[$varName]]);
at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Routing/UrlGenerator.php line 55
        // map default values for URL generation (e.g. '1' becomes 'one' if defined in aspect)
        $mappableProcessor = $this->mappableProcessor ?? new MappableProcessor();
        $mappableProcessor->generate($route, $defaults);

        return parent::doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, $requiredSchemes);
    }
}
at TYPO3\CMS\Core\Routing\UrlGenerator->doGenerate()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/vendor/symfony/routing/Generator/UrlGenerator.php line 161
                $parameters['_locale'] = $defaults['_locale'];
            }
        }

        return $this->doGenerate($variables, $defaults, $route->getRequirements(), $compiledRoute->getTokens(), $parameters, $name, $referenceType, $compiledRoute->getHostTokens(), $route->getSchemes());
    }

    /**
     * @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route
at Symfony\Component\Routing\Generator\UrlGenerator->generate()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Routing/PageRouter.php line 349
                    $parameters = $route->getOption('deflatedParameters');
                }
                $mappableProcessor->generate($route, $parameters);
                // ABSOLUTE_URL is used as default fallback
                $urlAsString = $generator->generate($routeName, $parameters, $referenceType);
                $uri = new Uri($urlAsString);
                /** @var Route $matchedRoute */
                $matchedRoute = $collection->get($routeName);
                // fetch potential applied defaults for later cHash generation
at TYPO3\CMS\Core\Routing\PageRouter->generateUri()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 499
                $uri = $siteOfTargetPage->getRouter()->generateUri(
                    $targetPageId,
                    $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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 166
                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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4789
                // 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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 2332
     * @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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1348
                    $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]) {
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1739
     * @return string The processed input value
     */
    public function stdWrap_stdWrap($content = '', $conf = [])
    {
        return $this->stdWrap($content, $conf['stdWrap.']);
    }

    /**
     * stdWrap process hook
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap_stdWrap()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1348
                    $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]) {
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 801
        }

        // 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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
            $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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1546
     * @return string The processed input value
     */
    public function stdWrap_cObject($content = '', $conf = [])
    {
        return $this->cObjGetSingle($conf['cObject'] ?? '', $conf['cObject.'] ?? [], '/stdWrap/.cObject');
    }

    /**
     * numRows
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap_cObject()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1348
                    $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]) {
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1380
            $config[$key] = '';
        } else {
            return $defaultValue;
        }
        $stdWrapped = $this->stdWrap($config[$key], $config[$key . '.']);
        // The string "0" should be returned.
        return $stdWrapped !== '' ? $stdWrapped : $defaultValue;
    }

at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrapValue()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/Menu/TextMenuContentObject.php line 181
     * @return string The resulting HTML
     */
    protected function getBeforeAfter($pref)
    {
        $processedPref = $this->WMcObj->stdWrapValue($pref, $this->I['val']);
        if (isset($this->I['val'][$pref . 'Wrap'])) {
            return $this->WMcObj->wrap($processedPref, $this->I['val'][$pref . 'Wrap']);
        }
        return $processedPref;
at TYPO3\CMS\Frontend\ContentObject\Menu\TextMenuContentObject->getBeforeAfter()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/Menu/TextMenuContentObject.php line 145
                $this->I['parts']['ATag_end'] = $this->I['A2'];
                $this->I['parts']['notATagBeforeWrap_end'] = $wrapPartsAfter[1] ?? '';
            }
            $this->I['parts']['stdWrap2_end'] = $wrapPartsStdWrap[1];
            $this->I['parts']['after'] = $this->getBeforeAfter('after');
            // Passing I to a user function
            if ($this->mconf['IProcFunc'] ?? false) {
                $this->I = $this->userProcess('IProcFunc', $this->I);
            }
at TYPO3\CMS\Frontend\ContentObject\Menu\TextMenuContentObject->writeMenu()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/HierarchicalMenuContentObject.php line 57
            $frontendController->register['count_MENUOBJ'] = 0;
            $menu->parent_cObj = $this->cObj;
            $menu->start($frontendController->tmpl, $this->getPageRepository(), '', $conf, 1, '', $this->request);
            $menu->makeMenu();
            $theValue .= $menu->writeMenu();
        } catch (NoSuchMenuTypeException $e) {
        }
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        if ($wrap) {
at TYPO3\CMS\Frontend\ContentObject\HierarchicalMenuContentObject->render()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 801
        }

        // 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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
            $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/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 699
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 697
            }
        }
        // Headerdata
        if (is_array($controller->pSetup['headerData.'] ?? null)) {
            $pageRenderer->addHeaderData($controller->cObj->cObjGet($controller->pSetup['headerData.'], 'headerData.'));
        }
        // Footerdata
        if (is_array($controller->pSetup['footerData.'] ?? null)) {
            $pageRenderer->addFooterData($controller->cObj->cObjGet($controller->pSetup['footerData.'], 'footerData.'));
at TYPO3\CMS\Frontend\Http\RequestHandler->processHtmlBasedRenderingSettings()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 195
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
        // Now, populate pageRenderer with all additional data
        $this->processHtmlBasedRenderingSettings($controller, $controller->getLanguage(), $request);
        $pageRenderer = $this->getPageRenderer();
        // Add previously generated page content within the <body> tag afterwards
        $pageRenderer->addBodyContent(LF . $pageContent);
        if ($controller->isINTincScript()) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

            $controller->content = $this->generatePageContent($controller, $request);

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();

at TYPO3\CMS\Frontend\Http\RequestHandler->handle()
in /var/www/vhosts/gergonne.com/httpdocs/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 91
        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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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 class@anonymous/var/www/vhosts/gergonne.com/typo3_src-11.5.19/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$bab->handle()
in /var/www/vhosts/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/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/gergonne.com/typo3_src-11.5.19/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __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/gergonne.com/typo3_src-11.5.19/index.php line 21
call_user_func(static function () {
    $classLoader = require __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();
});