Symfony Exception

No route found for "GET https://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html" (from "http://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html")

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 34)
  1. /** @var \Pimcore\Kernel $kernel */
  2. $kernel \Pimcore\Bootstrap::kernel();
  3. // reset current request - will be read from request stack from now on
  4. Tool::setCurrentRequest(null);
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ ResourceNotFoundException

None of the routers in the chain matched this request GET /betriebsrat/seminare/ort/hamburg-29.html HTTP/1.1 Accept: */* Connection: close Host: test.ifb.de Range: bytes=0-5242879 Referer: http://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html User-Agent: claudebot X-Forwarded-From: 44.200.196.114 X-Forwarded-Proto: https X-Php-Ob-Level: 1

  1.         $info $request
  2.             "this request\n$request"
  3.             "url '$pathinfo'";
  4.         throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
  5.     }
  6.     /**
  7.      * {@inheritdoc}
  8.      *
  1.      *
  2.      * Loops through all routes and tries to match the passed request.
  3.      */
  4.     public function matchRequest(Request $request)
  5.     {
  6.         return $this->doMatch($request->getPathInfo(), $request);
  7.     }
  8.     /**
  9.      * Loops through all routers and tries to match the passed request or url.
  10.      *
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             if (null !== $this->logger) {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 34)
  1. /** @var \Pimcore\Kernel $kernel */
  2. $kernel \Pimcore\Bootstrap::kernel();
  3. // reset current request - will be read from request stack from now on
  4. Tool::setCurrentRequest(null);
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
DEBUG 16:54:41 doctrine SELECT * FROM website_settings WHERE name = ? AND (siteId IS NULL OR siteId = '' OR siteId = ?) AND (language IS NULL OR language = '' OR language = ?) ORDER BY siteId,language DESC
[
    "AzureBaseUrl",
    null,
    "de"
]
DEBUG 16:54:41 doctrine SELECT * FROM website_settings WHERE id = ?
[
    1
]
DEBUG 16:54:41 doctrine SELECT * FROM website_settings WHERE name = ? AND (siteId IS NULL OR siteId = '' OR siteId = ?) AND (language IS NULL OR language = '' OR language = ?) ORDER BY siteId,language DESC
[
    "RedisServerUrl",
    null,
    "de"
]
DEBUG 16:54:41 doctrine SELECT * FROM website_settings WHERE id = ?
[
    2
]
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getProjectDir()" might add "string" as a native return type declaration in the future. Do the same in child class "Pimcore\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Pimcore\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Pimcore\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\CoreBundle\PimcoreCoreBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getVersion()" might add "string" as a native return type declaration in the future. Do the same in implementation "PimcoreExtension\BrickExtensionBundle\BrickExtensionBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "PimcoreExtension\BrickExtensionBundle\BrickExtensionBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "PimcoreExtension\BrickExtensionBundle\BrickExtensionBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "IfbCustomEditablesBundle\IfbCustomEditablesBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "IfbCustomEditablesBundle\IfbCustomEditablesBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "EmbeddedElementEditorBundle\EmbeddedElementEditorBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "EmbeddedElementEditorBundle\EmbeddedElementEditorBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\BundleInterface::getNamespace()" might add "string" as a native return type declaration in the future. Do the same in implementation "Knp\Bundle\SnappyBundle\KnpSnappyBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\BundleInterface::getPath()" might add "string" as a native return type declaration in the future. Do the same in implementation "Knp\Bundle\SnappyBundle\KnpSnappyBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Countable::count()" might add "int" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Iterator::current()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Iterator::key()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Iterator::next()" might add "void" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Iterator::rewind()" might add "void" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Iterator::valid()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "ArrayAccess::offsetExists()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "ArrayAccess::offsetGet()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "ArrayAccess::offsetSet()" might add "void" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "ArrayAccess::offsetUnset()" might add "void" as a native return type declaration in the future. Do the same in implementation "Pimcore\Config\Config" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "ArrayObject::offsetSet()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Cache\Runtime" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/framework-bundle 5.3: The "session" service and "SessionInterface" alias are deprecated, use "$requestStack->getSession()" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/http-foundation 5.3: The "Symfony\Component\HttpFoundation\Session\Attribute\NamespacedAttributeBag" class is deprecated.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/framework-bundle 5.1: The "session.flash_bag" service is deprecated, use "$session->getFlashBag()" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpFoundation\Session\Attribute\AttributeBagInterface::remove()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Session\Attribute\LockableAttributeBag" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "Symfony\Component\HttpFoundation\Session\SessionBagInterface::clear()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Session\Attribute\LockableAttributeBag" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/cache 5.4: Usage of a DBAL Connection with "Symfony\Component\Cache\Adapter\PdoAdapter" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Cache\Adapter\DoctrineDbalAdapter" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Since symfony/lock 5.4: Usage of a DBAL Connection with "Symfony\Component\Lock\Store\PdoStore" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Lock\Store\DoctrineDbalStore" instead.
{
    "exception": {}
}
INFO 16:54:41 php User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Pimcore\Document\Editable\Block\BlockState" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "\u0000tags\u0000site_domain_cb95bceb [...]",
        "site_domain_cb95bceb88b39a [...]"
    ]
]
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "system\u0000tags\u0000",
        "site\u0000tags\u0000",
        "site_domain_cb95bceb88b39a [...]"
    ]
]
DEBUG 16:54:41 cache Successfully got data for key site_domain_cb95bceb88b39aa969cd796dade5602b from cache
{
    "key": "site_domain_cb95bceb88b39aa969cd796dade5602b"
}
DEBUG 16:54:41 doctrine SELECT * FROM redirects WHERE ( (source = :sourcePath AND (`type` = :typePath OR `type` = :typeAuto)) OR (source = :sourcePathQuery AND `type` = :typePathQuery) OR (source = :sourceEntireUri AND `type` = :typeEntireUri) ) AND active = 1 AND regex IS NULL AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC
{
    "sourcePath": "/betriebsrat/seminare/ort/ [...]",
    "sourcePathQuery": "/betriebsrat/seminare/ort/ [...]",
    "sourceEntireUri": "https://test.ifb.de/betrie [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "\u0000tags\u0000system_route_redirect",
        "system_route_redirect"
    ]
]
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "system\u0000tags\u0000",
        "redirect\u0000tags\u0000",
        "route\u0000tags\u0000",
        "system_route_redirect\u0000tags\u0000"
    ]
]
DEBUG 16:54:41 cache Successfully got data for key system_route_redirect from cache
{
    "key": "system_route_redirect"
}
DEBUG 16:54:41 doctrine SELECT * FROM settings_store WHERE id = :id AND scope = :scope
{
    "id": "reports",
    "scope": "pimcore"
}
DEBUG 16:54:41 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/betriebsrat/seminare/ort/hamburg-29.html/"."
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "hamburg-29.html",
    "path": "/betriebsrat/seminare/ort/"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/betriebsrat/seminare/ort/ [...]"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "hamburg-29.html",
    "path": "/betriebsrat/seminare/ort/"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/betriebsrat/seminare/ort/ [...]"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "ort",
    "path": "/betriebsrat/seminare/"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/betriebsrat/seminare/ort"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "seminare",
    "path": "/betriebsrat/"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/betriebsrat/seminare"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "betriebsrat",
    "path": "/"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/betriebsrat"
}
DEBUG 16:54:41 doctrine SELECT id FROM documents WHERE path = :path AND `key` = :key
{
    "key": "",
    "path": "/"
}
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "\u0000tags\u0000document_1",
        "document_1"
    ]
]
DEBUG 16:54:41 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711641281,
    [
        "document_1\u0000tags\u0000"
    ]
]
DEBUG 16:54:41 cache Successfully got data for key document_1 from cache
{
    "key": "document_1"
}
DEBUG 16:54:41 doctrine SELECT * FROM object_url_slugs WHERE slug = '/betriebsrat/seminare/ort/hamburg-29.html' AND (siteId = 0 OR siteId = 0) ORDER BY siteId DESC LIMIT 1
DEBUG 16:54:41 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 16:54:41 app Router Pimcore\Routing\Element\Router was not able to match, message "No routes found for "/betriebsrat/seminare/ort/hamburg-29.html"."
DEBUG 16:54:41 doctrine SELECT id FROM settings_store WHERE scope = ?
[
    "pimcore_staticroutes"
]
DEBUG 16:54:41 app Router Pimcore\Routing\Staticroute\Router was not able to match, message "No routes found for "/betriebsrat/seminare/ort/hamburg-29.html"."
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
INFO 16:54:41 php User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
DEBUG 16:54:41 doctrine SELECT * FROM redirects WHERE ( (source = :sourcePath AND (`type` = :typePath OR `type` = :typeAuto)) OR (source = :sourcePathQuery AND `type` = :typePathQuery) OR (source = :sourceEntireUri AND `type` = :typeEntireUri) ) AND active = 1 AND regex IS NULL AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL ORDER BY `priority` DESC
{
    "sourcePath": "/betriebsrat/seminare/ort/ [...]",
    "sourcePathQuery": "/betriebsrat/seminare/ort/ [...]",
    "sourceEntireUri": "https://test.ifb.de/betrie [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
ERROR 16:54:41 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html" (from "http://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html")" at /kunden/94981_82418/webseiten/ifb-test.de/vendor/symfony/http-kernel/EventListener/RouterListener.php line 135
{
    "exception": {}
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "App\EventListener\AdminSearchRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\AdminSearchRequestListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 16:54:41 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 16:54:41 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 16:54:41 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 16:54:41 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 16:54:41 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html" (from "http://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html")

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:34)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /betriebsrat/seminare/ort/hamburg-29.html HTTP/1.1
Accept:            */*
Connection:        close
Host:              test.ifb.de
Range:             bytes=0-5242879
Referer:           http://test.ifb.de/betriebsrat/seminare/ort/hamburg-29.html
User-Agent:        claudebot
X-Forwarded-From:  44.200.196.114
X-Forwarded-Proto: https
X-Php-Ob-Level:    1



  at vendor/symfony-cmf/routing/src/ChainRouter.php:210
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:34)                
Loading…
Loading the web debug toolbar…
Attempt #