Exceptions
Exceptions 2
InvalidArgumentException
}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(\sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {throw new \InvalidArgumentException(\sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$this->getControllerError($callable));}
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 33)
public function getController(Request $request): callable|false{$e = $this->stopwatch->start('controller.get_callable');try {return $this->resolver->getController($request);} finally {$e->stop();}}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 166)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(\sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
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 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home2/umfcvorg/projects/app.umfcv.org/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?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']);};
InvalidArgumentException
throw $e;}if (!\is_callable($controller)) {throw new \InvalidArgumentException($this->getControllerError($controller));}return $controller;}
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 95)
if (\function_exists($controller)) {return $this->checkController($request, $controller);}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(\sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 33)
public function getController(Request $request): callable|false{$e = $this->stopwatch->start('controller.get_callable');try {return $this->resolver->getController($request);} finally {$e->stop();}}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 166)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(\sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
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 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home2/umfcvorg/projects/app.umfcv.org/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?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
| Level | Message |
|---|---|
| info 03:45:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "79aa56"
},
"request_uri": "https://www.app.umfcv.org/_profiler/79aa56?panel=exception&type=request",
"method": "GET"
}
|
| debug 03:45:52 |
Checking for authenticator support. {
"firewall_name": "main",
"authenticators": 2
}
|
| debug 03:45:52 |
Checking support on authenticator. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| debug 03:45:52 |
Authenticator does not support the request. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| debug 03:45:52 |
Checking support on authenticator. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| debug 03:45:52 |
Authenticator does not support the request. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\ApiLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "App\\EventListener\\ApiLocaleListener::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\WebLocaleRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "App\\EventListener\\WebLocaleRedirectListener::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\WebRequestLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "App\\EventListener\\WebRequestLocaleListener::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\WebPrivacyPolicyListener::__invoke". {
"event": "kernel.request",
"listener": "App\\EventListener\\WebPrivacyPolicyListener::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\WebRolesRefreshListener::__invoke". {
"event": "kernel.request",
"listener": "App\\EventListener\\WebRolesRefreshListener::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.request" to listener "App\EventListener\ApiPrivacyPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ApiPrivacyPolicyListener::onKernelRequest"
}
|
| debug 03:45:52 |
Notified event "kernel.controller" to listener "App\EventSubscriber\TwigGlobalSubscriber::__invoke". {
"event": "kernel.controller",
"listener": "App\\EventSubscriber\\TwigGlobalSubscriber::__invoke"
}
|
| debug 03:45:52 |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| debug 03:45:52 |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| debug 03:45:52 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| debug 03:45:52 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| debug 03:45:52 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| debug 03:45:52 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| debug 03:45:52 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Traces 2
|
[2/2]
InvalidArgumentException
|
|---|
InvalidArgumentException:
The controller for URI "/assets/css/..." is not callable: Expected method "template" on class "Symfony\Bundle\FrameworkBundle\Controller\TemplateController", did you mean "templateAction"?
at vendor/symfony/http-kernel/Controller/ControllerResolver.php:97
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController()
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:33)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController()
(vendor/symfony/http-kernel/HttpKernel.php:166)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home2/umfcvorg/projects/app.umfcv.org/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
InvalidArgumentException
|
|---|
InvalidArgumentException:
Expected method "template" on class "Symfony\Bundle\FrameworkBundle\Controller\TemplateController", did you mean "templateAction"?
at vendor/symfony/http-kernel/Controller/ControllerResolver.php:141
at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController()
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:95)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController()
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:33)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController()
(vendor/symfony/http-kernel/HttpKernel.php:166)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home2/umfcvorg/projects/app.umfcv.org/vendor/autoload_runtime.php')
(public/index.php:5)
|