Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#8900 -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 164
| Level | Message |
|---|---|
| info 02:51:17 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "POST"
}
|
| info 02:51:18 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "POST"
}
|
| info 02:51:50 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "POST"
}
|
| info 02:51:50 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "POST"
}
|
| error 05:52:36 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech//.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 08:28:38 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:14:38 |
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 17:14:41 |
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"
}
|
| info 17:14:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=request",
"method": "GET"
}
|
| info 17:14:49 |
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 17:14:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=request&type=request",
"method": "GET"
}
|
| info 17:14:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=exception&type=request",
"method": "GET"
}
|
| info 17:14:55 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=events&type=request",
"method": "GET"
}
|
| info 17:15:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=http_client&type=request",
"method": "GET"
}
|
| info 17:14:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=time&type=request",
"method": "GET"
}
|
| info 17:14:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=config&type=request",
"method": "GET"
}
|
| info 17:15:00 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10",
"method": "GET"
}
|
| info 17:15:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=router&type=request",
"method": "GET"
}
|
| info 17:15:02 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=messenger&type=request",
"method": "GET"
}
|
| info 17:15:03 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=cache&type=request",
"method": "GET"
}
|
| info 17:15:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=logger&type=request",
"method": "GET"
}
|
| info 17:15:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=twig&type=request",
"method": "GET"
}
|
| info 17:15:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request",
"method": "GET"
}
|
| info 17:15:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e",
"method": "GET"
}
|
| info 17:15:06 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET",
"method": "GET"
}
|
| info 17:15:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request",
"method": "GET"
}
|
| info 17:15:07 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 17:15:09 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 17:15:09 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 17:15:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| error 07:34:38 |
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 02:41:54 |
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 03:17:12 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 12:21:06 |
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 16:20:39 |
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"
}
|
| info 18:17:21 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=messenger&type=request",
"method": "GET"
}
|
| info 17:45:51 |
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 17:45:52 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/server"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/server-status"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/about"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/login.action"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:57 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v2/_catalog"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:58 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.DS_Store"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:45:59 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:01 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:03 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:04 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/graphql"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:04 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:04 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api/graphql"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:05 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/graphql/api"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:05 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api/gql"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:05 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/s/533313e2236313e2233313e2436313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:46:05 |
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 17:46:06 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:46:06 |
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 17:46:06 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:07 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:08 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/telescope/requests"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:09 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:10 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.well-known/security.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/actuator/env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:13 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger-ui.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:14 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/index.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:15 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/swagger-ui.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:16 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/webjars/swagger-ui/index.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:17 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:18 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/v1/swagger.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:19 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v2/api-docs"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:20 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v3/api-docs"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:21 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api-docs/swagger.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:22 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/swagger.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:24 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/@vite/env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:46:25 |
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": {}
}
|
| info 17:46:26 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "OPTIONS"
}
|
| info 17:46:27 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/?rest_route=%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| error 17:46:28 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debug/default/view"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:48:17 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:48:17 |
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"
}
|
| info 17:48:18 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:48: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 17:48:19 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 17:48:20 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:48:27 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:48:28 |
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 17:48:29 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:49:54 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:50:46 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:50:47 |
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 17:50:48 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:50:50 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:50:51 |
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 17:50:52 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 17:50:55 |
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"
}
|
| info 17:51:48 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "HEAD"
}
|
| info 17:51:48 |
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 17:51:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 18:06:38 |
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:13:16 |
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": {}
}
|
| 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": {}
}
|
| error 18:13:22 |
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:13:22 |
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": {}
}
|
| error 18:13:23 |
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:13:28 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 18:13:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e",
"method": "GET"
}
|
| info 18:16:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=exception&type=request",
"method": "GET"
}
|
| info 18:14:34 |
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"
}
|
| info 18:15:49 |
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:15:49 |
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 18:15:54 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=request",
"method": "GET"
}
|
| info 18:16:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=config&type=request",
"method": "GET"
}
|
| info 18:16:03 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=router&type=request",
"method": "GET"
}
|
| info 18:16:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:09 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10",
"method": "GET"
}
|
| info 18:16:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:16:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83",
"method": "GET"
}
|
| info 18:16:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=request&type=request",
"method": "GET"
}
|
| info 18:16:13 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=cache&type=request",
"method": "GET"
}
|
| info 18:16:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:16:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=logger&type=request",
"method": "GET"
}
|
| info 18:16:18 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:20 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request",
"method": "GET"
}
|
| info 18:16:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83",
"method": "GET"
}
|
| info 18:16:20 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:21 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/?rest_route=%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| info 18:16:21 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e",
"method": "GET"
}
|
| info 18:16:22 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:22 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:23 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "d48d4e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:23 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request",
"method": "GET"
}
|
| info 18:16:24 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:41 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=config&type=request",
"method": "GET"
}
|
| info 18:16:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:26 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=config&type=request",
"method": "GET"
}
|
| info 18:16:26 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:16:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d",
"method": "GET"
}
|
| info 18:16:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=request",
"method": "GET"
}
|
| info 18:16:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=cache&type=request",
"method": "GET"
}
|
| info 18:16:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=logger&type=request",
"method": "GET"
}
|
| info 18:16:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7",
"method": "GET"
}
|
| info 18:16:31 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=router&type=request",
"method": "GET"
}
|
| info 18:16:31 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=router&type=request",
"method": "GET"
}
|
| info 18:16:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:33 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c9d8c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4",
"method": "GET"
}
|
| info 18:16:33 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=logger&type=request",
"method": "GET"
}
|
| info 18:16:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:35 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=router&type=request",
"method": "GET"
}
|
| info 18:16:35 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=router&type=request",
"method": "GET"
}
|
| info 18:16:36 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=logger&type=request",
"method": "GET"
}
|
| info 18:16:36 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:37 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:37 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=config&type=request",
"method": "GET"
}
|
| info 18:16:38 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:38 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:39 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=logger&type=request",
"method": "GET"
}
|
| info 18:16:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=cache&type=request",
"method": "GET"
}
|
| info 18:16:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=config&type=request",
"method": "GET"
}
|
| info 18:16:41 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=cache&type=request",
"method": "GET"
}
|
| info 18:16:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:16:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=cache&type=request",
"method": "GET"
}
|
| info 18:16:43 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:16:43 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=exception&type=request",
"method": "GET"
}
|
| info 18:16:44 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=request&type=request",
"method": "GET"
}
|
| info 18:16:44 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=request&type=request",
"method": "GET"
}
|
| info 18:16:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=request&type=request",
"method": "GET"
}
|
| info 18:16:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:16:46 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:16:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:16:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=exception&type=request",
"method": "GET"
}
|
| info 18:16:47 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:16:48 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10",
"method": "GET"
}
|
| info 18:16:49 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10",
"method": "GET"
}
|
| info 18:16:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=request&type=request",
"method": "GET"
}
|
| info 18:16:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:16:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:16:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7",
"method": "GET"
}
|
| info 18:16:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:16:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "cf15b1"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1",
"method": "GET"
}
|
| info 18:16:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5",
"method": "GET"
}
|
| info 18:16:54 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4",
"method": "GET"
}
|
| info 18:16:54 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a",
"method": "GET"
}
|
| info 18:17:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:16:55 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:55 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c9d8c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:56 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:56 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "cf15b1"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:57 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&method=GET",
"method": "GET"
}
|
| info 18:16:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=time&type=request",
"method": "GET"
}
|
| info 18:16:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=twig&type=request",
"method": "GET"
}
|
| info 18:16:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=events&type=request",
"method": "GET"
}
|
| info 18:16:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=logger&type=request",
"method": "GET"
}
|
| info 18:17:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=router&type=request",
"method": "GET"
}
|
| info 18:17:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=time&type=request",
"method": "GET"
}
|
| info 18:17:01 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&method=GET&type=request",
"method": "GET"
}
|
| info 18:17:02 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=cache&type=request",
"method": "GET"
}
|
| info 18:17:02 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=events&type=request",
"method": "GET"
}
|
| info 18:17:03 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&method=GET&type=request",
"method": "GET"
}
|
| info 18:17:03 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=router&type=request",
"method": "GET"
}
|
| info 18:17:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=logger&type=request",
"method": "GET"
}
|
| error 18:37:54 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 18:17:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=twig&type=request",
"method": "GET"
}
|
| info 18:17:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=router&type=request",
"method": "GET"
}
|
| info 18:17:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=events&type=request",
"method": "GET"
}
|
| info 18:17:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=logger&type=request",
"method": "GET"
}
|
| info 18:17:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=cache&type=request",
"method": "GET"
}
|
| info 18:17:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=time&type=request",
"method": "GET"
}
|
| info 18:17:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=twig&type=request",
"method": "GET"
}
|
| info 18:17:08 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:17:09 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=router&type=request",
"method": "GET"
}
|
| info 18:17:09 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=logger&type=request",
"method": "GET"
}
|
| info 18:17:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=events&type=request",
"method": "GET"
}
|
| info 18:17:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=config&type=request",
"method": "GET"
}
|
| info 18:17:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=time&type=request",
"method": "GET"
}
|
| info 18:17:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=config&type=request",
"method": "GET"
}
|
| info 18:17:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=twig&type=request",
"method": "GET"
}
|
| info 18:17:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=config&type=request",
"method": "GET"
}
|
| error 18:37:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.bak"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 18:17:13 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=config&type=request",
"method": "GET"
}
|
| info 18:17:13 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=cache&type=request",
"method": "GET"
}
|
| info 18:17:14 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:17:14 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:17:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=cache&type=request",
"method": "GET"
}
|
| info 18:17:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:17:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:17:16 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:17:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=request&type=request",
"method": "GET"
}
|
| info 18:17:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=request&type=request",
"method": "GET"
}
|
| info 18:17:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:17:20 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:20 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:21 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:25 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:22 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:22 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "cf15b1"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:23 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c9d8c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:23 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "cf15b1"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:24 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c9d8c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:24 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:25 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10",
"method": "GET"
}
|
| info 18:17:26 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET",
"method": "GET"
}
|
| info 18:17:26 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=request&type=request",
"method": "GET"
}
|
| info 18:17:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=messenger&type=request",
"method": "GET"
}
|
| info 18:17:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=request&type=request",
"method": "GET"
}
|
| info 18:17:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:17:30 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:31 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:31 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=exception&type=request",
"method": "GET"
}
|
| info 18:17:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=http_client&type=request",
"method": "GET"
}
|
| info 18:17:33 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&method=GET",
"method": "GET"
}
|
| info 18:17:33 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:34 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:34 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:35 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "103c83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:35 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:36 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "1a666d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:37 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "06ac1e"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:37 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "cf15b1"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:38 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "a8b7c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:38 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "19dae5"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:39 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c9d8c4"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:39 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "f0ce2a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:40 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "5f13b7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 18:17:41 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&type=request",
"method": "GET"
}
|
| info 18:17:41 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&type=request",
"method": "GET"
}
|
| info 18:17:42 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "390e83"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:43 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| info 18:17:43 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| info 18:17:44 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "dbb1f7"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
"method": "GET"
}
|
| info 18:17:44 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| info 18:17:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
"method": "GET"
}
|
| info 18:22:38 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "0c4569"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/0c4569",
"method": "GET"
}
|
| 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/index.html"" 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/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/robots.txt"" 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/robots.txt"" 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/sitemap.xml"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:41 |
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:41 |
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:41 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:47 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.vite"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:47 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:48 |
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 18:37: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 18:37:50 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/payment/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:51 |
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:51 |
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:52 |
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:52 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:52 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.vite"" 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/backend/.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/stripe/.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/payment/.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.local"" 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/assets/.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/main.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/.env.local"" 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/.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/__env.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/config.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/main.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/app.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/env.json"" 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/@vite/client"" 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.bak"" 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.old"" 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.save"" 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-content/debug.log"" 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.staging"" 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.old"" 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/credentials.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/docker-compose.yml"" 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-admin/admin-ajax.php"" 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/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/settings"" 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/_next/data/"" 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/asset-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/html/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:59 |
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/app/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:59 |
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/home/www/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:37:59 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/icons/.%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/icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:12 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/stripe.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:38:12 |
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:38:12 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/payment.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/config.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/env.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/.git/HEAD"" 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.old"" 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-config.php.save"" 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-config.php~"" 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.staging"" 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.save"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 18:43:33 |
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 18:51:12 |
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:55:20 |
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": {}
}
|
| error 19:20:43 |
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": {}
}
|
| error 19:25:03 |
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:25:04 |
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:26:00 |
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"
}
|
| info 19:45:48 |
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/_wdt/styles"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 19:46:09 |
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 20:47:08 |
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:51:33 |
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 20:55:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=request",
"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"
}
|
| info 20:56:29 |
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:30 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:31 |
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 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/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: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/HttpKernel.php%23L76"" 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/%23trace-box-1"" 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/https%3A/resasfa.elementroot.tech/_wdt/styles"" 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/autoload_runtime.php%23L29"" 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/Dumper/CompiledUrlMatcherTrait.php%23L70"" 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/_profiler/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" 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/symfony/http-kernel/HttpKernel.php%23L159"" 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/symfony/http-kernel/Kernel.php%23L182"" 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/public/index.php%23L5"" 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/http-kernel/EventListener/RouterListener.php%23L101"" 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/_wdt/file%3A/app/vendor/symfony/http-kernel/Kernel.php%23L182"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:42 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/symfony.com/doc/7.3.4/index.html"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:42 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/%23trace-box-1"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:42 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:43 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L159"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:43 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/Kernel.php%23L182"" 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%23L45"" 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/public/index.php%23L5"" 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/http-kernel/EventListener/RouterListener.php%23L101"" 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/https%3A/resasfa.elementroot.tech/_profiler/f1440c%3Fpanel%3Drequest"" 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/%23trace-box-2"" 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/_profiler/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:46 |
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 20:56:47 |
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/event-dispatcher/EventDispatcher.php%23L56"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:48 |
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": {}
}
|
| error 20:56:49 |
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%23L38"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:50 |
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/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:51 |
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/_profiler/ac9589%3Fpanel%3Drequest"" 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/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:53 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" 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/https%3A/resasfa.elementroot.tech/_profiler/2a48b3%3Fpanel%3Drequest"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/%23trace-box-2"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 20:56:56 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 22:26:57 |
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 22:26:57 |
Matched route "_profiler_home". {
"route": "_profiler_home",
"route_parameters": {
"_route": "_profiler_home",
"_controller": "web_profiler.controller.profiler::homeAction"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/",
"method": "GET"
}
|
| info 22:26:57 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "empty"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/empty/search/results?limit=10",
"method": "GET"
}
|
| info 22:27:28 |
Matched route "_profiler_search". {
"route": "_profiler_search",
"route_parameters": {
"_route": "_profiler_search",
"_controller": "web_profiler.controller.profiler::searchAction"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/search?type=request",
"method": "GET"
}
|
| info 22:27:28 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "empty"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/empty/search/results?type=request",
"method": "GET"
}
|
| info 22:28:14 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?panel=request&type=request",
"method": "GET"
}
|
| info 22:28:43 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=http_client&type=request",
"method": "GET"
}
|
| info 22:29:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=cache&type=request",
"method": "GET"
}
|
| info 22:31:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=logger&type=request",
"method": "GET"
}
|
| info 22:30:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=request&type=request",
"method": "GET"
}
|
| info 22:30:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=exception&type=request",
"method": "GET"
}
|
| info 22:31:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=time&type=request",
"method": "GET"
}
|
| info 22:32:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=config&type=request",
"method": "GET"
}
|
| info 22:32:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=events&type=request",
"method": "GET"
}
|
| info 22:32:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=twig&type=request",
"method": "GET"
}
|
| info 22:33:23 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=router&type=request",
"method": "GET"
}
|
| info 22:33:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=messenger&type=request",
"method": "GET"
}
|
| info 22:33:49 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "a13bf8"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| error 23:45:17 |
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 23:45:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "71d76d"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/71d76d",
"method": "GET"
}
|
| info 23:45:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc",
"method": "GET"
}
|
| error 23:45:19 |
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 23:45:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/2a48b3%3Fpanel%3Drequest"
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 "/https%3A/resasfa.elementroot.tech/_profiler/2a48b3%3Fpanel%3Drequest/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/https%3A/resasfa.elementroot.tech/_profiler/2a48b3%3Fpanel%3Drequest/')
(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)
|