Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#1832 -statusCode: 404 -headers: [] }
- if ($referer = $request->headers->get('referer')) {
- $message .= \sprintf(' (from "%s")', $referer);
- }
- throw new NotFoundHttpException($message, $e);
- } catch (MethodNotAllowedException $e) {
- $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
- throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
- }
            
        
    
    
                    
            in
            
                vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
            
                            ->
                onKernelRequest
                        (line 58)
            
        
    
    - // This call is required in all cases, because the default router needs our webspace information
- // Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
- $this->requestAnalyzer->analyze($request);
- $this->baseRouteListener->onKernelRequest($event);
- if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
- $this->requestAnalyzer->validate($request);
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/WrappedListener.php
            
                            ->
                onKernelRequest
                        (line 115)
            
        
    
    - $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
- $e = $this->stopwatch->start($this->name, 'event_listener');
- try {
- ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                __invoke
                        (line 206)
            
        
    
    - foreach ($listeners as $listener) {
- if ($stoppable && $event->isPropagationStopped()) {
- break;
- }
- $listener($event, $eventName, $this);
- }
- }
- /**
- * Sorts the internal list of listeners for the given event by priority.
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                callListeners
                        (line 56)
            
        
    
    - } else {
- $listeners = $this->getListeners($eventName);
- }
- if ($listeners) {
- $this->callListeners($listeners, $eventName, $event);
- }
- return $event;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
            
                            ->
                dispatch
                        (line 126)
            
        
    
    - try {
- $this->beforeDispatch($eventName, $event);
- try {
- $e = $this->stopwatch->start($eventName, 'section');
- try {
- $this->dispatcher->dispatch($event, $eventName);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                dispatch
                        (line 159)
            
        
    
    - */
- private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
- {
- // request
- $event = new RequestEvent($this, $request, $type);
- $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
- if ($event->hasResponse()) {
- return $this->filterResponse($event->getResponse(), $request, $type);
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                handleRaw
                        (line 76)
            
        
    
    - $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
- $this->requestStack->push($request);
- $response = null;
- try {
- return $response = $this->handleRaw($request, $type);
- } catch (\Throwable $e) {
- if ($e instanceof \Error && !$this->handleAllThrowables) {
- throw $e;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/Kernel.php
            
                            ->
                handle
                        (line 182)
            
        
    
    - $this->boot();
- ++$this->requestStackSize;
- $this->resetServices = true;
- try {
- return $this->getHttpKernel()->handle($request, $type, $catch);
- } finally {
- --$this->requestStackSize;
- }
- }
- // instead of relying on the configuration parameter
- // https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-override
- Request::enableHttpMethodParameterOverride();
- $request = Request::createFromGlobals();
- $response = $kernel->handle($request);
- $response->send();
- $kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
            
        
    
    
                    
            in
            
                vendor/symfony-cmf/routing/src/ChainRouter.php
            
                        (line 180)
            
        
    
    - $info = $request
- ? "this request\n$request"
- : "url '$pathinfo'";
- throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
- }
- /**
- * {@inheritdoc}
- *
            
        
    
    
                    
            in
            
                vendor/symfony-cmf/routing/src/ChainRouter.php
            
                            ->
                doMatch
                        (line 134)
            
        
    
    - *
- * Loops through all routes and tries to match the passed request.
- */
- public function matchRequest(Request $request): array
- {
- return $this->doMatch($request->getPathInfo(), $request);
- }
- /**
- * Loops through all routers and tries to match the passed request or url.
- *
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/EventListener/RouterListener.php
            
                            ->
                matchRequest
                        (line 101)
            
        
    
    - // add attributes based on the request (routing)
- try {
- // matching a request is more powerful than matching a URL path + context, so try that first
- if ($this->matcher instanceof RequestMatcherInterface) {
- $parameters = $this->matcher->matchRequest($request);
- } else {
- $parameters = $this->matcher->match($request->getPathInfo());
- }
- $this->logger?->info('Matched route "{route}".', [
            
        
    
    
                    
            in
            
                vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
            
                            ->
                onKernelRequest
                        (line 58)
            
        
    
    - // This call is required in all cases, because the default router needs our webspace information
- // Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
- $this->requestAnalyzer->analyze($request);
- $this->baseRouteListener->onKernelRequest($event);
- if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
- $this->requestAnalyzer->validate($request);
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/WrappedListener.php
            
                            ->
                onKernelRequest
                        (line 115)
            
        
    
    - $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
- $e = $this->stopwatch->start($this->name, 'event_listener');
- try {
- ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                __invoke
                        (line 206)
            
        
    
    - foreach ($listeners as $listener) {
- if ($stoppable && $event->isPropagationStopped()) {
- break;
- }
- $listener($event, $eventName, $this);
- }
- }
- /**
- * Sorts the internal list of listeners for the given event by priority.
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                callListeners
                        (line 56)
            
        
    
    - } else {
- $listeners = $this->getListeners($eventName);
- }
- if ($listeners) {
- $this->callListeners($listeners, $eventName, $event);
- }
- return $event;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
            
                            ->
                dispatch
                        (line 126)
            
        
    
    - try {
- $this->beforeDispatch($eventName, $event);
- try {
- $e = $this->stopwatch->start($eventName, 'section');
- try {
- $this->dispatcher->dispatch($event, $eventName);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                dispatch
                        (line 159)
            
        
    
    - */
- private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
- {
- // request
- $event = new RequestEvent($this, $request, $type);
- $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
- if ($event->hasResponse()) {
- return $this->filterResponse($event->getResponse(), $request, $type);
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                handleRaw
                        (line 76)
            
        
    
    - $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
- $this->requestStack->push($request);
- $response = null;
- try {
- return $response = $this->handleRaw($request, $type);
- } catch (\Throwable $e) {
- if ($e instanceof \Error && !$this->handleAllThrowables) {
- throw $e;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/Kernel.php
            
                            ->
                handle
                        (line 182)
            
        
    
    - $this->boot();
- ++$this->requestStackSize;
- $this->resetServices = true;
- try {
- return $this->getHttpKernel()->handle($request, $type, $catch);
- } finally {
- --$this->requestStackSize;
- }
- }
- // instead of relying on the configuration parameter
- // https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-override
- Request::enableHttpMethodParameterOverride();
- $request = Request::createFromGlobals();
- $response = $kernel->handle($request);
- $response->send();
- $kernel->terminate($request, $response);
Logs
| Level | Channel | Message | 
|---|---|---|
| INFO 06:13:23 | deprecation | User Deprecated: Since symfony/var-exporter 7.3: The "Symfony\Component\VarExporter\LazyGhostTrait" trait is deprecated, use native lazy objects instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:176 called by AbstractMySQLDriver.php:45, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | deprecation | User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
    "exception": {}
} | 
| INFO 06:13:23 | request | Matched route "_profiler". {
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "9bc440"
    },
    "request_uri": "https://barbara.teamsante.at/_profiler/9bc440?panel=exception&type=request",
    "method": "GET"
} | 
| INFO 06:13:23 | doctrine | Connecting with parameters {params} {
    "params": {
        "use_savepoints": true,
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "localhost",
        "port": null,
        "user": "usr_r548w2_sulu",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "usr_r548w2_sulu",
        "serverVersion": "mariadb-10.5.29",
        "charset": "utf8mb4"
    }
} | 
| DEBUG 06:13:23 | doctrine | Executing statement: SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC (parameters: {params}, types: {types}) {
    "sql": "SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC",
    "params": {
        "1": "teamsante",
        "2": 3
    },
    "types": {
        "1": 2,
        "2": 1
    }
} | 
| DEBUG 06:13:23 | 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:13:23 | 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:13:23 | event | Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
} | 
| DEBUG 06:13:23 | 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:13:23 | 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:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | 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:13:23 | 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:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | 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:13:23 | 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:13:23 | event | Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\UserContextListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\UserContextListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SecurityListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SecurityListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\AttributesListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\AttributesListener::onKernelRequest"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\MediaBundle\FileInspector\UploadFileSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\MediaBundle\\FileInspector\\UploadFileSubscriber::onKernelRequest"
} | 
| DEBUG 06:13:23 | 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:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\AudienceTargetingBundle\EventListener\DeviceDetectorSubscriber::setUserAgent". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\AudienceTargetingBundle\\EventListener\\DeviceDetectorSubscriber::setUserAgent"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.request" to listener "Sulu\Bundle\AudienceTargetingBundle\EventListener\TargetGroupSubscriber::setTargetGroup". {
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\AudienceTargetingBundle\\EventListener\\TargetGroupSubscriber::setTargetGroup"
} | 
| DEBUG 06:13:23 | 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:13:23 | 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:13:23 | event | Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". {
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 06:13:23 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
} | 
| DEBUG 06:13:23 | 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:13:23 | doctrine | Executing statement: SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC (parameters: {params}, types: {types}) {
    "sql": "SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC",
    "params": {
        "1": "teamsante",
        "2": 3
    },
    "types": {
        "1": 2,
        "2": 1
    }
} | 
| DEBUG 06:13:23 | doctrine | Executing statement: SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC (parameters: {params}, types: {types}) {
    "sql": "SELECT a0_.title AS title_0, a0_.description AS description_1, a0_.priority AS priority_2, a0_.allWebspaces AS allWebspaces_3, a0_.active AS active_4, a0_.id AS id_5, a1_.title AS title_6, a1_.frequency AS frequency_7, a1_.id AS id_8, a2_.`type` AS type_9, a2_.`condition` AS condition_10, a2_.id AS id_11, a1_.idTargetGroups AS idTargetGroups_12, a2_.idTargetGroupRules AS idTargetGroupRules_13 FROM at_target_groups a0_ INNER JOIN at_target_group_rules a1_ ON a0_.id = a1_.idTargetGroups INNER JOIN at_target_group_conditions a2_ ON a1_.id = a2_.idTargetGroupRules LEFT JOIN at_target_group_webspaces a3_ ON a0_.id = a3_.idTargetGroups WHERE a0_.active = 1 AND ((a0_.allWebspaces = 1 OR a3_.webspaceKey = ?)) AND a1_.frequency <= ? ORDER BY a0_.priority DESC",
    "params": {
        "1": "teamsante",
        "2": 3
    },
    "types": {
        "1": 2,
        "2": 1
    }
} | 
Stack Traces 2
| 
                                            [2/2]
                                        NotFoundHttpException                    
                    
                 | 
|---|
| 
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://barbara.teamsante.at/index.html"
  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:58)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:70)                 | 
| 
                                            [1/2]
                                        ResourceNotFoundException                    
                    
                 | 
|---|
| 
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /index.html HTTP/2.0
Accept:         */*
Host:           barbara.teamsante.at
User-Agent:     meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)
X-Php-Ob-Level: 1
  at vendor/symfony-cmf/routing/src/ChainRouter.php:180
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:134)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:58)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:70)                 |