Symfony Exception

Page not found: https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             case 'InternalServerErrorHttpException':
  2.                 return new InternalServerErrorHttpException($exception->getMessage(), $exception);
  3.             case 'NotFoundHttpException':
  4.                 return new NotFoundHttpException($exception->getMessage(), $exception);
  5.             case 'ServiceUnavailableHttpException':
  6.                 return new ServiceUnavailableHttpException(''$exception->getMessage(), $exception);
  7.             case 'UnauthorizedHttpException':
  1.         if (null === $class) {
  2.             return;
  3.         }
  4.         if (null !== ($httpException $this->convertToHttpException($exception$class))) {
  5.             $event->setThrowable($httpException);
  6.         }
  7.     }
  8.     private function getTargetClass(\Throwable $exception): ?string
  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.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 86)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.         }
  8.     }
  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. }

Contao\CoreBundle\Exception\ PageNotFoundException

Page not found: https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html

  1.         $objArticle NewsModel::findPublishedByParentAndIdOrAlias(Input::get('items'), $this->news_archives);
  2.         // The news item does not exist (see #33)
  3.         if ($objArticle === null)
  4.         {
  5.             throw new PageNotFoundException('Page not found: ' Environment::get('uri'));
  6.         }
  7.         // Redirect if the news item has a target URL (see #1498)
  8.         switch ($objArticle->source) {
  9.             case 'internal':
  1.     public function generate()
  2.     {
  3.         $this->Template = new FrontendTemplate($this->strTemplate);
  4.         $this->Template->setData($this->arrData);
  5.         $this->compile();
  6.         // Do not change this order (see #6191)
  7.         $this->Template->style = !empty($this->arrStyle) ? implode(' '$this->arrStyle) : '';
  8.         $this->Template->class trim('mod_' $this->type ' ' . ($this->cssID[1] ?? ''));
  9.         $this->Template->cssID = !empty($this->cssID[0]) ? ' id="' $this->cssID[0] . '"' '';
  1.         if (empty($this->news_archives) || !\is_array($this->news_archives))
  2.         {
  3.             throw new InternalServerErrorException('The news reader ID ' $this->id ' has no archives specified.');
  4.         }
  5.         return parent::generate();
  6.     }
  7.     /**
  8.      * Generate the module
  9.      */
  1.         if ($this->objModel !== null)
  2.         {
  3.             System::getContainer()->get('contao.cache.entity_tags')->tagWithModelInstance($this->objModel);
  4.         }
  5.         $strBuffer $objModule->generate();
  6.         if (isset($objStopwatch) && $objStopwatch->isStarted($strStopWatchId))
  7.         {
  8.             $objStopwatch->stop($strStopWatchId);
  9.         }
  1.             $objStopwatch->start($strStopWatchId'contao.layout');
  2.         }
  3.         /** @var ContentElement $objElement */
  4.         $objElement = new $strClass($objRow$strColumn);
  5.         $strBuffer $objElement->generate();
  6.         // HOOK: add custom logic
  7.         if (isset($GLOBALS['TL_HOOKS']['getContentElement']) && \is_array($GLOBALS['TL_HOOKS']['getContentElement']))
  8.         {
  9.             foreach ($GLOBALS['TL_HOOKS']['getContentElement'] as $callback)
  1.         if ($objCte !== null)
  2.         {
  3.             while ($objCte->next())
  4.             {
  5.                 $arrElements[] = $this->getContentElement($objCte->current(), $this->strColumn);
  6.             }
  7.         }
  8.         $this->Template->teaser $this->teaser;
  9.         $this->Template->elements $arrElements;
  1.     public function generate()
  2.     {
  3.         $this->Template = new FrontendTemplate($this->strTemplate);
  4.         $this->Template->setData($this->arrData);
  5.         $this->compile();
  6.         // Do not change this order (see #6191)
  7.         $this->Template->style = !empty($this->arrStyle) ? implode(' '$this->arrStyle) : '';
  8.         $this->Template->class trim('mod_' $this->type ' ' . ($this->cssID[1] ?? ''));
  9.         $this->Template->cssID = !empty($this->cssID[0]) ? ' id="' $this->cssID[0] . '"' '';
  1.         if ($this->objModel !== null)
  2.         {
  3.             System::getContainer()->get('contao.cache.entity_tags')->tagWithModelInstance($this->objModel);
  4.         }
  5.         return parent::generate();
  6.     }
  7.     protected function isHidden()
  8.     {
  9.         $isUnpublished = !$this->published || ($this->start && $this->start time()) || ($this->stop && $this->stop <= time());
  1.             $objStopwatch System::getContainer()->get('debug.stopwatch');
  2.             $objStopwatch->start($strStopWatchId'contao.layout');
  3.         }
  4.         $objArticle = new ModuleArticle($objRow$strColumn);
  5.         $strBuffer $objArticle->generate($blnIsInsertTag);
  6.         // Disable indexing if protected
  7.         if ($objArticle->protected && !preg_match('/^\s*<!-- indexer::stop/'$strBuffer))
  8.         {
  9.             $strBuffer "\n<!-- indexer::stop -->" $strBuffer "<!-- indexer::continue -->\n";
  1.             $return '';
  2.             $blnMultiMode = ($objArticles->count() > 1);
  3.             while ($objArticles->next())
  4.             {
  5.                 $return .= static::getArticle($objArticles->current(), $blnMultiModefalse$strColumn);
  6.             }
  7.             return $return;
  8.         }
  1.                     if ($objLayout->rows != '2rwf' && $objLayout->rows != '3rw' && $arrModule['col'] == 'footer')
  2.                     {
  3.                         continue;
  4.                     }
  5.                     $this->Template->{$arrModule['col']} .= $this->getFrontendModule($arrModule['mod'], $arrModule['col']);
  6.                 }
  7.                 else
  8.                 {
  9.                     if (!isset($arrCustomSections[$arrModule['col']]))
  10.                     {
  1.      *
  2.      * @return Response
  3.      */
  4.     public function getResponse($objPage$blnCheckRequest=false)
  5.     {
  6.         $this->prepare($objPage);
  7.         $response $this->Template->getResponse($blnCheckRequest);
  8.         // Allow subrequests on this controller (fragments) to dynamically influence the Cache-Control header
  9.         $response->headers->set(SubrequestCacheSubscriber::MERGE_CACHE_HEADERtrue);
  1.                 }
  2.                 return $objResponse;
  3.             }
  4.             return $objHandler->getResponse($objPagetrue);
  5.         }
  6.         // Render the error page (see #5570)
  7.         catch (UnusedArgumentsException $e)
  8.         {
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/de/newsreader/viverra-quis-650.html/"."
INFO 10:47:47 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:47:47 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
DEBUG 10:47:47 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
DEBUG 10:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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:47:47 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": {}
}
INFO 10:47:47 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:47:47 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": "newsreader/viverra-quis-650",
        "2": "newsreader"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
INFO 10:47:47 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:47:47 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:47:47 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": 4
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:47 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
    }
}
INFO 10:47:47 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": {}
}
INFO 10:47:47 request Matched route "tl_page.42".
{
    "route": "tl_page.42",
    "route_parameters": {
        "_token_check": true,
        "_controller": "Contao\\FrontendIndex::renderPage",
        "_scope": "frontend",
        "_locale": "de",
        "_format": "html",
        "_canonical_route": "tl_page.42",
        "parameters": "/viverra-quis-650",
        "pageModel": {},
        "_route": "tl_page.42",
        "_route_object": {}
    },
    "request_uri": "https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html",
    "method": "GET"
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface" interface is deprecated, use "Symfony\Component\Security\Http\RememberMe\RememberMeHandlerInterface" instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeHandler" instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.4: Method "Symfony\Component\Security\Http\Firewall\ContextListener::setRememberMeServices()" is deprecated, use the new remember me handlers instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.contao_frontend" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\RememberMeListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.contao_frontend" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.contao_backend.two_factor_decorator.inner" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: Method "Symfony\Component\Security\Core\Authentication\Token\AbstractToken::isAuthenticated()" is deprecated, return null from "getUser()" instead when a token is not authenticated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Scheb\TwoFactorBundle\Security\TwoFactor\Event\AuthenticationSuccessEventSuppressor" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 10:47:47 event Notified event "security.authentication.success" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onLogin".
{
    "event": "security.authentication.success",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onLogin"
}
DEBUG 10:47:47 event Notified event "security.authentication.success" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onLogin".
{
    "event": "security.authentication.success",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onLogin"
}
DEBUG 10:47:47 event Notified event "security.authentication.success" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\AuthenticationSuccessEventSuppressor::onLogin".
{
    "event": "security.authentication.success",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\AuthenticationSuccessEventSuppressor::onLogin"
}
INFO 10:47:47 security Populated the TokenStorage with an anonymous Token.
INFO 10:47:47 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:47:47 deprecation User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: Method "Symfony\Component\Security\Core\Authentication\Token\AbstractToken::isAuthenticated()" is deprecated, return null from "getUser()" instead when a token is not authenticated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAnonymous()" method is deprecated, use "isAuthenticated()" or "isFullFledged()" if you want to check if the request is (fully) authenticated.
{
    "exception": {}
}
DEBUG 10:47:47 doctrine Executing query: SELECT templates FROM tl_theme WHERE templates != ''
{
    "sql": "SELECT templates FROM tl_theme WHERE templates != ''"
}
INFO 10:47:47 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\FrontendUser" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 10:47:47 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": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: Method "Symfony\Component\Security\Core\Authentication\Token\AbstractToken::isAuthenticated()" is deprecated, return null from "getUser()" instead when a token is not authenticated.
{
    "exception": {}
}
INFO 10:47:47 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAnonymous()" method is deprecated, use "isAuthenticated()" or "isFullFledged()" if you want to check if the request is (fully) authenticated.
{
    "exception": {}
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:47:47 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:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 10:47:47 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:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 10:47:47 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:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 10:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 10:47:47 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:47:47 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 10:47:47 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:47:47 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:47:47 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 10:47:48 doctrine Executing query: SELECT tl_pct_customcatalog.* FROM tl_pct_customcatalog WHERE tl_pct_customcatalog.active=1 AND tl_pct_customcatalog.tstamp > 0
{
    "sql": "SELECT tl_pct_customcatalog.* FROM tl_pct_customcatalog WHERE tl_pct_customcatalog.active=1 AND tl_pct_customcatalog.tstamp > 0"
}
INFO 10:47:48 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:47:48 doctrine Executing query: SELECT tl_pct_customcatalog.* FROM tl_pct_customcatalog WHERE tl_pct_customcatalog.active=1 AND tl_pct_customcatalog.tstamp > 0
{
    "sql": "SELECT tl_pct_customcatalog.* FROM tl_pct_customcatalog WHERE tl_pct_customcatalog.active=1 AND tl_pct_customcatalog.tstamp > 0"
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT tl_layout.* FROM tl_layout WHERE tl_layout.`id`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_layout.* FROM tl_layout WHERE tl_layout.`id`=? LIMIT 0,1",
    "params": {
        "1": 56
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.active=? AND tl_pct_themedesigner.theme=? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.active=? AND tl_pct_themedesigner.theme=?",
    "params": {
        "1": 1,
        "2": "eclipse_default"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 10:47:48 doctrine Executing statement: SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.active=? AND tl_pct_themedesigner.theme=? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.active=? AND tl_pct_themedesigner.theme=?",
    "params": {
        "1": 1,
        "2": "eclipse_default"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
DEBUG 10:47:48 php Warning: Undefined property: stdClass::$align_mobile
{
    "exception": {
        "severity": 2,
        "file": "/www/htdocs/w01af519/dev4-13.premium-contao-themes.com/system/modules/pct_autogrid/PCT/AutoGrid/Core.php",
        "line": 211,
        "trace": [
            {
                "file": "/www/htdocs/w01af519/dev4-13.premium-contao-themes.com/system/modules/pct_autogrid/PCT/AutoGrid/ContaoCallbacks.php",
                "line": 172,
                "function": "addToTemplate",
                "class": "PCT\\AutoGrid\\Core",
                "type": "::"
            }
        ],
        "count": 38
    }
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('debugMode')" has been deprecated. Use the "kernel.debug" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('debugMode')" has been deprecated. Use the "kernel.debug" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('debugMode')" has been deprecated. Use the "kernel.debug" parameter instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.theme=? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tl_pct_themedesigner WHERE tl_pct_themedesigner.theme=?",
    "params": {
        "1": "eclipse_default"
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT * FROM tl_theme WHERE tl_theme.`id`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tl_theme WHERE tl_theme.`id`=? LIMIT 0,1",
    "params": {
        "1": 4
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 deprecation User Deprecated: Since contao/image 1.2: Not passing a secret to "Contao\Image\DeferredResizer::__construct()" has been deprecated and will no longer work in version 2.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/image 1.2: Not passing a secret to "Contao\Image\Resizer::__construct()" has been deprecated and will no longer work in version 2.0.
{
    "exception": {}
}
INFO 10:47:48 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:47:48 doctrine Executing query: SELECT tl_module.*, j1.`ribbon` AS customcatalog_jumpTo__ribbon, j1.`addImage` AS customcatalog_jumpTo__addImage, j1.`singleSRC` AS customcatalog_jumpTo__singleSRC, j1.`style_css` AS customcatalog_jumpTo__style_css, j1.`height_css` AS customcatalog_jumpTo__height_css, j1.`imgHeadline` AS customcatalog_jumpTo__imgHeadline, j1.`imgSubheadline` AS customcatalog_jumpTo__imgSubheadline, j1.`addArticle` AS customcatalog_jumpTo__addArticle, j1.`article` AS customcatalog_jumpTo__article, j1.`visibility_css` AS customcatalog_jumpTo__visibility_css, j1.`bgcolor_css` AS customcatalog_jumpTo__bgcolor_css, j1.`color_css` AS customcatalog_jumpTo__color_css, j1.`analytics_google` AS customcatalog_jumpTo__analytics_google, j1.`analytics_matomo` AS customcatalog_jumpTo__analytics_matomo, j1.`google_maps` AS customcatalog_jumpTo__google_maps, j1.`helper_css` AS customcatalog_jumpTo__helper_css, j1.`favicon_tpl` AS customcatalog_jumpTo__favicon_tpl, j1.`id` AS customcatalog_jumpTo__id, j1.`pid` AS customcatalog_jumpTo__pid, j1.`sorting` AS customcatalog_jumpTo__sorting, j1.`tstamp` AS customcatalog_jumpTo__tstamp, j1.`title` AS customcatalog_jumpTo__title, j1.`type` AS customcatalog_jumpTo__type, j1.`alias` AS customcatalog_jumpTo__alias, j1.`requireItem` AS customcatalog_jumpTo__requireItem, j1.`routePriority` AS customcatalog_jumpTo__routePriority, j1.`pageTitle` AS customcatalog_jumpTo__pageTitle, j1.`language` AS customcatalog_jumpTo__language, j1.`robots` AS customcatalog_jumpTo__robots, j1.`description` AS customcatalog_jumpTo__description, j1.`redirect` AS customcatalog_jumpTo__redirect, j1.`alwaysForward` AS customcatalog_jumpTo__alwaysForward, j1.`jumpTo` AS customcatalog_jumpTo__jumpTo, j1.`redirectBack` AS customcatalog_jumpTo__redirectBack, j1.`url` AS customcatalog_jumpTo__url, j1.`target` AS customcatalog_jumpTo__target, j1.`dns` AS customcatalog_jumpTo__dns, j1.`staticFiles` AS customcatalog_jumpTo__staticFiles, j1.`staticPlugins` AS customcatalog_jumpTo__staticPlugins, j1.`fallback` AS customcatalog_jumpTo__fallback, j1.`disableLanguageRedirect` AS customcatalog_jumpTo__disableLanguageRedirect, j1.`favicon` AS customcatalog_jumpTo__favicon, j1.`robotsTxt` AS customcatalog_jumpTo__robotsTxt, j1.`maintenanceMode` AS customcatalog_jumpTo__maintenanceMode, j1.`mailerTransport` AS customcatalog_jumpTo__mailerTransport, j1.`enableCanonical` AS customcatalog_jumpTo__enableCanonical, j1.`canonicalLink` AS customcatalog_jumpTo__canonicalLink, j1.`canonicalKeepParams` AS customcatalog_jumpTo__canonicalKeepParams, j1.`adminEmail` AS customcatalog_jumpTo__adminEmail, j1.`dateFormat` AS customcatalog_jumpTo__dateFormat, j1.`timeFormat` AS customcatalog_jumpTo__timeFormat, j1.`datimFormat` AS customcatalog_jumpTo__datimFormat, j1.`validAliasCharacters` AS customcatalog_jumpTo__validAliasCharacters, j1.`useFolderUrl` AS customcatalog_jumpTo__useFolderUrl, j1.`urlPrefix` AS customcatalog_jumpTo__urlPrefix, j1.`urlSuffix` AS customcatalog_jumpTo__urlSuffix, j1.`useSSL` AS customcatalog_jumpTo__useSSL, j1.`autoforward` AS customcatalog_jumpTo__autoforward, j1.`protected` AS customcatalog_jumpTo__protected, j1.`groups` AS customcatalog_jumpTo__groups, j1.`includeLayout` AS customcatalog_jumpTo__includeLayout, j1.`layout` AS customcatalog_jumpTo__layout, j1.`subpageLayout` AS customcatalog_jumpTo__subpageLayout, j1.`includeCache` AS customcatalog_jumpTo__includeCache, j1.`cache` AS customcatalog_jumpTo__cache, j1.`alwaysLoadFromCache` AS customcatalog_jumpTo__alwaysLoadFromCache, j1.`clientCache` AS customcatalog_jumpTo__clientCache, j1.`includeChmod` AS customcatalog_jumpTo__includeChmod, j1.`cuser` AS customcatalog_jumpTo__cuser, j1.`cgroup` AS customcatalog_jumpTo__cgroup, j1.`chmod` AS customcatalog_jumpTo__chmod, j1.`noSearch` AS customcatalog_jumpTo__noSearch, j1.`cssClass` AS customcatalog_jumpTo__cssClass, j1.`sitemap` AS customcatalog_jumpTo__sitemap, j1.`hide` AS customcatalog_jumpTo__hide, j1.`guests` AS customcatalog_jumpTo__guests, j1.`tabindex` AS customcatalog_jumpTo__tabindex, j1.`accesskey` AS customcatalog_jumpTo__accesskey, j1.`published` AS customcatalog_jumpTo__published, j1.`start` AS customcatalog_jumpTo__start, j1.`stop` AS customcatalog_jumpTo__stop, j1.`enforceTwoFactor` AS customcatalog_jumpTo__enforceTwoFactor, j1.`twoFactorJumpTo` AS customcatalog_jumpTo__twoFactorJumpTo, j1.`pct_structured_data` AS customcatalog_jumpTo__pct_structured_data, j1.`pct_theme` AS customcatalog_jumpTo__pct_theme, j1.`pct_theme_import` AS customcatalog_jumpTo__pct_theme_import, j1.`pct_theme_cto` AS customcatalog_jumpTo__pct_theme_cto, j1.`pct_themedesigner_hidden` AS customcatalog_jumpTo__pct_themedesigner_hidden, j1.`addFontIcon` AS customcatalog_jumpTo__addFontIcon, j1.`fontIcon` AS customcatalog_jumpTo__fontIcon FROM tl_module LEFT JOIN tl_page j1 ON tl_module.`customcatalog_jumpTo`=j1.id WHERE tl_module.id IN(637,32,120,148,133,239,155,450,214,0,29,262,495,611,160,0,216,156,124,575,148,261,618,133,619,0,610,154,147,621,222,635,148,133) ORDER BY FIND_IN_SET(`tl_module`.`id`, '637,32,120,148,133,239,155,450,214,0,29,262,495,611,160,0,216,156,124,575,148,261,618,133,619,0,610,154,147,621,222,635,148,133')
{
    "sql": "SELECT tl_module.*, j1.`ribbon` AS customcatalog_jumpTo__ribbon, j1.`addImage` AS customcatalog_jumpTo__addImage, j1.`singleSRC` AS customcatalog_jumpTo__singleSRC, j1.`style_css` AS customcatalog_jumpTo__style_css, j1.`height_css` AS customcatalog_jumpTo__height_css, j1.`imgHeadline` AS customcatalog_jumpTo__imgHeadline, j1.`imgSubheadline` AS customcatalog_jumpTo__imgSubheadline, j1.`addArticle` AS customcatalog_jumpTo__addArticle, j1.`article` AS customcatalog_jumpTo__article, j1.`visibility_css` AS customcatalog_jumpTo__visibility_css, j1.`bgcolor_css` AS customcatalog_jumpTo__bgcolor_css, j1.`color_css` AS customcatalog_jumpTo__color_css, j1.`analytics_google` AS customcatalog_jumpTo__analytics_google, j1.`analytics_matomo` AS customcatalog_jumpTo__analytics_matomo, j1.`google_maps` AS customcatalog_jumpTo__google_maps, j1.`helper_css` AS customcatalog_jumpTo__helper_css, j1.`favicon_tpl` AS customcatalog_jumpTo__favicon_tpl, j1.`id` AS customcatalog_jumpTo__id, j1.`pid` AS customcatalog_jumpTo__pid, j1.`sorting` AS customcatalog_jumpTo__sorting, j1.`tstamp` AS customcatalog_jumpTo__tstamp, j1.`title` AS customcatalog_jumpTo__title, j1.`type` AS customcatalog_jumpTo__type, j1.`alias` AS customcatalog_jumpTo__alias, j1.`requireItem` AS customcatalog_jumpTo__requireItem, j1.`routePriority` AS customcatalog_jumpTo__routePriority, j1.`pageTitle` AS customcatalog_jumpTo__pageTitle, j1.`language` AS customcatalog_jumpTo__language, j1.`robots` AS customcatalog_jumpTo__robots, j1.`description` AS customcatalog_jumpTo__description, j1.`redirect` AS customcatalog_jumpTo__redirect, j1.`alwaysForward` AS customcatalog_jumpTo__alwaysForward, j1.`jumpTo` AS customcatalog_jumpTo__jumpTo, j1.`redirectBack` AS customcatalog_jumpTo__redirectBack, j1.`url` AS customcatalog_jumpTo__url, j1.`target` AS customcatalog_jumpTo__target, j1.`dns` AS customcatalog_jumpTo__dns, j1.`staticFiles` AS customcatalog_jumpTo__staticFiles, j1.`staticPlugins` AS customcatalog_jumpTo__staticPlugins, j1.`fallback` AS customcatalog_jumpTo__fallback, j1.`disableLanguageRedirect` AS customcatalog_jumpTo__disableLanguageRedirect, j1.`favicon` AS customcatalog_jumpTo__favicon, j1.`robotsTxt` AS customcatalog_jumpTo__robotsTxt, j1.`maintenanceMode` AS customcatalog_jumpTo__maintenanceMode, j1.`mailerTransport` AS customcatalog_jumpTo__mailerTransport, j1.`enableCanonical` AS customcatalog_jumpTo__enableCanonical, j1.`canonicalLink` AS customcatalog_jumpTo__canonicalLink, j1.`canonicalKeepParams` AS customcatalog_jumpTo__canonicalKeepParams, j1.`adminEmail` AS customcatalog_jumpTo__adminEmail, j1.`dateFormat` AS customcatalog_jumpTo__dateFormat, j1.`timeFormat` AS customcatalog_jumpTo__timeFormat, j1.`datimFormat` AS customcatalog_jumpTo__datimFormat, j1.`validAliasCharacters` AS customcatalog_jumpTo__validAliasCharacters, j1.`useFolderUrl` AS customcatalog_jumpTo__useFolderUrl, j1.`urlPrefix` AS customcatalog_jumpTo__urlPrefix, j1.`urlSuffix` AS customcatalog_jumpTo__urlSuffix, j1.`useSSL` AS customcatalog_jumpTo__useSSL, j1.`autoforward` AS customcatalog_jumpTo__autoforward, j1.`protected` AS customcatalog_jumpTo__protected, j1.`groups` AS customcatalog_jumpTo__groups, j1.`includeLayout` AS customcatalog_jumpTo__includeLayout, j1.`layout` AS customcatalog_jumpTo__layout, j1.`subpageLayout` AS customcatalog_jumpTo__subpageLayout, j1.`includeCache` AS customcatalog_jumpTo__includeCache, j1.`cache` AS customcatalog_jumpTo__cache, j1.`alwaysLoadFromCache` AS customcatalog_jumpTo__alwaysLoadFromCache, j1.`clientCache` AS customcatalog_jumpTo__clientCache, j1.`includeChmod` AS customcatalog_jumpTo__includeChmod, j1.`cuser` AS customcatalog_jumpTo__cuser, j1.`cgroup` AS customcatalog_jumpTo__cgroup, j1.`chmod` AS customcatalog_jumpTo__chmod, j1.`noSearch` AS customcatalog_jumpTo__noSearch, j1.`cssClass` AS customcatalog_jumpTo__cssClass, j1.`sitemap` AS customcatalog_jumpTo__sitemap, j1.`hide` AS customcatalog_jumpTo__hide, j1.`guests` AS customcatalog_jumpTo__guests, j1.`tabindex` AS customcatalog_jumpTo__tabindex, j1.`accesskey` AS customcatalog_jumpTo__accesskey, j1.`published` AS customcatalog_jumpTo__published, j1.`start` AS customcatalog_jumpTo__start, j1.`stop` AS customcatalog_jumpTo__stop, j1.`enforceTwoFactor` AS customcatalog_jumpTo__enforceTwoFactor, j1.`twoFactorJumpTo` AS customcatalog_jumpTo__twoFactorJumpTo, j1.`pct_structured_data` AS customcatalog_jumpTo__pct_structured_data, j1.`pct_theme` AS customcatalog_jumpTo__pct_theme, j1.`pct_theme_import` AS customcatalog_jumpTo__pct_theme_import, j1.`pct_theme_cto` AS customcatalog_jumpTo__pct_theme_cto, j1.`pct_themedesigner_hidden` AS customcatalog_jumpTo__pct_themedesigner_hidden, j1.`addFontIcon` AS customcatalog_jumpTo__addFontIcon, j1.`fontIcon` AS customcatalog_jumpTo__fontIcon FROM tl_module LEFT JOIN tl_page j1 ON tl_module.`customcatalog_jumpTo`=j1.id WHERE tl_module.id IN(637,32,120,148,133,239,155,450,214,0,29,262,495,611,160,0,216,156,124,575,148,261,618,133,619,0,610,154,147,621,222,635,148,133) ORDER BY FIND_IN_SET(`tl_module`.`id`, '637,32,120,148,133,239,155,450,214,0,29,262,495,611,160,0,216,156,124,575,148,261,618,133,619,0,610,154,147,621,222,635,148,133')"
}
INFO 10:47:48 deprecation User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 1
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(107,120,2936,216,2602,3021,3168) ORDER BY FIND_IN_SET(`tl_page`.`id`, '107,120,2936,216,4,2602,3021,3168')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(107,120,2936,216,2602,3021,3168) ORDER BY FIND_IN_SET(`tl_page`.`id`, '107,120,2936,216,4,2602,3021,3168')"
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using a tabindex value greater than 0 has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 120
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(121,122,123,130) ORDER BY FIND_IN_SET(`tl_page`.`id`, '121,122,123,130')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(121,122,123,130) ORDER BY FIND_IN_SET(`tl_page`.`id`, '121,122,123,130')"
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 121
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(35,174,171,14,36,52,113,150,204,190,315,316,356,586,903,1674,2249,2718) ORDER BY FIND_IN_SET(`tl_page`.`id`, '35,174,171,14,36,52,113,150,204,190,315,316,356,586,903,1674,2249,2718')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(35,174,171,14,36,52,113,150,204,190,315,316,356,586,903,1674,2249,2718) ORDER BY FIND_IN_SET(`tl_page`.`id`, '35,174,171,14,36,52,113,150,204,190,315,316,356,586,903,1674,2249,2718')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 35
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 122
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(106,76,13,149,148,178,153,74,2601,191,317,318,440,589,2250,904,2600,2719) ORDER BY FIND_IN_SET(`tl_page`.`id`, '106,76,13,149,148,178,153,74,2601,191,317,318,440,589,2250,904,2600,2719')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(106,76,13,149,148,178,153,74,2601,191,317,318,440,589,2250,904,2600,2719) ORDER BY FIND_IN_SET(`tl_page`.`id`, '106,76,13,149,148,178,153,74,2601,191,317,318,440,589,2250,904,2600,2719')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 907
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 106
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 123
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(111,29,138,142,151,2483,158,179,109,27,192,319,320,456,590,906,2362) ORDER BY FIND_IN_SET(`tl_page`.`id`, '111,29,138,142,151,2483,158,179,109,27,192,319,320,456,590,906,2362')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(111,29,138,142,151,2483,158,179,109,27,192,319,320,456,590,906,2362) ORDER BY FIND_IN_SET(`tl_page`.`id`, '111,29,138,142,151,2483,158,179,109,27,192,319,320,456,590,906,2362')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 111
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 130
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(143,145,144,905,146,147,157,32,140,194,466,193,210,321,322,593,2344) ORDER BY FIND_IN_SET(`tl_page`.`id`, '143,145,144,905,146,147,157,32,140,194,466,193,210,321,322,593,2344')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(143,145,144,905,146,147,157,32,140,194,466,193,210,321,322,593,2344) ORDER BY FIND_IN_SET(`tl_page`.`id`, '143,145,144,905,146,147,157,32,140,194,466,193,210,321,322,593,2344')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 143
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 121
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using a tabindex value greater than 0 has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2936
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2942,2947,2953,2940,2960,2965) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2942,2947,2953,2940,2960,2965')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2942,2947,2953,2940,2960,2965) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2942,2947,2953,2940,2960,2965')"
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2942
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2943,2944,2945,2946) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2943,2944,2945,2946')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2943,2944,2945,2946) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2943,2944,2945,2946')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2942
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2947
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2948,2949,2950,2951) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2948,2949,2950,2951')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2948,2949,2950,2951) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2948,2949,2950,2951')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2947
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2953
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2956,2957,2958,2959) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2956,2957,2958,2959')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2956,2957,2958,2959) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2956,2957,2958,2959')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2953
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2940
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2937,2938,2939,2941) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2937,2938,2939,2941')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2937,2938,2939,2941) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2937,2938,2939,2941')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2940
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2960
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2961,2962,2963,2964) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2961,2962,2963,2964')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2961,2962,2963,2964) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2961,2962,2963,2964')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2960
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 2965
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2966,2967,2968) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2966,2967,2968')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(2966,2967,2968) ORDER BY FIND_IN_SET(`tl_page`.`id`, '2966,2967,2968')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 2965
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type!='root' AND tl_page.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type!='root' AND tl_page.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 1
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using a tabindex value greater than 0 has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 216
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(843,844,845,846,847,848,849,1309,472) ORDER BY FIND_IN_SET(`tl_page`.`id`, '843,844,845,846,847,848,849,1309,472')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(843,844,845,846,847,848,849,1309,472) ORDER BY FIND_IN_SET(`tl_page`.`id`, '843,844,845,846,847,848,849,1309,472')"
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 843
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(314,154,172,173,2252) ORDER BY FIND_IN_SET(`tl_page`.`id`, '314,154,172,173,2252')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(314,154,172,173,2252) ORDER BY FIND_IN_SET(`tl_page`.`id`, '314,154,172,173,2252')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 843
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 844
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(311,312,313) ORDER BY FIND_IN_SET(`tl_page`.`id`, '311,312,313')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(311,312,313) ORDER BY FIND_IN_SET(`tl_page`.`id`, '311,312,313')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 844
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 845
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(469,470,471) ORDER BY FIND_IN_SET(`tl_page`.`id`, '469,470,471')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(469,470,471) ORDER BY FIND_IN_SET(`tl_page`.`id`, '469,470,471')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 845
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 846
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(851,588,850,2253) ORDER BY FIND_IN_SET(`tl_page`.`id`, '851,588,850,2253')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(851,588,850,2253) ORDER BY FIND_IN_SET(`tl_page`.`id`, '851,588,850,2253')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 846
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 847
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(853,731,852) ORDER BY FIND_IN_SET(`tl_page`.`id`, '853,731,852')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(853,731,852) ORDER BY FIND_IN_SET(`tl_page`.`id`, '853,731,852')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 847
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 848
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(854,746,855) ORDER BY FIND_IN_SET(`tl_page`.`id`, '854,746,855')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(854,746,855) ORDER BY FIND_IN_SET(`tl_page`.`id`, '854,746,855')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 848
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 849
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(792,856,857) ORDER BY FIND_IN_SET(`tl_page`.`id`, '792,856,857')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(792,856,857) ORDER BY FIND_IN_SET(`tl_page`.`id`, '792,856,857')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 849
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 1309
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(1310,1311,1312,2254) ORDER BY FIND_IN_SET(`tl_page`.`id`, '1310,1311,1312,2254')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(1310,1311,1312,2254) ORDER BY FIND_IN_SET(`tl_page`.`id`, '1310,1311,1312,2254')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 1310
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id=? AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": 154
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 4
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(232,231,176,175,177,591,592,737,2693,168,163) ORDER BY FIND_IN_SET(`tl_page`.`id`, '232,231,176,175,177,591,592,737,2693,168,163')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(232,231,176,175,177,591,592,737,2693,168,163) ORDER BY FIND_IN_SET(`tl_page`.`id`, '232,231,176,175,177,591,592,737,2693,168,163')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 163
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(180,181,182) ORDER BY FIND_IN_SET(`tl_page`.`id`, '180,181,182')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(180,181,182) ORDER BY FIND_IN_SET(`tl_page`.`id`, '180,181,182')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 163
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 4
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 3168
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(3169,3170) ORDER BY FIND_IN_SET(`tl_page`.`id`, '3169,3170')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(3169,3170) ORDER BY FIND_IN_SET(`tl_page`.`id`, '3169,3170')"
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was unable to generate route. Reason: 'Route 'page_routing_object' not found': Unable to generate a URL for the named route "page_routing_object" as such route does not exist.
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.0: Using the "generateFrontendUrl" hook has been deprecated and will no longer work in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 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": 217
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 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": 858
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 217
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(218,219,220) ORDER BY FIND_IN_SET(`tl_page`.`id`, '218,219,220')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(218,219,220) ORDER BY FIND_IN_SET(`tl_page`.`id`, '218,219,220')"
}
DEBUG 10:47:48 doctrine Executing statement: SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT p1.id, EXISTS(SELECT * FROM tl_page p2 WHERE p2.pid=p1.id AND p2.type!='root' AND p2.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p2.hide='' AND p2.published='1' AND (p2.start='' OR p2.start<=1711619220) AND (p2.stop='' OR p2.stop>1711619220)) AS hasSubpages FROM tl_page p1 WHERE p1.pid=? AND p1.type!='root' AND p1.type NOT IN ('error_401', 'error_403', 'error_404', 'error_503') AND p1.hide='' AND p1.published='1' AND (p1.start='' OR p1.start<=1711619220) AND (p1.stop='' OR p1.stop>1711619220) ORDER BY p1.sorting",
    "params": {
        "1": 218
    },
    "types": {
        "1": 2
    }
}
DEBUG 10:47:48 doctrine Executing query: SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(221,222,223) ORDER BY FIND_IN_SET(`tl_page`.`id`, '221,222,223')
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.id IN(221,222,223) ORDER BY FIND_IN_SET(`tl_page`.`id`, '221,222,223')"
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.pid=? AND tl_page.type='regular' AND tl_page.published='1' AND (tl_page.start='' OR tl_page.start<=1711619220) AND (tl_page.stop='' OR tl_page.stop>1711619220) ORDER BY tl_page.sorting LIMIT 0,1",
    "params": {
        "1": 218
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('validImageTypes')" has been deprecated. Use the "contao.image.valid_extensions" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('validImageTypes')" has been deprecated. Use the "contao.image.valid_extensions" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT tl_article.* FROM tl_article WHERE tl_article.pid=? AND tl_article.inColumn=? AND tl_article.published='1' AND (tl_article.start='' OR tl_article.start<=1711619220) AND (tl_article.stop='' OR tl_article.stop>1711619220) ORDER BY tl_article.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_article.* FROM tl_article WHERE tl_article.pid=? AND tl_article.inColumn=? AND tl_article.published='1' AND (tl_article.start='' OR tl_article.start<=1711619220) AND (tl_article.stop='' OR tl_article.stop>1711619220) ORDER BY tl_article.sorting",
    "params": {
        "1": 42,
        "2": "main"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('validImageTypes')" has been deprecated. Use the "contao.image.valid_extensions" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 deprecation User Deprecated: Since contao/core-bundle 4.12: Using "Contao\Config::get('validImageTypes')" has been deprecated. Use the "contao.image.valid_extensions" parameter instead.
{
    "exception": {}
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT tl_content.* FROM tl_content WHERE tl_content.pid=? AND (tl_content.ptable=? OR tl_content.ptable='') AND tl_content.invisible='' AND (tl_content.start='' OR tl_content.start<=1711619220) AND (tl_content.stop='' OR tl_content.stop>1711619220) AND tl_content.tstamp!=0 ORDER BY tl_content.sorting (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_content.* FROM tl_content WHERE tl_content.pid=? AND (tl_content.ptable=? OR tl_content.ptable='') AND tl_content.invisible='' AND (tl_content.start='' OR tl_content.start<=1711619220) AND (tl_content.stop='' OR tl_content.stop>1711619220) AND tl_content.tstamp!=0 ORDER BY tl_content.sorting",
    "params": {
        "1": 40,
        "2": "tl_article"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 10:47:48 doctrine Executing statement: SELECT tl_module.*, j1.`ribbon` AS customcatalog_jumpTo__ribbon, j1.`addImage` AS customcatalog_jumpTo__addImage, j1.`singleSRC` AS customcatalog_jumpTo__singleSRC, j1.`style_css` AS customcatalog_jumpTo__style_css, j1.`height_css` AS customcatalog_jumpTo__height_css, j1.`imgHeadline` AS customcatalog_jumpTo__imgHeadline, j1.`imgSubheadline` AS customcatalog_jumpTo__imgSubheadline, j1.`addArticle` AS customcatalog_jumpTo__addArticle, j1.`article` AS customcatalog_jumpTo__article, j1.`visibility_css` AS customcatalog_jumpTo__visibility_css, j1.`bgcolor_css` AS customcatalog_jumpTo__bgcolor_css, j1.`color_css` AS customcatalog_jumpTo__color_css, j1.`analytics_google` AS customcatalog_jumpTo__analytics_google, j1.`analytics_matomo` AS customcatalog_jumpTo__analytics_matomo, j1.`google_maps` AS customcatalog_jumpTo__google_maps, j1.`helper_css` AS customcatalog_jumpTo__helper_css, j1.`favicon_tpl` AS customcatalog_jumpTo__favicon_tpl, j1.`id` AS customcatalog_jumpTo__id, j1.`pid` AS customcatalog_jumpTo__pid, j1.`sorting` AS customcatalog_jumpTo__sorting, j1.`tstamp` AS customcatalog_jumpTo__tstamp, j1.`title` AS customcatalog_jumpTo__title, j1.`type` AS customcatalog_jumpTo__type, j1.`alias` AS customcatalog_jumpTo__alias, j1.`requireItem` AS customcatalog_jumpTo__requireItem, j1.`routePriority` AS customcatalog_jumpTo__routePriority, j1.`pageTitle` AS customcatalog_jumpTo__pageTitle, j1.`language` AS customcatalog_jumpTo__language, j1.`robots` AS customcatalog_jumpTo__robots, j1.`description` AS customcatalog_jumpTo__description, j1.`redirect` AS customcatalog_jumpTo__redirect, j1.`alwaysForward` AS customcatalog_jumpTo__alwaysForward, j1.`jumpTo` AS customcatalog_jumpTo__jumpTo, j1.`redirectBack` AS customcatalog_jumpTo__redirectBack, j1.`url` AS customcatalog_jumpTo__url, j1.`target` AS customcatalog_jumpTo__target, j1.`dns` AS customcatalog_jumpTo__dns, j1.`staticFiles` AS customcatalog_jumpTo__staticFiles, j1.`staticPlugins` AS customcatalog_jumpTo__staticPlugins, j1.`fallback` AS customcatalog_jumpTo__fallback, j1.`disableLanguageRedirect` AS customcatalog_jumpTo__disableLanguageRedirect, j1.`favicon` AS customcatalog_jumpTo__favicon, j1.`robotsTxt` AS customcatalog_jumpTo__robotsTxt, j1.`maintenanceMode` AS customcatalog_jumpTo__maintenanceMode, j1.`mailerTransport` AS customcatalog_jumpTo__mailerTransport, j1.`enableCanonical` AS customcatalog_jumpTo__enableCanonical, j1.`canonicalLink` AS customcatalog_jumpTo__canonicalLink, j1.`canonicalKeepParams` AS customcatalog_jumpTo__canonicalKeepParams, j1.`adminEmail` AS customcatalog_jumpTo__adminEmail, j1.`dateFormat` AS customcatalog_jumpTo__dateFormat, j1.`timeFormat` AS customcatalog_jumpTo__timeFormat, j1.`datimFormat` AS customcatalog_jumpTo__datimFormat, j1.`validAliasCharacters` AS customcatalog_jumpTo__validAliasCharacters, j1.`useFolderUrl` AS customcatalog_jumpTo__useFolderUrl, j1.`urlPrefix` AS customcatalog_jumpTo__urlPrefix, j1.`urlSuffix` AS customcatalog_jumpTo__urlSuffix, j1.`useSSL` AS customcatalog_jumpTo__useSSL, j1.`autoforward` AS customcatalog_jumpTo__autoforward, j1.`protected` AS customcatalog_jumpTo__protected, j1.`groups` AS customcatalog_jumpTo__groups, j1.`includeLayout` AS customcatalog_jumpTo__includeLayout, j1.`layout` AS customcatalog_jumpTo__layout, j1.`subpageLayout` AS customcatalog_jumpTo__subpageLayout, j1.`includeCache` AS customcatalog_jumpTo__includeCache, j1.`cache` AS customcatalog_jumpTo__cache, j1.`alwaysLoadFromCache` AS customcatalog_jumpTo__alwaysLoadFromCache, j1.`clientCache` AS customcatalog_jumpTo__clientCache, j1.`includeChmod` AS customcatalog_jumpTo__includeChmod, j1.`cuser` AS customcatalog_jumpTo__cuser, j1.`cgroup` AS customcatalog_jumpTo__cgroup, j1.`chmod` AS customcatalog_jumpTo__chmod, j1.`noSearch` AS customcatalog_jumpTo__noSearch, j1.`cssClass` AS customcatalog_jumpTo__cssClass, j1.`sitemap` AS customcatalog_jumpTo__sitemap, j1.`hide` AS customcatalog_jumpTo__hide, j1.`guests` AS customcatalog_jumpTo__guests, j1.`tabindex` AS customcatalog_jumpTo__tabindex, j1.`accesskey` AS customcatalog_jumpTo__accesskey, j1.`published` AS customcatalog_jumpTo__published, j1.`start` AS customcatalog_jumpTo__start, j1.`stop` AS customcatalog_jumpTo__stop, j1.`enforceTwoFactor` AS customcatalog_jumpTo__enforceTwoFactor, j1.`twoFactorJumpTo` AS customcatalog_jumpTo__twoFactorJumpTo, j1.`pct_structured_data` AS customcatalog_jumpTo__pct_structured_data, j1.`pct_theme` AS customcatalog_jumpTo__pct_theme, j1.`pct_theme_import` AS customcatalog_jumpTo__pct_theme_import, j1.`pct_theme_cto` AS customcatalog_jumpTo__pct_theme_cto, j1.`pct_themedesigner_hidden` AS customcatalog_jumpTo__pct_themedesigner_hidden, j1.`addFontIcon` AS customcatalog_jumpTo__addFontIcon, j1.`fontIcon` AS customcatalog_jumpTo__fontIcon FROM tl_module LEFT JOIN tl_page j1 ON tl_module.`customcatalog_jumpTo`=j1.id WHERE tl_module.`id`=? LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_module.*, j1.`ribbon` AS customcatalog_jumpTo__ribbon, j1.`addImage` AS customcatalog_jumpTo__addImage, j1.`singleSRC` AS customcatalog_jumpTo__singleSRC, j1.`style_css` AS customcatalog_jumpTo__style_css, j1.`height_css` AS customcatalog_jumpTo__height_css, j1.`imgHeadline` AS customcatalog_jumpTo__imgHeadline, j1.`imgSubheadline` AS customcatalog_jumpTo__imgSubheadline, j1.`addArticle` AS customcatalog_jumpTo__addArticle, j1.`article` AS customcatalog_jumpTo__article, j1.`visibility_css` AS customcatalog_jumpTo__visibility_css, j1.`bgcolor_css` AS customcatalog_jumpTo__bgcolor_css, j1.`color_css` AS customcatalog_jumpTo__color_css, j1.`analytics_google` AS customcatalog_jumpTo__analytics_google, j1.`analytics_matomo` AS customcatalog_jumpTo__analytics_matomo, j1.`google_maps` AS customcatalog_jumpTo__google_maps, j1.`helper_css` AS customcatalog_jumpTo__helper_css, j1.`favicon_tpl` AS customcatalog_jumpTo__favicon_tpl, j1.`id` AS customcatalog_jumpTo__id, j1.`pid` AS customcatalog_jumpTo__pid, j1.`sorting` AS customcatalog_jumpTo__sorting, j1.`tstamp` AS customcatalog_jumpTo__tstamp, j1.`title` AS customcatalog_jumpTo__title, j1.`type` AS customcatalog_jumpTo__type, j1.`alias` AS customcatalog_jumpTo__alias, j1.`requireItem` AS customcatalog_jumpTo__requireItem, j1.`routePriority` AS customcatalog_jumpTo__routePriority, j1.`pageTitle` AS customcatalog_jumpTo__pageTitle, j1.`language` AS customcatalog_jumpTo__language, j1.`robots` AS customcatalog_jumpTo__robots, j1.`description` AS customcatalog_jumpTo__description, j1.`redirect` AS customcatalog_jumpTo__redirect, j1.`alwaysForward` AS customcatalog_jumpTo__alwaysForward, j1.`jumpTo` AS customcatalog_jumpTo__jumpTo, j1.`redirectBack` AS customcatalog_jumpTo__redirectBack, j1.`url` AS customcatalog_jumpTo__url, j1.`target` AS customcatalog_jumpTo__target, j1.`dns` AS customcatalog_jumpTo__dns, j1.`staticFiles` AS customcatalog_jumpTo__staticFiles, j1.`staticPlugins` AS customcatalog_jumpTo__staticPlugins, j1.`fallback` AS customcatalog_jumpTo__fallback, j1.`disableLanguageRedirect` AS customcatalog_jumpTo__disableLanguageRedirect, j1.`favicon` AS customcatalog_jumpTo__favicon, j1.`robotsTxt` AS customcatalog_jumpTo__robotsTxt, j1.`maintenanceMode` AS customcatalog_jumpTo__maintenanceMode, j1.`mailerTransport` AS customcatalog_jumpTo__mailerTransport, j1.`enableCanonical` AS customcatalog_jumpTo__enableCanonical, j1.`canonicalLink` AS customcatalog_jumpTo__canonicalLink, j1.`canonicalKeepParams` AS customcatalog_jumpTo__canonicalKeepParams, j1.`adminEmail` AS customcatalog_jumpTo__adminEmail, j1.`dateFormat` AS customcatalog_jumpTo__dateFormat, j1.`timeFormat` AS customcatalog_jumpTo__timeFormat, j1.`datimFormat` AS customcatalog_jumpTo__datimFormat, j1.`validAliasCharacters` AS customcatalog_jumpTo__validAliasCharacters, j1.`useFolderUrl` AS customcatalog_jumpTo__useFolderUrl, j1.`urlPrefix` AS customcatalog_jumpTo__urlPrefix, j1.`urlSuffix` AS customcatalog_jumpTo__urlSuffix, j1.`useSSL` AS customcatalog_jumpTo__useSSL, j1.`autoforward` AS customcatalog_jumpTo__autoforward, j1.`protected` AS customcatalog_jumpTo__protected, j1.`groups` AS customcatalog_jumpTo__groups, j1.`includeLayout` AS customcatalog_jumpTo__includeLayout, j1.`layout` AS customcatalog_jumpTo__layout, j1.`subpageLayout` AS customcatalog_jumpTo__subpageLayout, j1.`includeCache` AS customcatalog_jumpTo__includeCache, j1.`cache` AS customcatalog_jumpTo__cache, j1.`alwaysLoadFromCache` AS customcatalog_jumpTo__alwaysLoadFromCache, j1.`clientCache` AS customcatalog_jumpTo__clientCache, j1.`includeChmod` AS customcatalog_jumpTo__includeChmod, j1.`cuser` AS customcatalog_jumpTo__cuser, j1.`cgroup` AS customcatalog_jumpTo__cgroup, j1.`chmod` AS customcatalog_jumpTo__chmod, j1.`noSearch` AS customcatalog_jumpTo__noSearch, j1.`cssClass` AS customcatalog_jumpTo__cssClass, j1.`sitemap` AS customcatalog_jumpTo__sitemap, j1.`hide` AS customcatalog_jumpTo__hide, j1.`guests` AS customcatalog_jumpTo__guests, j1.`tabindex` AS customcatalog_jumpTo__tabindex, j1.`accesskey` AS customcatalog_jumpTo__accesskey, j1.`published` AS customcatalog_jumpTo__published, j1.`start` AS customcatalog_jumpTo__start, j1.`stop` AS customcatalog_jumpTo__stop, j1.`enforceTwoFactor` AS customcatalog_jumpTo__enforceTwoFactor, j1.`twoFactorJumpTo` AS customcatalog_jumpTo__twoFactorJumpTo, j1.`pct_structured_data` AS customcatalog_jumpTo__pct_structured_data, j1.`pct_theme` AS customcatalog_jumpTo__pct_theme, j1.`pct_theme_import` AS customcatalog_jumpTo__pct_theme_import, j1.`pct_theme_cto` AS customcatalog_jumpTo__pct_theme_cto, j1.`pct_themedesigner_hidden` AS customcatalog_jumpTo__pct_themedesigner_hidden, j1.`addFontIcon` AS customcatalog_jumpTo__addFontIcon, j1.`fontIcon` AS customcatalog_jumpTo__fontIcon FROM tl_module LEFT JOIN tl_page j1 ON tl_module.`customcatalog_jumpTo`=j1.id WHERE tl_module.`id`=? LIMIT 0,1",
    "params": {
        "1": 676
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 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:47:48 doctrine Executing query: SELECT tl_news_archive.* FROM tl_news_archive WHERE tl_news_archive.id IN(1,170,172,154,61,5) ORDER BY FIND_IN_SET(`tl_news_archive`.`id`, '1,170,172,154,61,5')
{
    "sql": "SELECT tl_news_archive.* FROM tl_news_archive WHERE tl_news_archive.id IN(1,170,172,154,61,5) ORDER BY FIND_IN_SET(`tl_news_archive`.`id`, '1,170,172,154,61,5')"
}
INFO 10:47:48 deprecation User Deprecated: Since contao/news-bundle 4.13: If you do not select an overview page in the news reader module, the "go back" link will no longer be shown in Contao 5.0.
{
    "exception": {}
}
INFO 10:47:48 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:47:48 doctrine Executing statement: SELECT tl_news.* FROM tl_news WHERE BINARY tl_news.alias=? AND tl_news.pid IN(1,170,172,154,61,5) AND tl_news.published='1' AND (tl_news.start='' OR tl_news.start<=1711619220) AND (tl_news.stop='' OR tl_news.stop>1711619220) LIMIT 0,1 (parameters: {params}, types: {types})
{
    "sql": "SELECT tl_news.* FROM tl_news WHERE BINARY tl_news.alias=? AND tl_news.pid IN(1,170,172,154,61,5) AND tl_news.published='1' AND (tl_news.start='' OR tl_news.start<=1711619220) AND (tl_news.stop='' OR tl_news.stop>1711619220) LIMIT 0,1",
    "params": {
        "1": "viverra-quis-650"
    },
    "types": {
        "1": 2
    }
}
INFO 10:47:48 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:47:48 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "Page not found: https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html" at /www/htdocs/w01af519/dev4-13.premium-contao-themes.com/vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php line 97
{
    "exception": {}
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:47:48 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:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 10:47:48 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:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 10:47:48 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:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 10:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 10:47:48 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:47:48 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 10:47:48 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:47:48 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:47:48 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:
Page not found: https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html

  at vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php:97
  at Contao\CoreBundle\EventListener\ExceptionConverterListener->convertToHttpException(object(PageNotFoundException), 'NotFoundHttpException')
     (vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php:68)
  at Contao\CoreBundle\EventListener\ExceptionConverterListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', 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)), 'kernel.exception', object(ExceptionEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(PageNotFoundException), object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:86)
  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] PageNotFoundException
Contao\CoreBundle\Exception\PageNotFoundException:
Page not found: https://dev4-13.premium-contao-themes.com/de/newsreader/viverra-quis-650.html

  at vendor/contao/news-bundle/src/Resources/contao/modules/ModuleNewsReader.php:105
  at Contao\ModuleNewsReader->compile()
     (vendor/contao/core-bundle/src/Resources/contao/modules/Module.php:214)
  at Contao\Module->generate()
     (vendor/contao/news-bundle/src/Resources/contao/modules/ModuleNewsReader.php:76)
  at Contao\ModuleNewsReader->generate()
     (vendor/contao/core-bundle/src/Resources/contao/elements/ContentModule.php:98)
  at Contao\ContentModule->generate()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Controller.php:622)
  at Contao\Controller::getContentElement(object(ContentModel), 'main')
     (vendor/contao/core-bundle/src/Resources/contao/modules/ModuleArticle.php:197)
  at Contao\ModuleArticle->compile()
     (vendor/contao/core-bundle/src/Resources/contao/modules/Module.php:214)
  at Contao\Module->generate()
     (vendor/contao/core-bundle/src/Resources/contao/modules/ModuleArticle.php:70)
  at Contao\ModuleArticle->generate(false)
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Controller.php:550)
  at Contao\Controller::getArticle(object(ArticleModel), false, false, 'main')
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Controller.php:392)
  at Contao\Controller::getFrontendModule('0', 'main')
     (vendor/contao/core-bundle/src/Resources/contao/pages/PageRegular.php:194)
  at Contao\PageRegular->prepare(object(PageModel))
     (vendor/contao/core-bundle/src/Resources/contao/pages/PageRegular.php:61)
  at Contao\PageRegular->getResponse(object(PageModel), true)
     (vendor/contao/core-bundle/src/Resources/contao/controllers/FrontendIndex.php:320)
  at Contao\FrontendIndex->renderPage(object(PageModel))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  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 #