Exceptions
Exception
Symfony\Component\Routing\Exception\ RouteNotFoundException
}} while (false !== $locale = strstr($locale, '_', true));}if (!isset($this->compiledRoutes[$name])) {throw new RouteNotFoundException(\sprintf('Unable to generate a URL for the named route "%s" as such route does not exist.', $name));}[$variables, $defaults, $requirements, $tokens, $hostTokens, $requiredSchemes, $deprecations] = $this->compiledRoutes[$name] + [6 => []];foreach ($deprecations as $deprecation) {
in
vendor/symfony/routing/Router.php
->
generate
(line 172)
$this->configCacheFactory = $configCacheFactory;}public function generate(string $name, array $parameters = [], int $referenceType = self::ABSOLUTE_PATH): string{return $this->getGenerator()->generate($name, $parameters, $referenceType);}public function match(string $pathinfo): array{return $this->getMatcher()->match($pathinfo);
in
vendor/shopware/storefront/Framework/Routing/Router.php
->
generate
(line 140)
break;case self::ABSOLUTE_PATH:default:$generated = $this->removePrefix($this->decorated->generate($name, $parameters),$basePath);$rewrite = $basePath . rtrim($salesChannelBaseUrl, '/') . $generated;
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
generate
(line 108)
** @see UrlGeneratorInterface*/protected function generateUrl(string $route, array $parameters = [], int $referenceType = UrlGeneratorInterface::ABSOLUTE_PATH): string{return $this->container->get('router')->generate($route, $parameters, $referenceType);}/*** Forwards the request to another controller.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
generateUrl
(line 142)
** @param int $status The HTTP status code (302 "Found" by default)*/protected function redirectToRoute(string $route, array $parameters = [], int $status = 302): RedirectResponse{return $this->redirect($this->generateUrl($route, $parameters), $status);}/*** Returns a JsonResponse that uses the serializer component if enabled, or json_encode.*
in
vendor/shopware/storefront/Controller/StorefrontController.php
->
redirectToRoute
(line 265)
protected function redirectToRoute(string $route, array $parameters = [], int $status = Response::HTTP_FOUND): RedirectResponse{$event = new StorefrontRedirectEvent($route, $parameters, $status);$this->container->get('event_dispatcher')->dispatch($event);return parent::redirectToRoute($event->getRoute(), $event->getParameters(), $event->getStatus());}/*** @param array<string, mixed> $parameters*/
in
vendor/shopware/storefront/Controller/StorefrontController.php
->
redirectToRoute
(line 135)
$params = $this->decodeParam($request, 'redirectParameters');$redirectTo = RequestParamHelper::get($request, 'redirectTo');if ($redirectTo && \is_string($redirectTo)) {return $this->redirectToRoute($redirectTo, $params);}return $this->redirectToRoute('frontend.home.page', $params);}
in
vendor/shopware/storefront/Controller/CartLineItemController.php
->
createActionResponse
(line 68)
}} catch (\Exception) {$this->addFlash(self::DANGER, $this->trans('error.message-default'));}return $this->createActionResponse($request);});}/*** requires the provided items in the following form
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Storefront\Controller\{closure}
(line 67)
try {foreach (self::$profilers as $profiler) {$profiler->start($name, $category, $tags);}$result = $closure();} finally {foreach (self::$profilers as $profiler) {$profiler->stop($name);}}
in
vendor/shopware/storefront/Controller/CartLineItemController.php
::
trace
(line 53)
}#[Route(path: '/checkout/line-item/delete/{id}', name: 'frontend.checkout.line-item.delete', defaults: ['XmlHttpRequest' => true], methods: ['POST', 'DELETE'])]public function deleteLineItem(Cart $cart, string $id, Request $request, SalesChannelContext $context): Response{return Profiler::trace('cart::delete-line-item', function () use ($cart, $id, $request, $context) {try {if (!$cart->has($id)) {throw CartException::lineItemNotFound($id);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
deleteLineItem
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
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/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 stateRequest::setTrustedProxies($trustedProxies, $trustedHeaderSet);}}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 466)
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 268)
*/protected function pass(Request $request, bool $catch = false): Response{$this->record($request, 'pass');return $this->forward($request, $catch);}/*** Invalidates non-safe methods (like POST, PUT, and DELETE).*
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
pass
(line 282)
** @see RFC2616 13.10*/protected function invalidate(Request $request, bool $catch = false): Response{$response = $this->pass($request, $catch);// invalidate only when the response is successfulif ($response->isSuccessful() || $response->isRedirect()) {try {$this->store->invalidate($request);
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
invalidate
(line 202)
}$this->traces[$this->getTraceKey($request)] = [];if (!$request->isMethodSafe()) {$response = $this->invalidate($request, $catch);} elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {$response = $this->pass($request, $catch);} elseif ($this->options['allow_reload'] && $request->isNoCache()) {/*If allow_reload is configured and the client requests "Cache-Control: no-cache",
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-1717846894if ($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);}
in
vendor/shopware/core/Kernel.php
->
handle
(line 153)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response{$this->boot();return $this->getHttpKernel()->handle($request, $type, $catch);}public function boot(): void{if (!$this->booted) {
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('/var/customers/webs/kep/shopware6_testshop/vendor/autoload_runtime.php')
in
public/index.php
(line 10)
use Shopware\Core\Installer\InstallerKernel;use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;$_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 04:42:20 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php {
"exception": {}
}
|
| INFO 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:20 | 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 04:42:21 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Search\EntityAggregatorInterface" interface is considered internal. It may change without further notice. You should not use it from "Swag\Security\Fixes\GHSAm8952hj38cg9\EntityAggregatorDecorator". {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class uses "Symfony\Component\VarExporter\LazyGhostTrait" that is deprecated since Symfony 7.3, use native lazy objects instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Maxia\MaxiaTaxSwitch6\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory". {
"exception": {}
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\CustomizedProducts\Core\Checkout\Cart\Rule\LineItemGoodsTotalRuleDecorator" class extends "Shopware\Core\Checkout\Cart\Rule\LineItemGoodsTotalRule" that is deprecated tag:v6.7.0 - reason:becomes-final - Will become final in v6.7.0. {
"exception": {}
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 04:42:21 | 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 04:42:21 | 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 04:42:21 | 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"
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The default payment method of a customer will be removed. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The default payment method of a customer will be removed. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The default payment method of a customer will be removed. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The default payment method of a customer will be removed. {
"exception": {}
}
|
| INFO 04:42:21 | app | #1 Rule detection: Versand DE with priority 3 (id: 8cf0d608ebfb4788801159104154a4b2) |
| INFO 04:42:21 | app | #2 Rule detection: Bestellung - Zahlung Vorkasse with priority 1 (id: 0194f95957367e8aa976f3e47d30ca8b) |
| INFO 04:42:21 | app | #3 Rule detection: Alle Kunden with priority 1 (id: 4fd250f2fd7d42d684bf9f07d69adea0) |
| INFO 04:42:21 | app | #4 Rule detection: Cart>=0 with priority 0 (id: d3b4db9639fc41fda9fc905f0c32377e) |
| INFO 04:42:21 | php |
User Deprecated: Since symfony/validator 7.4: Support for evaluating options in the base Constraint class is deprecated. Initialize properties in the constructor of Shopware\Core\Framework\DataAbstractionLayer\Validation\EntityExists instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PayLaterHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\AbstractSyncAPMHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\SynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SEPAHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\VenmoHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\VenmoHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ApplePayHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GooglePayHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PUIHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\PUIHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\SynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service KlarnaPayment\Components\PaymentHandler\KlarnaPaymentsPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "KlarnaPayment\Components\PaymentHandler\KlarnaPaymentsPaymentHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service KlarnaPayment\Components\PaymentHandler\KlarnaExpressCheckoutPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BancontactAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\APMHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BlikAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\EpsAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GiropayAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\IdealAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MultibancoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MyBankAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\OxxoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\P24APMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since swag/paypal 10.0.0: tag:v10.0.0 - The Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler service will be removed {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\TrustlyAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ACDCHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\ACDCHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\ACDCHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\PayPalPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\PayPalPaymentHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\PayPalPaymentHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: The "Shopware\Core\Checkout\Payment\SalesChannel\CachedPaymentMethodRoute::__construct()" method is considered internal. It may change without further notice. You should not extend it from "KlarnaPayment\Core\Checkout\Payment\SalesChannel\CachedPaymentMethodRouteDecorator". {
"exception": {}
}
|
| DEBUG 04:42:21 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::onHttpCacheKeyEvent". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
"listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::onHttpCacheKeyEvent"
}
|
| INFO 04:42:21 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "04aa6e"
},
"request_uri": "https://sw6.profikuechenshop.de/_profiler/04aa6e?panel=exception&type=request",
"method": "GET"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bRouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bRouteParamsCleanupListener::__invoke"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "KlarnaPayment\Components\EventListener\RequestListener::addStoreApiToken". {
"event": "kernel.request",
"listener": "KlarnaPayment\\Components\\EventListener\\RequestListener::addStoreApiToken"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| INFO 04:42:21 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsPriceTagTwigFilter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsLoadValidMimeTypes" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsTruncateEllipsisFilter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 04:42:21 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Prems\Plugin\PremsIndividualOffer6\Twig\Extension\OfferTwigExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Swag\PayPal\Checkout\ExpressCheckout\ExpressCheckoutSubscriber::mapShippingCallbackContextToken". {
"event": "kernel.controller",
"listener": "Swag\\PayPal\\Checkout\\ExpressCheckout\\ExpressCheckoutSubscriber::mapShippingCallbackContextToken"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Domain\RouteAccess\B2bRouteBlocker::blockRouteForEmployee". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Domain\\RouteAccess\\B2bRouteBlocker::blockRouteForEmployee"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bEmployeePermissionValidator::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bEmployeePermissionValidator::validate"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\QuickOrder\Api\Annotation\CustomerSpecificFeatureActivated::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\QuickOrder\\Api\\Annotation\\CustomerSpecificFeatureActivated::validate"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller" to listener "Prems\Plugin\PremsIndividualOffer6\Subscriber\KernelEventsSubscriber::setOfferModeState". {
"event": "kernel.controller",
"listener": "Prems\\Plugin\\PremsIndividualOffer6\\Subscriber\\KernelEventsSubscriber::setOfferModeState"
}
|
| DEBUG 04:42:21 | event |
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 04:42:21 | event |
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 04:42:21 | event |
Notified event "kernel.controller_arguments" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::setSubscriptionToken". {
"event": "kernel.controller_arguments",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::setSubscriptionToken"
}
|
| DEBUG 04:42:21 | event |
Notified event "kernel.controller_arguments" to listener "ContainerVz7aOPd\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerVz7aOPd\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 04:42:21 | event |
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 Trace
|
RouteNotFoundException
|
|---|
Symfony\Component\Routing\Exception\RouteNotFoundException:
Unable to generate a URL for the named route "frontend.checkout.cart.pagezZ5QKfLH' OR 861=(SELECT 861 FROM PG_SLEEP(15))--" as such route does not exist.
at vendor/symfony/routing/Generator/CompiledUrlGenerator.php:52
at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate()
(vendor/symfony/routing/Router.php:172)
at Symfony\Component\Routing\Router->generate()
(vendor/shopware/storefront/Framework/Routing/Router.php:140)
at Shopware\Storefront\Framework\Routing\Router->generate()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:108)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->generateUrl()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:142)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->redirectToRoute()
(vendor/shopware/storefront/Controller/StorefrontController.php:265)
at Shopware\Storefront\Controller\StorefrontController->redirectToRoute()
(vendor/shopware/storefront/Controller/StorefrontController.php:135)
at Shopware\Storefront\Controller\StorefrontController->createActionResponse()
(vendor/shopware/storefront/Controller/CartLineItemController.php:68)
at Shopware\Storefront\Controller\CartLineItemController->Shopware\Storefront\Controller\{closure}()
(vendor/shopware/core/Profiling/Profiler.php:67)
at Shopware\Core\Profiling\Profiler::trace()
(vendor/shopware/storefront/Controller/CartLineItemController.php:53)
at Shopware\Storefront\Controller\CartLineItemController->deleteLineItem()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
(vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:466)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:268)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->pass()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:282)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:202)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
(vendor/shopware/core/Kernel.php:153)
at Shopware\Core\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('/var/customers/webs/kep/shopware6_testshop/vendor/autoload_runtime.php')
(public/index.php:10)
|