Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#14830 -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/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(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/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;}}
in
vendor/runtime/frankenphp-symfony/src/Runner.php
->
handle
(line 38)
$handler = function () use ($server, &$sfRequest, &$sfResponse): void {// Merge the environment variables coming from DotEnv with the ones tied to the current request$_SERVER += $server;$sfRequest = Request::createFromGlobals();$sfResponse = $this->kernel->handle($sfRequest);$sfResponse->send();};$loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in
vendor/runtime/frankenphp-symfony/src/Runner.php
frankenphp_handle_request
(line 45)
$sfResponse->send();};$loops = 0;do {$ret = \frankenphp_handle_request($handler);if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {$this->kernel->terminate($sfRequest, $sfResponse);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 89)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
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 firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(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/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;}}
in
vendor/runtime/frankenphp-symfony/src/Runner.php
->
handle
(line 38)
$handler = function () use ($server, &$sfRequest, &$sfResponse): void {// Merge the environment variables coming from DotEnv with the ones tied to the current request$_SERVER += $server;$sfRequest = Request::createFromGlobals();$sfResponse = $this->kernel->handle($sfRequest);$sfResponse->send();};$loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in
vendor/runtime/frankenphp-symfony/src/Runner.php
frankenphp_handle_request
(line 45)
$sfResponse->send();};$loops = 0;do {$ret = \frankenphp_handle_request($handler);if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {$this->kernel->terminate($sfRequest, $sfResponse);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs 101
| Level | Message |
|---|---|
| error 22:28:26 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vehicules"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:48:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:51 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:51 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 09:19:51 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:17 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:17 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:17 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:18 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:18 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:18 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/php.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 13:51:18 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpversion.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:32:29 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/twint_ch.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:32:30 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:10 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:10 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 15:55:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 22:12:19 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 22:12:28 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/f31d9d%3Fpanel%3Drequest"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-2"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-1"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L101"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/public/index.php%23L5"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:39 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:39 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:12:39 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 07:50:51 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| info 10:55:06 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| error 13:18:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico" (from "https://resasfa.elementroot.tech/vehicles")" at RouterListener.php line 156 {
"exception": {}
}
|
| info 14:50:40 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| info 14:50:40 |
Matched route "_wdt". {
"route": "_wdt",
"route_parameters": {
"_route": "_wdt",
"_controller": "web_profiler.controller.profiler::toolbarAction",
"token": "114585"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/114585?XDEBUG_IGNORE=1",
"method": "GET"
}
|
| info 14:50:51 |
Matched route "_wdt". {
"route": "_wdt",
"route_parameters": {
"_route": "_wdt",
"_controller": "web_profiler.controller.profiler::toolbarAction",
"token": "862da3"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/862da3?XDEBUG_IGNORE=1",
"method": "GET"
}
|
| info 14:54:53 |
Matched route "_wdt". {
"route": "_wdt",
"route_parameters": {
"_route": "_wdt",
"_controller": "web_profiler.controller.profiler::toolbarAction",
"token": "4ea894"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/4ea894?XDEBUG_IGNORE=1",
"method": "GET"
}
|
| info 14:55:04 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| error 17:20:12 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/twint_ch.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 07:12:43 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| info 13:47:17 |
Matched route "_wdt". {
"route": "_wdt",
"route_parameters": {
"_route": "_wdt",
"_controller": "web_profiler.controller.profiler::toolbarAction",
"token": "bdc220"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/bdc220?XDEBUG_IGNORE=1",
"method": "GET"
}
|
| info 15:53:53 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| error 17:48:06 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:48:06 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 05:11:16 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 05:11:16 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 10:27:05 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-json/"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:13:22 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/index.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 18:37:35 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 18:37:35 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:35 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sitemap.xml"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:36 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/laravel/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/laravel/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/admin/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/core/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/app.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/bundle.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/@vite/client"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vendor.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sw.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/bundle.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/HEAD"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/__env.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php~"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.dev"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.save"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.vscode/sftp.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-json/wc/v2/payment_gateways"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-content/uploads/wc-logs/"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/v1/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/stripe/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/manifest.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:08 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vendor.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:13 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sw.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:15 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.vite/manifest.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:15 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.bak"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:15 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:16 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-content/debug.log"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:16 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 19:25:04 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 19:45:37 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 19:46:06 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/573677%3Fpanel%3Drequest"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 20:51:34 |
Matched route "_wdt_stylesheet". {
"route": "_wdt_stylesheet",
"route_parameters": {
"_route": "_wdt_stylesheet",
"_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
},
"request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
"method": "GET"
}
|
| info 20:56:24 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 20:56:31 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/a9dfde%3Fpanel%3Drequest"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/https%3A/symfony.com/doc/7.3.4/index.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:37 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:39 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:40 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L45"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:41 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/autoload_runtime.php%23L29"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L45"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:52 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 22:26:57 |
Matched route "_profiler_home". {
"route": "_profiler_home",
"route_parameters": {
"_controller": "Symfony\\Bundle\\FrameworkBundle\\Controller\\RedirectController::urlRedirectAction",
"path": "/_profiler/",
"permanent": true,
"scheme": null,
"httpPort": 80,
"httpsPort": 443,
"_route": "_profiler_home"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler",
"method": "GET"
}
|
| info 23:45:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/robots.txt"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/runtime/frankenphp-symfony/src/Runner.php:38)
at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
at frankenphp_handle_request(object(Closure))
(vendor/runtime/frankenphp-symfony/src/Runner.php:45)
at Runtime\FrankenPhpSymfony\Runner->run()
(vendor/autoload_runtime.php:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/robots.txt/')
(vendor/symfony/routing/Matcher/UrlMatcher.php:89)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/runtime/frankenphp-symfony/src/Runner.php:38)
at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
at frankenphp_handle_request(object(Closure))
(vendor/runtime/frankenphp-symfony/src/Runner.php:45)
at Runtime\FrankenPhpSymfony\Runner->run()
(vendor/autoload_runtime.php:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|