Exceptions
Exception
ErrorException
Show exception properties
ErrorException {#4869 #severity: E_WARNING }
in
custom/plugins/Pluszwei404RedirectAndDetection/src/Subscriber/NotFoundExceptionListener.php
(line 161)
$ignoreQueryParameters = $this->systemConfigService->get(static::CONFIG_NAMESAPCE.'ignoreQueryParams', $salesChannelId);
// remove query string from url
if ($ignoreQueryParameters && $oldUrl !== $request->getRequestUri()) {
$parsedUrl = parse_url($oldUrl);
$oldUrl = $parsedUrl['path'];
if (!$oldUrl) {
return null;
}
$redirect = $this->findRedirectByUrl($oldUrl);
NotFoundExceptionListener->matchRedirect('//xmlrpc.php?rsd', object(Request), '018fba1ecdae71d7b98a32192c13b334')
in
custom/plugins/Pluszwei404RedirectAndDetection/src/Subscriber/NotFoundExceptionListener.php
(line 88)
return;
}
}
}
$redirect = $this->matchRedirect($oldUrl, $request, $salesChannelId);
if (!$redirect || !$redirect->isActive()) {
$format = $request->headers->get('Sec-Fetch-Dest', 'document');
if ($format !== 'document' || !$this->systemConfigService->get(static::CONFIG_NAMESAPCE.'enableGeneralRedirect', $salesChannelId)) {
return;
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelException
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(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/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php
->
dispatch
(line 40)
*
* @return TEvent
*/
public function dispatch(object $event, ?string $eventName = null): object
{
$event = $this->dispatcher->dispatch($event, $eventName);
if (!$event instanceof FlowEventAware) {
return $event;
}
in
vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php
->
dispatch
(line 29)
) {
}
public function dispatch(object $event, ?string $eventName = null): object
{
$event = $this->dispatcher->dispatch($event, $eventName);
// @deprecated tag:v6.7.0 - remove DISABLE_EXTENSIONS from if condition
if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS', false) || !HookableEventFactory::isHookable($event)) {
return $event;
}
in
vendor/shopware/core/Framework/Event/NestedEventDispatcher.php
->
dispatch
(line 31)
}
$this->dispatch($nested, $name);
}
}
return $this->dispatcher->dispatch($event, $eventName);
}
/**
* @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
*/
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 122)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 241)
* Handles a throwable by trying to convert it to a Response.
*/
private function handleThrowable(\Throwable $e, Request $request, int $type): Response
{
$event = new ExceptionEvent($this, $request, $type, $e, isKernelTerminating: $this->terminating);
$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
// a listener might have replaced the exception
$e = $event->getThrowable();
if (!$event->hasResponse()) {
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleThrowable
(line 91)
$this->finishRequest($request, $type);
throw $e;
}
return $response = $this->handleThrowable($e, $request, $type);
} finally {
$this->requestStack->pop();
if ($response instanceof StreamedResponse && $callback = $response->getCallback()) {
$requestStack = $this->requestStack;
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 72)
$this->dispatcher->dispatch($event);
return $event->getResponse();
}
return parent::handle($request, $type, $catch);
}
}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 460)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
{
$this->surrogate?->addSurrogateCapability($request);
// always a "master" request (as the real master request can be in cache)
$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
/*
* Support stale-if-error given on Responses or as a config option.
* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
* Cache-Control directives) that
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 437)
// avoid that the backend sends no content
$subRequest->headers->remove('If-Modified-Since');
$subRequest->headers->remove('If-None-Match');
$response = $this->forward($subRequest, $catch);
if ($response->isCacheable()) {
$this->store($request, $response);
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
fetch
(line 335)
}
if (null === $entry) {
$this->record($request, 'miss');
return $this->fetch($request, $catch);
}
if (!$this->isFreshEnough($request, $entry)) {
$this->record($request, 'stale');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
lookup
(line 213)
reload the cache by fetching a fresh response and caching it (if possible).
*/
$this->record($request, 'reload');
$response = $this->fetch($request, $catch);
} else {
$response = $this->lookup($request, $catch);
}
$this->restoreResponseBody($request, $response);
if (HttpKernelInterface::MAIN_REQUEST === $type) {
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.
// sub requests are requests, which are forwarded to the kernel inside the php stack
// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
if ($type === HttpKernelInterface::MAIN_REQUEST) {
$response = parent::handle($request, $type, $catch);
} elseif ($request->attributes->has('_sw_esi')) {
$response = parent::handle($request, $type, $catch);
} else {
$response = $this->getKernel()->handle($request, $type, $catch);
}
HttpCacheKernel->handle(object(Request), 1, true)
in
custom/plugins/ShopwareConnector/src/Middleware/WebhookAuthenticationMiddleware.php
(line 32)
if ($request->get('token') !== $configAuthToken){
$this->getSystemLogger()->alert('Unauthorized webhook-request',(array)$request->headers);
return new JsonResponse(['error' => 'unauthorized'],401);
}
}
return $this->app->handle($request, $type, $catch);
}
}
in
vendor/shopware/core/Kernel.php
->
handle
(line 156)
{
if (!$this->booted) {
$this->boot();
}
return $this->getHttpKernel()->handle($request, $type, $catch);
}
public function boot(): void
{
if ($this->booted === true) {
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 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/share/shopware/staging/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
use Symfony\Component\HttpFoundation\Response;
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
require_once __DIR__ . '/../vendor/autoload_runtime.php';
if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
}
Logs
Level | Channel | Message |
---|---|---|
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 08:27:55 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
DEBUG 08:27:55 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Telemetry\EntityTelemetrySubscriber::emitAssociationsCountMetric". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Telemetry\\EntityTelemetrySubscriber::emitAssociationsCountMetric" } |
DEBUG 08:27:55 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 08:27:55 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
INFO 08:27:55 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://medisana-dev.com-create.cloud/_profiler/latest?panel=exception&type=request", "method": "GET" } |
Stack Trace
ErrorException
|
---|
ErrorException: Warning: Undefined array key "path" at custom/plugins/Pluszwei404RedirectAndDetection/src/Subscriber/NotFoundExceptionListener.php:161 at Pluszwei\NotFoundRedirectAndDetection\Subscriber\NotFoundExceptionListener->matchRedirect('//xmlrpc.php?rsd', object(Request), '018fba1ecdae71d7b98a32192c13b334') (custom/plugins/Pluszwei404RedirectAndDetection/src/Subscriber/NotFoundExceptionListener.php:88) at Pluszwei\NotFoundRedirectAndDetection\Subscriber\NotFoundExceptionListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception') (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:40) at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception') (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:29) at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception') (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31) at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception') (vendor/symfony/http-kernel/HttpKernel.php:241) at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(NotFoundHttpException), object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:91) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72) at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86) at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:460) at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:437) at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:335) at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:213) at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true) (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65) at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true) (custom/plugins/ShopwareConnector/src/Middleware/WebhookAuthenticationMiddleware.php:32) at COMCreatePlentyConnector\Middleware\WebhookAuthenticationMiddleware->handle(object(Request), 1, true) (vendor/shopware/core/Kernel.php:156) at Shopware\Core\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/share/shopware/staging/vendor/autoload_runtime.php') (public/index.php:11) |