Exceptions
Exception
Shopware\Core\Content\LandingPage\ LandingPageException
Show exception properties
Shopware\Core\Content\LandingPage\LandingPageException {#6964 -statusCode: 404 -headers: [] #parameters: array:1 [ "landingPageId" => "01983619e2997495be19a48cb4269234" ] #statusCode: 404 #errorCode: "CONTENT__LANDING_PAGE_NOT_FOUND" }
{public const EXCEPTION_CODE_LANDING_PAGE_NOT_FOUND = 'CONTENT__LANDING_PAGE_NOT_FOUND';public static function notFound(string $id): self{return new self(404,self::EXCEPTION_CODE_LANDING_PAGE_NOT_FOUND,'Landing page "{{ landingPageId }}" not found.',['landingPageId' => $id]);
in
vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php
::
notFound
(line 72)
$resolverContext);$cmsPage = $pages->first();if ($cmsPage === null) {throw LandingPageException::notFound($pageId);}$landingPage->setCmsPage($cmsPage);return new LandingPageRouteResponse($landingPage);
in
vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php
->
load
(line 76)
return $this->getDecorated()->load($landingPageId, $request, $context);}$value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {$name = self::buildName($landingPageId);$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));$item->tag($this->generateTags($landingPageId, $response, $request, $context));return CacheValueCompressor::compress($response);});
in
vendor/shopware/core/System/SystemConfig/SystemConfigService.php
->
Shopware\Core\Content\LandingPage\SalesChannel\{closure}
(line 451)
public function trace(string $key, \Closure $param){$this->traces[$key] = [];$this->keys[$key] = true;$result = $param();unset($this->keys[$key]);return $result;}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);}public function trace(string $key, \Closure $param){return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));}public function get(string $key): array{return array_merge(
in
vendor/shopware/core/Framework/Adapter/Translation/Translator.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 101)
public function trace(string $key, \Closure $param){$this->traces[$key] = [];$this->keys[$key] = true;$result = $param();unset($this->keys[$key]);return $result;}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);}public function trace(string $key, \Closure $param){return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));}public function get(string $key): array{return array_merge(
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 56)
public function trace(string $key, \Closure $param){$this->traces[$key] = [];$this->keys[$key] = true;$result = $param();unset($this->keys[$key]);return $result;}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);}public function trace(string $key, \Closure $param){return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));}public function get(string $key): array{return array_merge(
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 35)
return $this->decorated;}public function trace(string $key, \Closure $param){return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));}public function get(string $key): array{return array_unique(array_merge(
in
vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php
->
Shopware\Storefront\Framework\Cache\{closure}
(line 97)
public function trace(string $key, \Closure $param){$this->traces[$key] = [];$this->keys[$key] = true;$result = $param();unset($this->keys[$key]);return $result;}
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 35)
return $this->decorated;}public function trace(string $key, \Closure $param){return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));}public function get(string $key): array{return array_unique(array_merge(
in
vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php
->
trace
(line 76)
return $this->getDecorated()->load($landingPageId, $request, $context);}$value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {$name = self::buildName($landingPageId);$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));$item->tag($this->generateTags($landingPageId, $response, $request, $context));return CacheValueCompressor::compress($response);});
in
vendor/symfony/cache-contracts/CacheTrait.php
->
Shopware\Core\Content\LandingPage\SalesChannel\{closure}
(line 64)
}}if ($recompute) {$save = true;$item->set($callback($item, $save));if ($save) {$pool->save($item);}}
in
vendor/symfony/cache-contracts/CacheTrait.php
->
doGet
(line 30)
*/trait CacheTrait{public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed{return $this->doGet($this, $key, $callback, $beta, $metadata);}public function delete(string $key): bool{return $this->deleteItem($key);
in
vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php
->
get
(line 74)
if ($key === null) {return $this->getDecorated()->load($landingPageId, $request, $context);}$value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {$name = self::buildName($landingPageId);$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));$item->tag($this->generateTags($landingPageId, $response, $request, $context));
in
vendor/shopware/storefront/Page/LandingPage/LandingPageLoader.php
->
load
(line 41)
$landingPageId = $request->attributes->get('landingPageId');if (!$landingPageId) {throw RoutingException::missingRequestParameter('landingPageId', '/landingPageId');}$landingPage = $this->landingPageRoute->load($landingPageId, $request, $context)->getLandingPage();if ($landingPage->getCmsPage() === null) {throw new PageNotFoundException($landingPageId);}
in
vendor/shopware/storefront/Controller/LandingPageController.php
->
load
(line 31)
}#[Route(path: '/landingPage/{landingPageId}', name: 'frontend.landing.page', defaults: ['_httpCache' => true], methods: ['GET'])]public function index(SalesChannelContext $context, Request $request): Response{$page = $this->landingPageLoader->load($request, $context);$this->hook(new LandingPageLoadedHook($page, $context));return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(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 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-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 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/vhosts/dev.hob-by-horse.de/iva.dev.hob-by-horse.de/releases/20251112-120528/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 16:27:39 | php |
User Deprecated: Method "Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()" might add "void" as a native return type declaration in the future. Do the same in implementation "Frosh\DevelopmentHelper\Component\DependencyInjection\FroshDevelopmentHelperExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php {
"exception": {}
}
|
| INFO 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | 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 16:27:39 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Search\EntitySearcherInterface" interface is considered internal. It may change without further notice. You should not use it from "Swpa\SwpaSort\Service\Decorating\Core\Framework\DataAbstractionLayer\Search\DecoratorEntitySearcher". {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:39 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "f56870"
},
"request_uri": "https://iva.dev.hob-by-horse.de/_profiler/f56870",
"method": "GET"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| INFO 16:27:39 | php |
User Deprecated: The "Shopware\Core\System\Currency\CurrencyFormatter::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Iva\Core\System\Currency\IvaCurrencyFormatter". {
"exception": {}
}
|
| INFO 16:27:39 | 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 "IvaSW6Theme\Twig\JsonDecode" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "App\Subscriber\BasicAuthSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\CurrencySwitch\Subscriber\ResponseCacheSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Context\SalesChannelContextFactory::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Acris\CurrencySwitch\Core\System\SalesChannel\Context\SalesChannelContextFactory". {
"exception": {}
}
|
| INFO 16:27:39 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Context\SalesChannelContextService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Acris\CurrencySwitch\Core\System\SalesChannel\Context\SalesChannelContextService". {
"exception": {}
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "App\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "App\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 16:27:39 | 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 16:27:39 | event |
Notified event "kernel.controller_arguments" to listener "ContainerQFQhW8v\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerQFQhW8v\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 16:27:39 | 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"
}
|
| DEBUG 16:27:40 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke". {
"event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke"
}
|
| DEBUG 16:27:40 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke". {
"event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
"listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "App\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "App\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller_arguments" to listener "ContainerQFQhW8v\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerQFQhW8v\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 16:27:40 | 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"
}
|
| INFO 16:27:40 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\ShopSwitch\Subscriber\ResponseRedirectSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:40 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\ShopSwitch\Subscriber\ResponseCookieSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:27:40 | php |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\ShopSwitch\Subscriber\ResponseCacheSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Content\\Seo\\SalesChannel\\StoreApiSeoResolver::addSeoInformation"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\System\\SalesChannel\\Api\\StoreApiResponseListener::encodeResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseRedirectSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseRedirectSubscriber::setResponseCache"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke". {
"event": "kernel.response",
"listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". {
"event": "kernel.response",
"listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ResponseHeaderListener::onResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "PayonePayment\EventListener\KernelEventListener::onKernelResponse". {
"event": "kernel.response",
"listener": "PayonePayment\\EventListener\\KernelEventListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Globale\Shopware\Subscribers\CurrencySubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Globale\\Shopware\\Subscribers\\CurrencySubscriber::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". {
"event": "kernel.response",
"listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCookieSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCookieSubscriber::setResponseCache"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCacheSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCacheSubscriber::setResponseCache"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.response" to listener "Acris\CurrencySwitch\Subscriber\ResponseCacheSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\CurrencySwitch\\Subscriber\\ResponseCacheSubscriber::setResponseCache"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "App\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "App\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 16:27:40 | 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 16:27:40 | event |
Notified event "kernel.controller_arguments" to listener "ContainerQFQhW8v\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerQFQhW8v\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 16:27:40 | 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
|
LandingPageException
|
|---|
Shopware\Core\Content\LandingPage\LandingPageException:
Landing page "01983619e2997495be19a48cb4269234" not found.
at vendor/shopware/core/Content/LandingPage/LandingPageException.php:15
at Shopware\Core\Content\LandingPage\LandingPageException::notFound()
(vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php:72)
at Shopware\Core\Content\LandingPage\SalesChannel\LandingPageRoute->load()
(vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:76)
at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->Shopware\Core\Content\LandingPage\SalesChannel\{closure}()
(vendor/shopware/core/System/SystemConfig/SystemConfigService.php:451)
at Shopware\Core\System\SystemConfig\SystemConfigService->trace()
(vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
(vendor/shopware/core/Framework/Adapter/Translation/Translator.php:101)
at Shopware\Core\Framework\Adapter\Translation\Translator->trace()
(vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
(vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace()
(vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace()
(vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
(vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:97)
at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace()
(vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
at Shopware\Storefront\Framework\Cache\CacheTracer->trace()
(vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:76)
at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->Shopware\Core\Content\LandingPage\SalesChannel\{closure}()
(vendor/symfony/cache-contracts/CacheTrait.php:64)
at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet()
(vendor/symfony/cache-contracts/CacheTrait.php:30)
at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get()
(vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:74)
at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->load()
(vendor/shopware/storefront/Page/LandingPage/LandingPageLoader.php:41)
at Shopware\Storefront\Page\LandingPage\LandingPageLoader->load()
(vendor/shopware/storefront/Controller/LandingPageController.php:31)
at Shopware\Storefront\Controller\LandingPageController->index()
(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:460)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:437)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:335)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:213)
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:156)
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:29)
at require_once('/var/www/vhosts/dev.hob-by-horse.de/iva.dev.hob-by-horse.de/releases/20251112-120528/vendor/autoload_runtime.php')
(public/index.php:11)
|