Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

News not found.

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.     public function detailAction(Request $requestHeadTitle $headTitleHelperPlaceholder $placeholderHelperNewsLinkGenerator $newsLinkGeneratorBreadcrumbHelperService $breadcrumbHelperService)
  2.     {
  3.         $news News::getById($request->get('news'));
  4.         if (!($news instanceof News && ($news->isPublished() || $this->verifyPreviewRequest($request$news)))) {
  5.             throw new NotFoundHttpException('News not found.');
  6.         }
  7.         $headTitleHelper($news->getTitle());
  8.         $breadcrumbHelperService->enrichNewsPage($news);
in vendor/symfony/http-kernel/HttpKernel.php -> detailAction (line 152)
  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.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 36)
  1. $kernel \Pimcore\Bootstrap::kernel();
  2. // reset current request - will be read from request stack from now on
  3. Tool::setCurrentRequest(null);
  4. $response $kernel->handle($request);
  5. $response->send();
  6. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 06:03:58 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "HWI\Bundle\OAuthBundle\HWIOAuthBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "CustomerManagementFrameworkBundle\PimcoreCustomerManagementFrameworkBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "CustomerManagementFrameworkBundle\PimcoreCustomerManagementFrameworkBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getInstaller()" might add "?InstallerInterface" as a native return type declaration in the future. Do the same in implementation "CustomerManagementFrameworkBundle\PimcoreCustomerManagementFrameworkBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "OutputDataConfigToolkitBundle\OutputDataConfigToolkitBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "OutputDataConfigToolkitBundle\OutputDataConfigToolkitBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "Web2PrintToolsBundle\Web2PrintToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "Web2PrintToolsBundle\Web2PrintToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeJsPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "Web2PrintToolsBundle\Web2PrintToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getEditmodeCssPaths()" might add "array" as a native return type declaration in the future. Do the same in implementation "Web2PrintToolsBundle\Web2PrintToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Pimcore\Extension\Bundle\PimcoreBundleInterface::getInstaller()" might add "?InstallerInterface" as a native return type declaration in the future. Do the same in implementation "Web2PrintToolsBundle\Web2PrintToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: The "cmf.customer_exporter_manager" service is deprecated. Use "CustomerManagementFrameworkBundle\CustomerList\ExporterManagerInterface" instead
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: The "cmf.link-activity-definition.linkgenerator" service is deprecated. Use "CustomerManagementFrameworkBundle\LinkGenerator\LinkActivityDefinitionLinkGenerator" instead
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/lock 5.4: Usage of a DBAL Connection with "Symfony\Component\Lock\Store\PdoStore" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Lock\Store\DoctrineDbalStore" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/cache 5.4: Usage of a DBAL Connection with "Symfony\Component\Cache\Adapter\PdoAdapter" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Cache\Adapter\DoctrineDbalAdapter" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/framework-bundle 5.3: The "session" service and "SessionInterface" alias are deprecated, use "$requestStack->getSession()" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/framework-bundle 5.1: The "session.flash_bag" service is deprecated, use "$session->getFlashBag()" instead.
{
    "exception": {}
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000site_domain_00a16d5a [...]",
        "site_domain_00a16d5a207aa5 [...]"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "system\u0000tags\u0000",
        "site\u0000tags\u0000",
        "site_domain_00a16d5a207aa5 [...]"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key site_domain_00a16d5a207aa593f14b18201ed796fd from cache
{
    "key": "site_domain_00a16d5a207aa593f14b18201ed796fd"
}
DEBUG 06:03:58 doctrine SELECT * FROM redirects WHERE ( (source = :sourcePath AND (`type` = :typePath OR `type` = :typeAuto)) OR (source = :sourcePathQuery AND `type` = :typePathQuery) OR (source = :sourceEntireUri AND `type` = :typeEntireUri) ) AND active = 1 AND regex IS NULL AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC
{
    "sourcePath": "/en/News/Rare-for-a-Reason [...]",
    "sourcePathQuery": "/en/News/Rare-for-a-Reason [...]",
    "sourceEntireUri": "http://pimcore-demo.profil [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000system_route_redirect",
        "system_route_redirect"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "system\u0000tags\u0000",
        "redirect\u0000tags\u0000",
        "route\u0000tags\u0000",
        "system_route_redirect\u0000tags\u0000"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key system_route_redirect from cache
{
    "key": "system_route_redirect"
}
DEBUG 06:03:58 doctrine SELECT * FROM settings_store WHERE id = :id AND scope = :scope
{
    "id": "reports",
    "scope": "pimcore"
}
INFO 06:03:58 request Matched route "news-detail".
{
    "route": "news-detail",
    "route_parameters": {
        "_route": "news-detail",
        "path": "News",
        "_controller": "App\\Controller\\NewsController::detailAction",
        "_locale": "en",
        "newstitle": "Rare-for-a-Reason---Ford-Mustang",
        "news": "770"
    },
    "request_uri": "http://pimcore-demo.profildoors.de/en/News/Rare-for-a-Reason---Ford-Mustang~n770",
    "method": "GET"
}
DEBUG 06:03:58 app Resolved pimcore context for path /en/News/Rare-for-a-Reason---Ford-Mustang~n770 to default
{
    "path": "/en/News/Rare-for-a-Reason---Ford-Mustang~n770",
    "context": "default"
}
DEBUG 06:03:58 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "Rare-for-a-Reason---Ford-M [...]",
    "path": "/en/News/"
}
DEBUG 06:03:58 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/en/News/Rare-for-a-Reason [...]"
}
DEBUG 06:03:58 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "News",
    "path": "/en/"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000document_65",
        "document_65"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "document_65\u0000tags\u0000"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key document_65 from cache
{
    "key": "document_65"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000document_properties_65",
        "document_properties_65"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "document_properties\u0000tags\u0000",
        "document_65\u0000tags\u0000",
        "document_properties_65\u0000tags\u0000"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key document_properties_65 from cache
{
    "key": "document_properties_65"
}
INFO 06:03:58 php 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 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\TokenBasedRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\SignatureRememberMeHandler" instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.demo_frontend" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.demo_frontend" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.demo_frontend" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php 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 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.pimcore_admin_webdav.two_factor_decorator.inner" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php 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 06:03:58 php User Deprecated: Since pimcore/pimcore 10.1: The "pimcore.security.encoder_factory" service is deprecated, use "pimcore.security.user_password_hasher" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Method "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface::getEncoder()" might add "PasswordEncoderInterface" as a native return type declaration in the future. Do the same in implementation "Pimcore\Security\Encoder\EncoderFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.encoder_factory.generic" service is deprecated, use "security.password_hasher_factory" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-core 5.3: Passing a "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" instance to the "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" constructor is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.guard.pimcore_admin.two_factor_decorator.inner" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-guard 5.3: The "Symfony\Component\Security\Guard\Provider\GuardAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.pimcore_admin.two_factor_decorator.inner" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:03:58 php 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 06:03:58 php 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 06:03:58 php 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 06:03:58 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 06:03:58 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 06:03:58 security Populated the TokenStorage with an anonymous Token.
INFO 06:03:58 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 06:03:58 php 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": {}
}
DEBUG 06:03:58 doctrine SELECT id FROM targeting_target_groups UNION SELECT id FROM targeting_rules LIMIT 1
DEBUG 06:03:58 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\TargetingListener::onPreResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onPreResolve"
}
DEBUG 06:03:58 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\DocumentTargetGroupListener::onVisitorInfoResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\DocumentTargetGroupListener::onVisitorInfoResolve"
}
DEBUG 06:03:58 event Notified event "pimcore.targeting.pre_resolve" to listener "CustomerManagementFrameworkBundle\Targeting\EventListener\ElementSegmentsListener::onTargetingPreResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "CustomerManagementFrameworkBundle\\Targeting\\EventListener\\ElementSegmentsListener::onTargetingPreResolve"
}
DEBUG 06:03:58 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onPreResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onPreResolve"
}
DEBUG 06:03:58 doctrine SELECT id FROM targeting_rules WHERE active = 1 ORDER BY `prio` ASC
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    1
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    2
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    3
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    4
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    6
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    7
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    8
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    9
]
DEBUG 06:03:58 doctrine SELECT * FROM targeting_rules WHERE id = ?
[
    10
]
INFO 06:03:58 php User Deprecated: Method "Pimcore\Targeting\Condition\ConditionInterface::fromConfig()" might add "ConditionInterface" as a native return type declaration in the future. Do the same in implementation "CustomerManagementFrameworkBundle\Targeting\Condition\CustomerIsLoggedIn" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000url_1%20and%20timeon [...]",
        "url_1%20and%20timeonsite_2 [...]"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000url_1%20and%20timeon [...]",
        "url_1%20and%20timeonsite_2 [...]"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000url_1%20and%20timeon [...]",
        "url_1%20and%20timeonsite_2 [...]"
    ]
]
INFO 06:03:58 php User Deprecated: Method "Pimcore\Targeting\Condition\ConditionInterface::fromConfig()" might add "ConditionInterface" as a native return type declaration in the future. Do the same in implementation "CustomerManagementFrameworkBundle\Targeting\Condition\HasSegment" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 06:03:58 doctrine SELECT o_id FROM objects WHERE o_path = :path AND `o_key` = :key
{
    "key": "Sports-Cars-Fan",
    "path": "/Customer Management/segme [...]"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000object_875",
        "object_875"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "object_875\u0000tags\u0000",
        "class_2\u0000tags\u0000"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key object_875 from cache
{
    "key": "object_875"
}
DEBUG 06:03:58 doctrine SELECT o_id FROM objects WHERE o_path = :path AND `o_key` = :key
{
    "key": "at least once",
    "path": "/Customer Management/segme [...]"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000object_860",
        "object_860"
    ]
]
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "object_860\u0000tags\u0000",
        "class_2\u0000tags\u0000"
    ]
]
DEBUG 06:03:58 cache Successfully got data for key object_860 from cache
{
    "key": "object_860"
}
DEBUG 06:03:58 event Notified event "pimcore.targeting.post_rule_actions" to listener "CustomerManagementFrameworkBundle\Event\TargetingEventListener::onPostRuleActions".
{
    "event": "pimcore.targeting.post_rule_actions",
    "listener": "CustomerManagementFrameworkBundle\\Event\\TargetingEventListener::onPostRuleActions"
}
DEBUG 06:03:58 doctrine SELECT o_id FROM objects WHERE o_path = :path AND `o_key` = :key
{
    "key": "at least once",
    "path": "/Customer Management/segme [...]"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000cmf_has_segment_1%20 [...]",
        "cmf_has_segment_1%20and%20 [...]"
    ]
]
DEBUG 06:03:58 doctrine SELECT o_id FROM objects WHERE o_path = :path AND `o_key` = :key
{
    "key": "at least once",
    "path": "/Customer Management/segme [...]"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000cmf_has_segment_1%20 [...]",
        "cmf_has_segment_1%20and%20 [...]"
    ]
]
DEBUG 06:03:58 doctrine SELECT o_id FROM objects WHERE o_path = :path AND `o_key` = :key
{
    "key": "at least once",
    "path": "/Customer Management/segme [...]"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000cmf_has_segment_1%20 [...]",
        "cmf_has_segment_1%20and%20 [...]"
    ]
]
DEBUG 06:03:58 event Notified event "pimcore.targeting.post_resolve" to listener "Pimcore\Targeting\EventListener\VisitedPagesCountListener::onPostResolveVisitorInfo".
{
    "event": "pimcore.targeting.post_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\VisitedPagesCountListener::onPostResolveVisitorInfo"
}
DEBUG 06:03:58 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000document_target_groups_65",
        "document_target_groups_65"
    ]
]
DEBUG 06:03:58 cache Key document_target_groups_65 doesn't exist in cache
{
    "key": "document_target_groups_65"
}
DEBUG 06:03:58 doctrine SELECT * FROM documents_editables WHERE documentId = ?
[
    65
]
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 06:03:58 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 06:03:58 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 06:03:58 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 06:03:58 doctrine SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)
[
    1711688638,
    [
        "\u0000tags\u0000object_770",
        "object_770"
    ]
]
DEBUG 06:03:58 cache Key object_770 doesn't exist in cache
{
    "key": "object_770"
}
DEBUG 06:03:58 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    770
]
INFO 06:03:58 php User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
DEBUG 06:03:58 doctrine SELECT * FROM redirects WHERE ( (source = :sourcePath AND (`type` = :typePath OR `type` = :typeAuto)) OR (source = :sourcePathQuery AND `type` = :typePathQuery) OR (source = :sourceEntireUri AND `type` = :typeEntireUri) ) AND active = 1 AND regex IS NULL AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL ORDER BY `priority` DESC
{
    "sourcePath": "/en/News/Rare-for-a-Reason [...]",
    "sourcePathQuery": "/en/News/Rare-for-a-Reason [...]",
    "sourceEntireUri": "http://pimcore-demo.profil [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
ERROR 06:03:58 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "News not found." at /www/htdocs/w0189996/pimcore-demo/src/Controller/NewsController.php line 76
{
    "exception": {}
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 06:03:58 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 06:03:58 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 06:03:58 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 06:03:58 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 06:03:58 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 06:03:58 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
News not found.

  at src/Controller/NewsController.php:76
  at App\Controller\NewsController->detailAction(object(Request), object(HeadTitle), object(Placeholder), object(NewsLinkGenerator), object(BreadcrumbHelperService))
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  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))
     (public/index.php:36)                
Loading…
Loading the web debug toolbar…
Attempt #