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/3) #1146 Doctrine\DBAL\Exception\TableNotFoundException

An exception occurred while executing a query: Table 'usr_p665169_2.tx_jobapplications_domain_model_posting' doesn't exist

in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php line 49
                return new TableExistsException($exception, $query);

            case 1051:
            case 1146:
                return new TableNotFoundException($exception, $query);

            case 1216:
            case 1217:
            case 1451:
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Doctrine\DBAL\Driver\Mysqli\Exception\ConnectionError), object(Doctrine\DBAL\Query))
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Connection.php line 1943
        Driver\Exception $driverException,
        ?Query $query
    ): DriverException {
        $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
        $exception                  = $this->exceptionConverter->convert($driverException, $query);

        if ($exception instanceof ConnectionLost) {
            $this->close();
        }
at Doctrine\DBAL\Connection->handleDriverException(object(Doctrine\DBAL\Driver\Mysqli\Exception\ConnectionError), object(Doctrine\DBAL\Query))
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Connection.php line 1885
        string $sql,
        array $params = [],
        array $types = []
    ): DriverException {
        return $this->handleDriverException($e, new Query($sql, $params, $types));
    }

    /** @internal */
    final public function convertException(Driver\Exception $e): DriverException
at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Doctrine\DBAL\Driver\Mysqli\Exception\ConnectionError), 'SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?', array('event/erste-hilfe-fuer-fahrschueler-06/'), array(2))
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Connection.php line 1106
            }

            return new Result($result, $this);
        } catch (Driver\Exception $e) {
            throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
        } finally {
            if ($logger !== null) {
                $logger->stopQuery();
            }
at Doctrine\DBAL\Connection->executeQuery('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?', array('event/erste-hilfe-fuer-fahrschueler-06/'), array(2), null)
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Query/QueryBuilder.php line 344
     * @throws Exception
     */
    public function executeQuery(): Result
    {
        return $this->connection->executeQuery(
            $this->getSQL(),
            $this->params,
            $this->paramTypes,
            $this->resultCacheProfile,
at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 278
    {
        // Set additional query restrictions
        $originalWhereConditions = $this->addAdditionalWhereConditions();

        $result = $this->concreteQueryBuilder->executeQuery();

        // Restore the original query conditions in case the user keeps
        // on modifying the state.
        $this->concreteQueryBuilder->add('where', $originalWhereConditions, false);
at TYPO3\CMS\Core\Database\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 238

        $results = $queryBuilder
            ->select(...$this->persistenceFieldNames)
            ->where(...$constraints)
            ->executeQuery()
            ->fetchAllAssociative();
        // limit results to be contained in rootPageId of current Site
        // (which is defining the route configuration currently being processed)
        if ($this->slugUniqueInSite) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->findByRouteFieldValue('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 161
     */
    public function resolve(string $value): ?string
    {
        $value = $this->routeValuePrefix . $this->purgeRouteValuePrefix($value);
        $result = $this->findByRouteFieldValue($value);
        if (($result[$this->languageParentFieldName] ?? null) > 0) {
            return (string)$result[$this->languageParentFieldName];
        }
        if (isset($result['uid'])) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->resolve('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 36
        }

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->resolve(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                if (!$mapper instanceof UnresolvedValueInterface || !$mapper->hasFallbackValue()) {
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->resolve(object(TYPO3\CMS\Core\Routing\Route), array('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', 'p4f1f1488d8e334fded0df0613ae18c' => 'event/erste-hilfe-fuer-fahrschueler-06/', 'event/erste-hilfe-fuer-fahrschueler-06/'))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 93
                continue;
            }

            // custom handling of Mappable instances
            if (!$this->mappableProcessor->resolve($route, $matches)) {
                continue;
            }

            return $this->getAttributes($route, $name, $matches);
at TYPO3\CMS\Core\Routing\PageUriMatcher->matchCollection('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', object(TYPO3\CMS\Core\Routing\RouteCollection))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 61
     * @throws ResourceNotFoundException
     */
    public function match(string $urlPath)
    {
        if ($ret = $this->matchCollection(rawurldecode($urlPath), $this->routes)) {
            return $ret;
        }
        throw new ResourceNotFoundException(
            sprintf('No routes found for "%s".', $urlPath),
at TYPO3\CMS\Core\Routing\PageUriMatcher->match('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageRouter.php line 181
        }

        $matcher = new PageUriMatcher($fullCollection);
        try {
            $result = $matcher->match($prefixedUrlPath);
            /** @var Route $matchedRoute */
            $matchedRoute = $fullCollection->get($result['_route']);
            // Only use route if page language variant matches current language, otherwise handle it as route not found.
            if ($this->isRouteReallyValidForLanguage($matchedRoute, $language)) {
at TYPO3\CMS\Core\Routing\PageRouter->matchRequest(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Core\Routing\SiteRouteResult))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 71

        // Check for the route arguments or Query Parameter ID
        try {
            /** @var PageArguments $pageArguments */
            $pageArguments = $site->getRouter()->matchRequest($request, $previousResult);
            $request = $request->withAttribute('routing', $pageArguments);
        } catch (RouteNotFoundException $e) {
            return GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
                $request,
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 63

                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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 72
        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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 53
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 48
    {
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/vhs/Classes/Middleware/RequestAvailability.php line 14
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $GLOBALS['TYPO3_REQUEST'] = $GLOBALS['TYPO3_REQUEST'] ?? $request;
        return $handler->handle($request);
    }
}
at FluidTYPO3\Vhs\Middleware\RequestAvailability->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 46
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // 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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-12.4.13/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 /html/typo3/typo3_src-12.4.13/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();
});

(2/3) #1146 Doctrine\DBAL\Driver\Mysqli\Exception\ConnectionError

Table 'usr_p665169_2.tx_jobapplications_domain_model_posting' doesn't exist

in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Driver/Mysqli/Exception/ConnectionError.php line 29
    {
        $p = new ReflectionProperty(mysqli_sql_exception::class, 'sqlstate');
        $p->setAccessible(true);

        return new self($exception->getMessage(), $p->getValue($exception), (int) $exception->getCode(), $exception);
    }
}
at Doctrine\DBAL\Driver\Mysqli\Exception\ConnectionError::upcast(object(mysqli_sql_exception))
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Driver/Mysqli/Connection.php line 58
    {
        try {
            $stmt = $this->connection->prepare($sql);
        } catch (mysqli_sql_exception $e) {
            throw ConnectionError::upcast($e);
        }

        if ($stmt === false) {
            throw ConnectionError::new($this->connection);
at Doctrine\DBAL\Driver\Mysqli\Connection->prepare('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?')
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Connection.php line 1095
                if ($this->needsArrayParameterConversion($params, $types)) {
                    [$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
                }

                $stmt = $connection->prepare($sql);

                $this->bindParameters($stmt, $params, $types);

                $result = $stmt->execute();
at Doctrine\DBAL\Connection->executeQuery('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?', array('event/erste-hilfe-fuer-fahrschueler-06/'), array(2), null)
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Query/QueryBuilder.php line 344
     * @throws Exception
     */
    public function executeQuery(): Result
    {
        return $this->connection->executeQuery(
            $this->getSQL(),
            $this->params,
            $this->paramTypes,
            $this->resultCacheProfile,
at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 278
    {
        // Set additional query restrictions
        $originalWhereConditions = $this->addAdditionalWhereConditions();

        $result = $this->concreteQueryBuilder->executeQuery();

        // Restore the original query conditions in case the user keeps
        // on modifying the state.
        $this->concreteQueryBuilder->add('where', $originalWhereConditions, false);
at TYPO3\CMS\Core\Database\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 238

        $results = $queryBuilder
            ->select(...$this->persistenceFieldNames)
            ->where(...$constraints)
            ->executeQuery()
            ->fetchAllAssociative();
        // limit results to be contained in rootPageId of current Site
        // (which is defining the route configuration currently being processed)
        if ($this->slugUniqueInSite) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->findByRouteFieldValue('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 161
     */
    public function resolve(string $value): ?string
    {
        $value = $this->routeValuePrefix . $this->purgeRouteValuePrefix($value);
        $result = $this->findByRouteFieldValue($value);
        if (($result[$this->languageParentFieldName] ?? null) > 0) {
            return (string)$result[$this->languageParentFieldName];
        }
        if (isset($result['uid'])) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->resolve('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 36
        }

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->resolve(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                if (!$mapper instanceof UnresolvedValueInterface || !$mapper->hasFallbackValue()) {
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->resolve(object(TYPO3\CMS\Core\Routing\Route), array('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', 'p4f1f1488d8e334fded0df0613ae18c' => 'event/erste-hilfe-fuer-fahrschueler-06/', 'event/erste-hilfe-fuer-fahrschueler-06/'))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 93
                continue;
            }

            // custom handling of Mappable instances
            if (!$this->mappableProcessor->resolve($route, $matches)) {
                continue;
            }

            return $this->getAttributes($route, $name, $matches);
at TYPO3\CMS\Core\Routing\PageUriMatcher->matchCollection('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', object(TYPO3\CMS\Core\Routing\RouteCollection))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 61
     * @throws ResourceNotFoundException
     */
    public function match(string $urlPath)
    {
        if ($ret = $this->matchCollection(rawurldecode($urlPath), $this->routes)) {
            return $ret;
        }
        throw new ResourceNotFoundException(
            sprintf('No routes found for "%s".', $urlPath),
at TYPO3\CMS\Core\Routing\PageUriMatcher->match('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageRouter.php line 181
        }

        $matcher = new PageUriMatcher($fullCollection);
        try {
            $result = $matcher->match($prefixedUrlPath);
            /** @var Route $matchedRoute */
            $matchedRoute = $fullCollection->get($result['_route']);
            // Only use route if page language variant matches current language, otherwise handle it as route not found.
            if ($this->isRouteReallyValidForLanguage($matchedRoute, $language)) {
at TYPO3\CMS\Core\Routing\PageRouter->matchRequest(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Core\Routing\SiteRouteResult))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 71

        // Check for the route arguments or Query Parameter ID
        try {
            /** @var PageArguments $pageArguments */
            $pageArguments = $site->getRouter()->matchRequest($request, $previousResult);
            $request = $request->withAttribute('routing', $pageArguments);
        } catch (RouteNotFoundException $e) {
            return GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
                $request,
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 63

                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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 72
        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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 53
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 48
    {
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/vhs/Classes/Middleware/RequestAvailability.php line 14
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $GLOBALS['TYPO3_REQUEST'] = $GLOBALS['TYPO3_REQUEST'] ?? $request;
        return $handler->handle($request);
    }
}
at FluidTYPO3\Vhs\Middleware\RequestAvailability->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 46
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // 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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-12.4.13/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 /html/typo3/typo3_src-12.4.13/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();
});

(3/3) #1146 mysqli_sql_exception

Table 'usr_p665169_2.tx_jobapplications_domain_model_posting' doesn't exist

in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Driver/Mysqli/Connection.php line 56

    public function prepare(string $sql): DriverStatement
    {
        try {
            $stmt = $this->connection->prepare($sql);
        } catch (mysqli_sql_exception $e) {
            throw ConnectionError::upcast($e);
        }

at mysqli->prepare('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?')
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Driver/Mysqli/Connection.php line 56

    public function prepare(string $sql): DriverStatement
    {
        try {
            $stmt = $this->connection->prepare($sql);
        } catch (mysqli_sql_exception $e) {
            throw ConnectionError::upcast($e);
        }

at Doctrine\DBAL\Driver\Mysqli\Connection->prepare('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?')
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Connection.php line 1095
                if ($this->needsArrayParameterConversion($params, $types)) {
                    [$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
                }

                $stmt = $connection->prepare($sql);

                $this->bindParameters($stmt, $params, $types);

                $result = $stmt->execute();
at Doctrine\DBAL\Connection->executeQuery('SELECT `uid`, `pid`, `slug` FROM `tx_jobapplications_domain_model_posting` WHERE `slug` = ?', array('event/erste-hilfe-fuer-fahrschueler-06/'), array(2), null)
in /html/typo3/typo3_src-12.4.13/vendor/doctrine/dbal/src/Query/QueryBuilder.php line 344
     * @throws Exception
     */
    public function executeQuery(): Result
    {
        return $this->connection->executeQuery(
            $this->getSQL(),
            $this->params,
            $this->paramTypes,
            $this->resultCacheProfile,
at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 278
    {
        // Set additional query restrictions
        $originalWhereConditions = $this->addAdditionalWhereConditions();

        $result = $this->concreteQueryBuilder->executeQuery();

        // Restore the original query conditions in case the user keeps
        // on modifying the state.
        $this->concreteQueryBuilder->add('where', $originalWhereConditions, false);
at TYPO3\CMS\Core\Database\Query\QueryBuilder->executeQuery()
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 238

        $results = $queryBuilder
            ->select(...$this->persistenceFieldNames)
            ->where(...$constraints)
            ->executeQuery()
            ->fetchAllAssociative();
        // limit results to be contained in rootPageId of current Site
        // (which is defining the route configuration currently being processed)
        if ($this->slugUniqueInSite) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->findByRouteFieldValue('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/PersistedAliasMapper.php line 161
     */
    public function resolve(string $value): ?string
    {
        $value = $this->routeValuePrefix . $this->purgeRouteValuePrefix($value);
        $result = $this->findByRouteFieldValue($value);
        if (($result[$this->languageParentFieldName] ?? null) > 0) {
            return (string)$result[$this->languageParentFieldName];
        }
        if (isset($result['uid'])) {
at TYPO3\CMS\Core\Routing\Aspect\PersistedAliasMapper->resolve('event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 36
        }

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->resolve(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                if (!$mapper instanceof UnresolvedValueInterface || !$mapper->hasFallbackValue()) {
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->resolve(object(TYPO3\CMS\Core\Routing\Route), array('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', 'p4f1f1488d8e334fded0df0613ae18c' => 'event/erste-hilfe-fuer-fahrschueler-06/', 'event/erste-hilfe-fuer-fahrschueler-06/'))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 93
                continue;
            }

            // custom handling of Mappable instances
            if (!$this->mappableProcessor->resolve($route, $matches)) {
                continue;
            }

            return $this->getAttributes($route, $name, $matches);
at TYPO3\CMS\Core\Routing\PageUriMatcher->matchCollection('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/', object(TYPO3\CMS\Core\Routing\RouteCollection))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 61
     * @throws ResourceNotFoundException
     */
    public function match(string $urlPath)
    {
        if ($ret = $this->matchCollection(rawurldecode($urlPath), $this->routes)) {
            return $ret;
        }
        throw new ResourceNotFoundException(
            sprintf('No routes found for "%s".', $urlPath),
at TYPO3\CMS\Core\Routing\PageUriMatcher->match('/ueber-uns/veranstaltungssystem/seminar-detail/event/erste-hilfe-fuer-fahrschueler-06/')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageRouter.php line 181
        }

        $matcher = new PageUriMatcher($fullCollection);
        try {
            $result = $matcher->match($prefixedUrlPath);
            /** @var Route $matchedRoute */
            $matchedRoute = $fullCollection->get($result['_route']);
            // Only use route if page language variant matches current language, otherwise handle it as route not found.
            if ($this->isRouteReallyValidForLanguage($matchedRoute, $language)) {
at TYPO3\CMS\Core\Routing\PageRouter->matchRequest(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Core\Routing\SiteRouteResult))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 71

        // Check for the route arguments or Query Parameter ID
        try {
            /** @var PageArguments $pageArguments */
            $pageArguments = $site->getRouter()->matchRequest($request, $previousResult);
            $request = $request->withAttribute('routing', $pageArguments);
        } catch (RouteNotFoundException $e) {
            return GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
                $request,
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 63

                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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 72
        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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 53
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 48
    {
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/vhs/Classes/Middleware/RequestAvailability.php line 14
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $GLOBALS['TYPO3_REQUEST'] = $GLOBALS['TYPO3_REQUEST'] ?? $request;
        return $handler->handle($request);
    }
}
at FluidTYPO3\Vhs\Middleware\RequestAvailability->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 46
        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$fe->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // 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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-12.4.13/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 /html/typo3/typo3_src-12.4.13/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();
});