https://simplymeet.test.d.simplybook.ovh/.git/config

Exceptions

Not Found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      *
  2.      * @final
  3.      */
  4.     protected function createNotFoundException(string $message 'Not Found', \Throwable $previous null): NotFoundHttpException
  5.     {
  6.         return new NotFoundHttpException($message$previous);
  7.     }
  8.     /**
  9.      * Returns an AccessDeniedException.
  10.      *
AbstractController->createNotFoundException() in src/Controller/CustomDomainController.php (line 46)
  1.         $domain $request->headers->get(RequestHandlerResolver::CUSTOM_DOMAIN_HEADER);
  2.         $path = (string)$request->headers->get(RequestHandlerResolver::CUSTOM_DOMAIN_PATH_HEADER);
  3.         $requestHandler $this->requestHandlerResolver->resolve($domain$path);
  4.         if (null === $requestHandler) {
  5.             throw $this->createNotFoundException();
  6.         }
  7.         return $this->forward($requestHandler->getController(), $requestHandler->getParameters(), $request->query->all());
  8.     }
  9. }
in vendor/symfony/http-kernel/HttpKernel.php -> forwardToSchedulingPage (line 169)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 30)
  1.     Request::setTrustedHosts(explode(','$trustedHosts));
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 01:32:53 php User Deprecated: Creating Doctrine\ORM\Mapping\UnderscoreNamingStrategy without making it number aware is deprecated and will be removed in Doctrine ORM 3.0.
{
    "exception": {}
}
INFO 01:32:53 php User Deprecated: YAML mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to annotation or XML driver.
{
    "exception": {}
}
INFO 01:32:53 php User Deprecated: Using Groups is deprecated since version 2.2 and will be removed in 3.0.
{
    "exception": {}
}
INFO 01:32:53 php User Deprecated: The "Harmonizely\Model\UserInterface" interface extends "FOS\UserBundle\Model\UserInterface" that is deprecated since Symfony 4.1. Remove in Nov 2023 (End of support for security fixes SF 4.4).
{
    "exception": {}
}
INFO 01:32:53 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://simplymeet.super-admin.test.d.simplybook.ovh/_profiler/latest?ip=216.73.216.32",
    "method": "GET"
}
INFO 01:32:53 php User Deprecated: The "fos_rest.serializer.exception_normalizer.symfony" service is deprecated since FOSRestBundle 2.8.
{
    "exception": {}
}
INFO 01:32:53 php User Deprecated: The FOS\RestBundle\Serializer\Normalizer\ExceptionNormalizer class is deprecated since FOSRestBundle 2.8.
{
    "exception": {}
}
INFO 01:32:53 request Matched route "_profiler_exception_css".
{
    "route": "_profiler_exception_css",
    "route_parameters": {
        "_route": "_profiler_exception_css",
        "_controller": "web_profiler.controller.exception_panel::stylesheet",
        "token": "0a18cc"
    },
    "request_uri": "https://simplymeet.super-admin.test.d.simplybook.ovh/_profiler/0a18cc/exception.css",
    "method": "GET"
}
INFO 01:32:53 request Matched route "_profiler_search_bar".
{
    "route": "_profiler_search_bar",
    "route_parameters": {
        "_route": "_profiler_search_bar",
        "_controller": "web_profiler.controller.profiler::searchBarAction"
    },
    "request_uri": "https://simplymeet.super-admin.test.d.simplybook.ovh/_profiler/search_bar?ip=216.73.216.32",
    "method": "GET"
}
INFO 01:32:54 request Matched route "_profiler_exception".
{
    "route": "_profiler_exception",
    "route_parameters": {
        "_route": "_profiler_exception",
        "_controller": "web_profiler.controller.exception_panel::body",
        "token": "0a18cc"
    },
    "request_uri": "https://simplymeet.super-admin.test.d.simplybook.ovh/_profiler/0a18cc/exception",
    "method": "GET"
}

Stack Trace

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Not Found

  at vendor/symfony/framework-bundle/Controller/ControllerTrait.php:294
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createNotFoundException()
     (src/Controller/CustomDomainController.php:46)
  at Harmonizely\Controller\CustomDomainController->forwardToSchedulingPage()
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:30)