Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2142 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 58)
// This call is required in all cases, because the default router needs our webspace information// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line$this->requestAnalyzer->analyze($request);$this->baseRouteListener->onKernelRequest($event);if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {$this->requestAnalyzer->validate($request);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 246)
$closure = static function (...$args) use (&$listener, &$closure) {if ($listener[0] instanceof \Closure) {$listener[0] = $listener[0]();$listener[1] ??= '__invoke';}($closure = $listener(...))(...$args);};} else {$closure = $listener instanceof WrappedListener ? $listener : $listener(...);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(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;}}
// When using the HttpCache, you need to call the method in your front controller// instead of relying on the configuration parameter// https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-overrideRequest::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony-cmf/routing/src/ChainRouter.php
(line 180)
$info = $request? "this request\n$request": "url '$pathinfo'";throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");}/*** {@inheritdoc}*
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 134)
** Loops through all routes and tries to match the passed request.*/public function matchRequest(Request $request): array{return $this->doMatch($request->getPathInfo(), $request);}/*** Loops through all routers and tries to match the passed request or url.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that 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/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 58)
// This call is required in all cases, because the default router needs our webspace information// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line$this->requestAnalyzer->analyze($request);$this->baseRouteListener->onKernelRequest($event);if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {$this->requestAnalyzer->validate($request);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 246)
$closure = static function (...$args) use (&$listener, &$closure) {if ($listener[0] instanceof \Closure) {$listener[0] = $listener[0]();$listener[1] ??= '__invoke';}($closure = $listener(...))(...$args);};} else {$closure = $listener instanceof WrappedListener ? $listener : $listener(...);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(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;}}
// When using the HttpCache, you need to call the method in your front controller// instead of relying on the configuration parameter// https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-overrideRequest::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 21:14:36 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "5.7.40" instead of "5.7". (AbstractMySQLDriver.php:102 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 21:14:36 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:14:36 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "9b2281"
},
"request_uri": "https://hornbaek.ewm.dev/_profiler/9b2281?panel=exception&type=request",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://hornbaek.ewm.dev/en/wp/" (from "https://hiddenwiki.com//wp-login.php")
at vendor/symfony/http-kernel/EventListener/RouterListener.php:149
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent))
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:58)
at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:246)
at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}(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), object(Closure), object(Closure), object(Closure), 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))
(public/index.php:69)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /en/wp/ HTTP/1.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en,en-us;q=0.7,en;q=0.3
Cookie: zalb_2eed0b67fd=19901cf375f1d88d4165748baa3d1dd6; zalb_6bc9ae5955=89d411b876f29d72435b5fd1b14e091b; CookieConsentPolicy=0:1; LSKey-c$CookieConsentPolicy=0:1; PHPSESSID=g3uh4dm2ocvjt21q55ef28fmak; nevercache-b39818=Y; ngx_geoip_cc=US; __cf_bm=qVSq4oWX3QIqhJa6_0c3b15xr8KXRku2cx4lalqFN_Y-1768115779.6449544-1.0.1.1-B.P8.vwA5VpAYG494qPfQV4seNGl6Bf5GSRmONNuUEszjuGjSz_L5xM.HtsQE2WLuhfoXObjOeKZdzvEhB5OUIdWftsXRs759Exp_Gj1.LZCY9Al6T7U0vUFUY_AZ27Y; _cfuvid=yv7VC46Mww6_ZACiRvNwR6hzGT2VX8X8rR3dzaBw_b4-1768111909663-0.0.1.1-604800000; sec_session_id=92bf97fce8200561dca580664d7f11c7; wordpress_test_cookie=WP%20Cookie%20check; PHPSID=ca1ef5a89b64474fb5038b040d564f68; _hermes_session=3113a43ef51096c55bc5fc0fb72e95fb; total_page=1; nfd-enable-cf-opt=63a6825d27cab0f204d3b602; SX=58502c50de516beedcd6cfa6226104f1; SXUVS=51308870807835bd40e8f5f230686a25; security_session_verify=2f2f015909318dbe20a2c88dd3501617; AWSALBTG=naYArx3NksqhJjFJN4dJnWbvzXr0AkLaCV4jEaq0r/QMcgt5geh2kANpjeZPmNIprPRmnAaLt/vL5/qO2MUW5cv+NsM6V8NNwA0htuzR01Ot9/7Q8BV3E6jXHdhmjRzpbtP1kYIlphMj34fSC+tgYa5dVwrbVfN2doR36ot0Cny7Y1mRqHI=; AWSALBTGCORS=naYArx3NksqhJjFJN4dJnWbvzXr0AkLaCV4jEaq0r/QMcgt5geh2kANpjeZPmNIprPRmnAaLt/vL5/qO2MUW5cv+NsM6V8NNwA0htuzR01Ot9/7Q8BV3E6jXHdhmjRzpbtP1kYIlphMj34fSC+tgYa5dVwrbVfN2doR36ot0Cny7Y1mRqHI=; AWSALB=TCEjXErVCIKQ0RK1bydcEsGmfNUosl//Z8By7Xo3usBrVuPSQIt9xWZ5yrXyrTK18BWAd5Jv52qFigjypg5BxOg/RB+e/D3y1USHGRgvLwBNOEK5shfoJ+lZ13ls; AWSALBCORS=TCEjXErVCIKQ0RK1bydcEsGmfNUosl//Z8By7Xo3usBrVuPSQIt9xWZ5yrXyrTK18BWAd5Jv52qFigjypg5BxOg/RB+e/D3y1USHGRgvLwBNOEK5shfoJ+lZ13ls; language=zh-TW; __RequestVerificationToken=o0UX8aM3q20rJtaSeNfANoiRixVPJ6xxurkKnXod-dRAJQyqyvwIPnu2VBXiio6E-u-AhQ2; crumb=BZPtjtol1p0GOTQxYmEzMTc5ZWYxNGNkMDJjZDAzYzlkM2FkZDc2; CMS_Session_ID=6qmaro5n4ckjujumdfnhohmtkl; dps_site_id=us-west-2; dnn_IsMobile=False; 859abdec6b6ce5eb1a9a888b323c4d53=7a6c5705f26a8fa02dbac587bf1c54c8; server_name_session=77b0dd720ecc23328c877069d68d5ecc; parking_session=2153f64c-02b7-47c6-b043-3c3a71107fee; SessionToken=202601110719515b967123fd210474a00cec14e003e0e8022b3239019d70007b; sf_redirect=deleted
Host: hornbaek.ewm.dev
Keep-Alive: 300
Referer: https://hiddenwiki.com//wp-login.php
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
X-Php-Ob-Level: 1
Cookie: zalb_2eed0b67fd=19901cf375f1d88d4165748baa3d1dd6; zalb_6bc9ae5955=89d411b876f29d72435b5fd1b14e091b; CookieConsentPolicy=0:1; LSKey-c$CookieConsentPolicy=0:1; PHPSESSID=g3uh4dm2ocvjt21q55ef28fmak; nevercache-b39818=Y; ngx_geoip_cc=US; __cf_bm=qVSq4oWX3QIqhJa6_0c3b15xr8KXRku2cx4lalqFN_Y-1768115779.6449544-1.0.1.1-B.P8.vwA5VpAYG494qPfQV4seNGl6Bf5GSRmONNuUEszjuGjSz_L5xM.HtsQE2WLuhfoXObjOeKZdzvEhB5OUIdWftsXRs759Exp_Gj1.LZCY9Al6T7U0vUFUY_AZ27Y; _cfuvid=yv7VC46Mww6_ZACiRvNwR6hzGT2VX8X8rR3dzaBw_b4-1768111909663-0.0.1.1-604800000; sec_session_id=92bf97fce8200561dca580664d7f11c7; wordpress_test_cookie=WP Cookie check; PHPSID=ca1ef5a89b64474fb5038b040d564f68; _hermes_session=3113a43ef51096c55bc5fc0fb72e95fb; total_page=1; nfd-enable-cf-opt=63a6825d27cab0f204d3b602; SX=58502c50de516beedcd6cfa6226104f1; SXUVS=51308870807835bd40e8f5f230686a25; security_session_verify=2f2f015909318dbe20a2c88dd3501617; AWSALBTG=naYArx3NksqhJjFJN4dJnWbvzXr0AkLaCV4jEaq0r/QMcgt5geh2kANpjeZPmNIprPRmnAaLt/vL5/qO2MUW5cv+NsM6V8NNwA0htuzR01Ot9/7Q8BV3E6jXHdhmjRzpbtP1kYIlphMj34fSC+tgYa5dVwrbVfN2doR36ot0Cny7Y1mRqHI=; AWSALBTGCORS=naYArx3NksqhJjFJN4dJnWbvzXr0AkLaCV4jEaq0r/QMcgt5geh2kANpjeZPmNIprPRmnAaLt/vL5/qO2MUW5cv+NsM6V8NNwA0htuzR01Ot9/7Q8BV3E6jXHdhmjRzpbtP1kYIlphMj34fSC+tgYa5dVwrbVfN2doR36ot0Cny7Y1mRqHI=; AWSALB=TCEjXErVCIKQ0RK1bydcEsGmfNUosl//Z8By7Xo3usBrVuPSQIt9xWZ5yrXyrTK18BWAd5Jv52qFigjypg5BxOg/RB+e/D3y1USHGRgvLwBNOEK5shfoJ+lZ13ls; AWSALBCORS=TCEjXErVCIKQ0RK1bydcEsGmfNUosl//Z8By7Xo3usBrVuPSQIt9xWZ5yrXyrTK18BWAd5Jv52qFigjypg5BxOg/RB+e/D3y1USHGRgvLwBNOEK5shfoJ+lZ13ls; language=zh-TW; __RequestVerificationToken=o0UX8aM3q20rJtaSeNfANoiRixVPJ6xxurkKnXod-dRAJQyqyvwIPnu2VBXiio6E-u-AhQ2; crumb=BZPtjtol1p0GOTQxYmEzMTc5ZWYxNGNkMDJjZDAzYzlkM2FkZDc2; CMS_Session_ID=6qmaro5n4ckjujumdfnhohmtkl; dps_site_id=us-west-2; dnn_IsMobile=False; 859abdec6b6ce5eb1a9a888b323c4d53=7a6c5705f26a8fa02dbac587bf1c54c8; server_name_session=77b0dd720ecc23328c877069d68d5ecc; parking_session=2153f64c-02b7-47c6-b043-3c3a71107fee; SessionToken=202601110719515b967123fd210474a00cec14e003e0e8022b3239019d70007b; sf_redirect=deleted
at vendor/symfony-cmf/routing/src/ChainRouter.php:180
at Symfony\Cmf\Component\Routing\ChainRouter->doMatch('/en/wp/', object(Request))
(vendor/symfony-cmf/routing/src/ChainRouter.php:134)
at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent))
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:58)
at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:246)
at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}(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), object(Closure), object(Closure), object(Closure), 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))
(public/index.php:69)
|