Symfony Exception

No route found for "GET https://dev4-13.premium-contao-themes.com/catalog-reader/italiano.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->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  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.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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(object(Request)) in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request Request::createFromGlobals();
  3. $kernel ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7.     $kernel->terminate($request$response);
  8. }

Symfony\Component\Routing\Exception\ ResourceNotFoundException

None of the routers in the chain matched this request GET /catalog-reader/italiano.html HTTP/2.0 Accept: */* Host: dev4-13.premium-contao-themes.com User-Agent: claudebot X-Php-Ob-Level: 0

  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->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  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.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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(object(Request)) in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request Request::createFromGlobals();
  3. $kernel ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7.     $kernel->terminate($request$response);
  8. }

Logs 1

Level Channel Message
INFO 10:08:25 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 10:08:25 deprecation 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 10:08:25 deprecation User Deprecated: Since contao/core-bundle 4.10: Using the "Contao\CoreBundle\Routing\FrontendLoader" class has been deprecated and will no longer work in Contao 5.0. Use Symfony routing instead.
{
    "exception": {}
}
DEBUG 10:08:25 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/catalog-reader/italiano.html/"."
INFO 10:08:25 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "charset": "utf8mb4",
        "host": "localhost",
        "port": 3306,
        "user": "d038fba0",
        "password": "<redacted>",
        "driverOptions": {
            "1013": false,
            "1002": "SET SESSION sql_mode=CONCAT(@@sql_mode, IF(INSTR(@@sql_mode, 'STRICT_'), '', ',TRADITIONAL'))"
        },
        "defaultTableOptions": {
            "charset": "utf8mb4",
            "collation": "utf8mb4_unicode_ci",
            "engine": "InnoDB",
            "row_format": "DYNAMIC",
            "collate": "utf8mb4_unicode_ci"
        },
        "dbname": "d038fba0"
    }
}
DEBUG 10:08:25 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
DEBUG 10:08:25 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
DEBUG 10:08:25 doctrine Executing statement: SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = ? AND TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME (parameters: {params}, types: {types})
{
    "sql": "SELECT TABLE_NAME\nFROM information_schema.TABLES\nWHERE TABLE_SCHEMA = ?\n  AND TABLE_TYPE = 'BASE TABLE'\nORDER BY TABLE_NAME",
    "params": {
        "1": "d038fba0"
    },
    "types": {
        "1": 2
    }
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Contao\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getSalt()" might add "?string" as a native return type declaration in the future. Do the same in implementation "Contao\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Contao\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Contao\BackendUser" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Contao\BackendUser" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Since symfony/security-bundle 5.3: Accessing the "security.token_storage" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:08:25 doctrine Executing query: SELECT * FROM tl_pct_customelement WHERE alias!='' AND tstamp > 0 ORDER BY title
{
    "sql": "SELECT * FROM tl_pct_customelement WHERE alias!='' AND tstamp > 0 ORDER BY title"
}
DEBUG 10:08:25 doctrine Executing query: SELECT * FROM tl_pct_customelement_group WHERE tstamp > 0 AND pid IN(152,151,91,143,76,79,120,129,130,75,131,133,90,80,119,53,28,154,19,71,9,107,67,140,149,150,116,137,99,82,141,78,5,113,112,111,44,47,46,15,13,52,51,64,61,65,66,4,108,134,88,77,109,45,127,126,125,27,29,33,94,54,144,100,7,106,105,32,83,70,93,6,23,86,121,98,97,39,38,40,2,11,3,95,49,68,43,21,117,42,136,20,145,146,142,114,148,147,41,124,122,123)
{
    "sql": "SELECT * FROM tl_pct_customelement_group WHERE tstamp > 0 AND pid IN(152,151,91,143,76,79,120,129,130,75,131,133,90,80,119,53,28,154,19,71,9,107,67,140,149,150,116,137,99,82,141,78,5,113,112,111,44,47,46,15,13,52,51,64,61,65,66,4,108,134,88,77,109,45,127,126,125,27,29,33,94,54,144,100,7,106,105,32,83,70,93,6,23,86,121,98,97,39,38,40,2,11,3,95,49,68,43,21,117,42,136,20,145,146,142,114,148,147,41,124,122,123)"
}
DEBUG 10:08:25 doctrine Executing query: SELECT * FROM tl_pct_customelement_attribute WHERE tstamp > 0 AND pid IN(2,4,5,6,7,8,9,10,17,18,19,20,21,24,27,28,29,30,31,32,33,37,38,39,40,44,45,46,52,53,56,66,67,68,69,70,71,73,76,77,78,79,81,82,83,84,85,86,88,89,97,100,101,102,103,104,106,107,117,121,122,123,125,126,127,128,130,131,132,133,134,135,137,138,139,142,143,144,149,150,151,154,155,156,157,158,159,160,161,162,168,169,170,171,172,173,179,180,181,182,189,190,191,231,235,236,237,238,245,247,252,254,255,256,257,258,259,262,267,268,273,274,275,281,284,286,287,290,291,292,293,294,295,297,300,301,303,308,310,312,313,316,317,319,320,321,322,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,424,425,426,427,428,429,430,432,433,440)
{
    "sql": "SELECT * FROM tl_pct_customelement_attribute WHERE tstamp > 0 AND pid IN(2,4,5,6,7,8,9,10,17,18,19,20,21,24,27,28,29,30,31,32,33,37,38,39,40,44,45,46,52,53,56,66,67,68,69,70,71,73,76,77,78,79,81,82,83,84,85,86,88,89,97,100,101,102,103,104,106,107,117,121,122,123,125,126,127,128,130,131,132,133,134,135,137,138,139,142,143,144,149,150,151,154,155,156,157,158,159,160,161,162,168,169,170,171,172,173,179,180,181,182,189,190,191,231,235,236,237,238,245,247,252,254,255,256,257,258,259,262,267,268,273,274,275,281,284,286,287,290,291,292,293,294,295,297,300,301,303,308,310,312,313,316,317,319,320,321,322,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,424,425,426,427,428,429,430,432,433,440)"
}
INFO 10:08:25 deprecation User Deprecated: Since contao/core-bundle 4.3: Using the "dcaconfig.php" file has been deprecated and will no longer work in Contao 5.0. Create custom DCA files in the "contao/dca" folder instead.
{
    "exception": {}
}
DEBUG 10:08:25 doctrine Executing statement: SELECT * FROM tl_files WHERE tl_files.`path`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tl_files WHERE tl_files.`path`=? LIMIT 0,1",
    "params": {
        "1": "files/cto_layout/css/themify-icons.css"
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:08:25 doctrine Executing query: SELECT * FROM tl_pct_customcatalog_api WHERE published=1 AND cronjob=1 AND cron!=''
{
    "sql": "SELECT * FROM tl_pct_customcatalog_api WHERE published=1 AND cronjob=1 AND cron!=''"
}
INFO 10:08:25 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "initconfig.php" file has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "Contao\RequestToken" class has been deprecated and will no longer work in Contao 5.0. Use the Symfony CSRF service via the container instead.
{
    "exception": {}
}
DEBUG 10:08:25 app Router Symfony\Cmf\Component\Routing\DynamicRouter was not able to match, message ""
DEBUG 10:08:25 app Router Symfony\Cmf\Component\Routing\DynamicRouter was not able to match, message "No routes found for "/catalog-reader/italiano.html"."
INFO 10:08:25 deprecation User Deprecated: Since contao/core-bundle 4.3: Using the "dcaconfig.php" file has been deprecated and will no longer work in Contao 5.0. Create custom DCA files in the "contao/dca" folder instead.
{
    "exception": {}
}
DEBUG 10:08:25 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=? (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=?",
    "params": {
        "1": "error_404"
    },
    "types": {
        "1": 2
    }
}
INFO 10:08:25 deprecation User Deprecated: Method "ArrayAccess::offsetSet()" might add "void" as a native return type declaration in the future. Do the same in implementation "Contao\Model\Collection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:08:25 deprecation User Deprecated: Method "ArrayAccess::offsetUnset()" might add "void" as a native return type declaration in the future. Do the same in implementation "Contao\Model\Collection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 10:08:25 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.`id`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.`id`=? LIMIT 0,1",
    "params": {
        "1": 1
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:08:25 doctrine Executing query: SELECT urlPrefix, urlSuffix FROM tl_page WHERE type='root'
{
    "sql": "SELECT urlPrefix, urlSuffix FROM tl_page WHERE type='root'"
}
DEBUG 10:08:25 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.alias IN (?,?,?) (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.alias IN (?,?,?)",
    "params": {
        "1": "catalog-reader/italiano",
        "2": "catalog-reader",
        "3": "catalog-reader/italiano.html"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2
    }
}
INFO 10:08:25 deprecation User Deprecated: Method "Symfony\Cmf\Component\Routing\RouteObjectInterface::getContent()" might add "?object" as a native return type declaration in the future. Do the same in implementation "Contao\CoreBundle\Routing\Page\PageRoute" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 10:08:25 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.`id`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.`id`=? LIMIT 0,1",
    "params": {
        "1": 381
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:08:25 app Router Symfony\Cmf\Component\Routing\DynamicRouter was not able to match, message "No routes found for "/catalog-reader/italiano.html"."
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
INFO 10:08:25 deprecation User Deprecated: Since symfony/security-core 5.4: Passing the access decision strategy as a string is deprecated, pass an instance of "Symfony\Component\Security\Core\Authorization\Strategy\AccessDecisionStrategyInterface" instead.
{
    "exception": {}
}
INFO 10:08:25 deprecation 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": {}
}
ERROR 10:08:25 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://dev4-13.premium-contao-themes.com/catalog-reader/italiano.html"" at /www/htdocs/w01af519/dev4-13.premium-contao-themes.com/vendor/symfony/http-kernel/EventListener/RouterListener.php line 135
{
    "exception": {}
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
DEBUG 10:08:25 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 10:08:25 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:08:25 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:08:25 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"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://dev4-13.premium-contao-themes.com/catalog-reader/italiano.html"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/index.php:44)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /catalog-reader/italiano.html HTTP/2.0
Accept:         */*
Host:           dev4-13.premium-contao-themes.com
User-Agent:     claudebot
X-Php-Ob-Level: 0



  at vendor/symfony-cmf/routing/src/ChainRouter.php:210
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch('/catalog-reader/italiano.html', object(Request))
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/index.php:44)                
Loading…
Loading the web debug toolbar…
Attempt #