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) #1476107295 TYPO3\CMS\Core\Error\Exception

PHP Warning: Undefined array key "uid" in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Routing/PageRouter.php line 532

in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Error/ErrorHandler.php line 137
        }

        $message = self::ERROR_LEVEL_LABELS[$errorLevel] . ': ' . $errorMessage . ' in ' . $errorFile . ' line ' . $errorLine;
        if ($errorLevel & $this->exceptionalErrors) {
            throw new Exception($message, 1476107295);
        }

        $message = $this->getFormattedLogMessage($message);

at TYPO3\CMS\Core\Error\ErrorHandler->handleError()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Routing/PageRouter.php line 532
            // forward complete(!) results, not just filtered parameters
            return $enhancer->buildResult($route, $results, $remainingQueryParameters);
        }
        $page = $route->getOption('_page');
        $pageId = (int)(isset($page['t3ver_oid']) && $page['t3ver_oid'] > 0 ? $page['t3ver_oid'] : $page['uid']);
        $pageId = (int)($page['l10n_parent'] > 0 ? $page['l10n_parent'] : $pageId);
        $type = $this->resolveType($route, $remainingQueryParameters);
        // See PageSlugCandidateProvider where this is added.
        if ($page['MPvar'] ?? '') {
at TYPO3\CMS\Core\Routing\PageRouter->buildPageArguments()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Routing/PageRouter.php line 354
                $enhancer = $route->getEnhancer();
                if ($enhancer instanceof InflatableEnhancerInterface) {
                    $remainingQueryParameters = $enhancer->inflateParameters($remainingQueryParameters);
                }
                $pageRouteResult = $this->buildPageArguments($route, array_merge($appliedDefaults, $parameters), $remainingQueryParameters);
                break;
            } catch (MissingMandatoryParametersException $e) {
                // no match
            }
at TYPO3\CMS\Core\Routing\PageRouter->generateUri()
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/typo3conf/ext/yoast_seo/Classes/StructuredData/BreadcrumbStructuredDataProvider.php line 114
            } catch (SiteNotFoundException $e) {
                return '';
            }

            return (string)$site->getRouter()->generateUri($pageId, ['_language' => $this->getLanguage()]);
        }

        $cObj = GeneralUtility::makeInstance(ContentObjectRenderer::class);
        return (string)$cObj->typoLink('', ['parameter' => $pageId, 'returnLast' => 'url', 'forceAbsoluteUrl' => true]);
at YoastSeoForTypo3\YoastSeo\StructuredData\BreadcrumbStructuredDataProvider->getUrlForPage()
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/typo3conf/ext/yoast_seo/Classes/StructuredData/BreadcrumbStructuredDataProvider.php line 62
        $siteRootFound = false;
        foreach ($rootLine as $k => $page) {
            $siteRootFound = $siteRootFound || $page['is_siteroot'];
            if ($siteRootFound && !in_array((int)$page['doktype'], $excludedDoktypes, true)) {
                $url = $this->getUrlForPage($page['uid']);
                if (!empty($url)) {
                    $breadcrumbs[] = [
                        '@type' => 'ListItem',
                        'position' => $iterator,
at YoastSeoForTypo3\YoastSeo\StructuredData\BreadcrumbStructuredDataProvider->getData()
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/typo3conf/ext/yoast_seo/Classes/StructuredData/StructuredDataProviderManager.php line 123
                if (method_exists($structuredDataProviderObject, 'setConfiguration')) {
                    $structuredDataProviderObject->setConfiguration($configuration);
                }

                if ($data = $structuredDataProviderObject->getData()) {
                    $this->pageCache->set(
                        $cacheIdentifier,
                        $data,
                        ['pageId_' . $this->getTypoScriptFrontendController()->page['uid']],
at YoastSeoForTypo3\YoastSeo\StructuredData\StructuredDataProviderManager->getStructuredData()
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/typo3conf/ext/yoast_seo/Classes/StructuredData/StructuredDataProviderManager.php line 63
     */
    public function render(&$params, $pObj)
    {
        if (TYPO3_MODE === 'FE') {
            $data = $this->getStructuredData();

            $params['headerData']['StructuredDataManager'] = $this->sourceComment . PHP_EOL . $this->buildJsonLdBlob($data);
        }
    }
at YoastSeoForTypo3\YoastSeo\StructuredData\StructuredDataProviderManager->render()
at call_user_func_array()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Utility/GeneralUtility.php line 3109
                $methodName = (string)$parts[1];
                $callable = [$classObj, $methodName];
                if (is_callable($callable)) {
                    // Call method:
                    $content = call_user_func_array($callable, [&$params, &$ref]);
                } else {
                    throw new \InvalidArgumentException('No method name \'' . $parts[1] . '\' in class ' . $parts[0], 1294585865);
                }
            } else {
at TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Page/PageRenderer.php line 2758
            'jsFooterLibs' => &$jsFooterLibs,
            'bodyContent' => &$this->bodyContent,
        ];
        foreach ($hooks as $hook) {
            GeneralUtility::callUserFunction($hook, $params, $this);
        }
    }

    /**
at TYPO3\CMS\Core\Page\PageRenderer->executePostRenderHook()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Page/PageRenderer.php line 1921
        $jsFooterFiles .= $assetRenderer->renderInlineStyleSheets();
        $cssLibs .= $assetRenderer->renderStyleSheets(true, $this->endingSlash);
        $cssFiles .= $assetRenderer->renderStyleSheets(false, $this->endingSlash);

        $this->executePostRenderHook($jsLibs, $jsFiles, $jsFooterFiles, $cssLibs, $cssFiles, $jsInline, $cssInline, $jsFooterInline, $jsFooterLibs);
        return [$jsLibs, $jsFiles, $jsFooterFiles, $cssLibs, $cssFiles, $jsInline, $cssInline, $jsFooterInline, $jsFooterLibs];
    }

    /**
at TYPO3\CMS\Core\Page\PageRenderer->renderJavaScriptAndCss()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Page/PageRenderer.php line 1835
     */
    public function renderJavaScriptAndCssForProcessingOfUncachedContentObjects($cachedPageContent, $substituteHash)
    {
        $this->prepareRendering();
        [$jsLibs, $jsFiles, $jsFooterFiles, $cssLibs, $cssFiles, $jsInline, $cssInline, $jsFooterInline, $jsFooterLibs] = $this->renderJavaScriptAndCss();
        $title = $this->title ? str_replace('|', htmlspecialchars($this->title), $this->titleTag) : '';
        $markerArray = [
            '<!-- ###TITLE' . $substituteHash . '### -->' => $title,
            '<!-- ###CSS_LIBS' . $substituteHash . '### -->' => $cssLibs,
at TYPO3\CMS\Core\Page\PageRenderer->renderJavaScriptAndCssForProcessingOfUncachedContentObjects()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2764
            [
                $this->convOutputCharset(implode(LF, $this->additionalHeaderData)),
                $this->convOutputCharset(implode(LF, $this->additionalFooterData)),
            ],
            $this->pageRenderer->renderJavaScriptAndCssForProcessingOfUncachedContentObjects($this->content, $this->config['INTincScript_ext']['divKey'])
        );
        // Replace again, because header and footer data and page renderer replacements may introduce additional placeholders (see #44825)
        $this->recursivelyReplaceIntPlaceholdersInContent($request);
        $this->setAbsRefPrefix();
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->INTincScript()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 46
     * @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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 32
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 84
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$41->handle()
in /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/frontend/Resources/Private/Php/frontend.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 /mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/frontend/Resources/Private/Php/frontend.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();
});
at require('/mnt/web005/e3/39/52429739/htdocs/typo3_src-11.5.8/typo3/sysext/frontend/Resources/Private/Php/frontend.php')
in /mnt/web005/e3/39/52429739/htdocs/muster-11lts/index.php line 3
<?php

require __DIR__ . '/typo3/sysext/frontend/Resources/Private/Php/frontend.php';
##require __DIR__ . '/typo3_src/index.php';