Exceptions
Exception
Shopware\Core\Framework\Uuid\Exception\ InvalidUuidException
Show exception properties
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException {#6997 -statusCode: 400 -headers: [] #parameters: array:1 [ "input" => "www.m-lewalter.de" ] }
in
vendor/shopware/core/Framework/Uuid/Uuid.php
(line 123)
{
if ($bin = @hex2bin($uuid)) {
return $bin;
}
throw new InvalidUuidException($uuid);
}
/**
* Generates a md5 binary, to hash the string and returns a UUID in hex
*/
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php
::
fromHexToBytes
(line 263)
return $result;
}
if ($field instanceof IdField || $field instanceof FkField) {
$value = Uuid::fromHexToBytes((string) $value);
}
$result->addParameter($key, $value);
return $result;
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php
->
parseEqualsFilter
(line 102)
return $result;
}
return match (true) {
$query instanceof EqualsFilter => $this->parseEqualsFilter($query, $definition, $root, $context, $negated),
$query instanceof EqualsAnyFilter => $this->parseEqualsAnyFilter($query, $definition, $root, $context),
$query instanceof ContainsFilter => $this->parseContainsFilter($query, $definition, $root, $context),
$query instanceof PrefixFilter => $this->parsePrefixFilter($query, $definition, $root, $context),
$query instanceof SuffixFilter => $this->parseSuffixFilter($query, $definition, $root, $context),
$query instanceof RangeFilter => $this->parseRangeFilter($query, $definition, $root, $context),
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php
->
parse
(line 309)
private function iterateNested(MultiFilter $query, EntityDefinition $definition, string $root, Context $context, bool $negated): ParseResult
{
$result = new ParseResult();
foreach ($query->getQueries() as $multiFilter) {
$result = $result->merge(
$this->parse($multiFilter, $definition, $context, $root, $negated)
);
}
return $result;
}
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php
->
iterateNested
(line 273)
return $result;
}
private function parseMultiFilter(MultiFilter $query, EntityDefinition $definition, string $root, Context $context, bool $negated): ParseResult
{
$result = $this->iterateNested($query, $definition, $root, $context, $negated);
$wheres = $result->getWheres();
$result->resetWheres();
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php
->
parseMultiFilter
(line 109)
$query instanceof ContainsFilter => $this->parseContainsFilter($query, $definition, $root, $context),
$query instanceof PrefixFilter => $this->parsePrefixFilter($query, $definition, $root, $context),
$query instanceof SuffixFilter => $this->parseSuffixFilter($query, $definition, $root, $context),
$query instanceof RangeFilter => $this->parseRangeFilter($query, $definition, $root, $context),
$query instanceof NotFilter => $this->parseNotFilter($query, $definition, $root, $context),
$query instanceof MultiFilter => $this->parseMultiFilter($query, $definition, $root, $context, $negated),
default => throw new \RuntimeException(\sprintf('Unsupported query %s', $query::class)),
};
}
private function parseRangeFilter(
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/CriteriaQueryBuilder.php
->
parse
(line 91)
{
if (!$filter) {
return;
}
$parsed = $this->parser->parse($filter, $definition, $context);
if (empty($parsed->getWheres())) {
return;
}
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/CriteriaQueryBuilder.php
->
addFilter
(line 72)
$filter = new AndFilter(array_merge(
$criteria->getFilters(),
$criteria->getPostFilters()
));
$this->addFilter($definition, $filter, $query, $context);
$this->addQueries($definition, $criteria, $query, $context);
if ($criteria->getLimit() === 1) {
$query->removeState(EntityDefinitionQueryHelper::HAS_TO_MANY_JOIN);
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntitySearcher.php
->
build
(line 72)
$query->addSelect(
EntityDefinitionQueryHelper::escape($table) . '.' . EntityDefinitionQueryHelper::escape($field->getStorageName())
);
}
$query = $this->criteriaQueryBuilder->build($query, $definition, $criteria, $context);
if (!empty($criteria->getIds())) {
$this->queryHelper->addIdCondition($criteria, $definition, $query);
}
in
vendor/shopware/elasticsearch/Framework/DataAbstractionLayer/ElasticsearchEntitySearcher.php
->
search
(line 49)
}
public function search(EntityDefinition $definition, Criteria $criteria, Context $context): IdSearchResult
{
if (!$this->helper->allowSearch($definition, $context, $criteria)) {
return $this->decorated->search($definition, $criteria, $context);
}
if ($criteria->getLimit() === 0) {
return new IdSearchResult(0, [], $criteria, $context);
}
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
->
search
(line 192)
return $entities;
}
private function doSearch(Criteria $criteria, SalesChannelContext $salesChannelContext): IdSearchResult
{
$result = $this->searcher->search($this->definition, $criteria, $salesChannelContext->getContext());
$event = new SalesChannelEntityIdSearchResultLoadedEvent($this->definition, $result, $salesChannelContext);
$this->eventDispatcher->dispatch($event, $event->getName());
return $result;
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
->
doSearch
(line 164)
{
$criteria = clone $criteria;
$this->processCriteria($criteria, $salesChannelContext);
return $this->doSearch($criteria, $salesChannelContext);
}
/**
* @return TEntityCollection
*/
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
->
_searchIds
(line 75)
}
public function searchIds(Criteria $criteria, SalesChannelContext $salesChannelContext): IdSearchResult
{
if (!$criteria->getTitle()) {
return $this->_searchIds($criteria, $salesChannelContext);
}
return Profiler::trace($criteria->getTitle(), fn () => $this->_searchIds($criteria, $salesChannelContext), 'saleschannel-repository');
}
in
vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php
->
searchIds
(line 276)
{
$this->addGrouping($criteria);
$this->handleAvailableStock($criteria, $context);
return $this->productRepository->searchIds($criteria, $context);
}
/**
* @param list<string> $keys
*
in
vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php
->
resolveIds
(line 44)
public function publish(string $name, Extension $extension, callable $function): mixed
{
$this->dispatcher->dispatch($extension, self::pre($name));
if (!$extension->isPropagationStopped()) {
$extension->result = $function(...$extension->getParams());
}
$extension->resetPropagation();
$this->dispatcher->dispatch($extension, self::post($name));
in
vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php
->
publish
(line 70)
private function _load(Criteria $criteria, SalesChannelContext $context): EntitySearchResult
{
$criteria->addState(Criteria::STATE_ELASTICSEARCH_AWARE);
$clone = clone $criteria;
$idResult = $this->extensions->publish(
name: ResolveListingIdsExtension::NAME,
extension: new ResolveListingIdsExtension($clone, $context),
function: $this->resolveIds(...)
);
in
vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php
->
_load
(line 44)
public function publish(string $name, Extension $extension, callable $function): mixed
{
$this->dispatcher->dispatch($extension, self::pre($name));
if (!$extension->isPropagationStopped()) {
$extension->result = $function(...$extension->getParams());
}
$extension->resetPropagation();
$this->dispatcher->dispatch($extension, self::post($name));
in
vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php
->
publish
(line 55)
* @return EntitySearchResult<ProductCollection>
*/
public function load(Criteria $origin, SalesChannelContext $context): EntitySearchResult
{
// allows full service decoration
return $this->extensions->publish(
name: ResolveListingExtension::NAME,
extension: new ResolveListingExtension($origin, $context),
function: $this->_load(...)
);
}
ProductListingLoader->load()
in
custom/plugins/MoorlMerchantFinder/src/Core/Content/Product/SalesChannel/Listing/MerchantProductListingRoute.php
(line 49)
new ProductAvailableFilter($context->getSalesChannel()->getId(), ProductVisibilityDefinition::VISIBILITY_ALL)
);
$criteria->setLimit(24);
$entities = $this->listingLoader->load($criteria, $context);
$result = ProductListingResult::createFrom($entities);
$this->eventDispatcher->dispatch(
new ProductListingResultEvent($request, $result, $context)
MerchantProductListingRoute->load()
in
custom/plugins/MoorlFoundation/src/Core/Content/Product/SalesChannel/Listing/FoundationProductListingRoute.php
(line 40)
return $entityListing->listingRoute($criteria, $categoryId);
}
try {
return $this->decorated->load($categoryId, $request, $context, $criteria);
} catch (ProductSortingNotFoundException $exception) {
throw new \Exception('Product listing is not combinable with another listing. Please leave the product listing alone.');
}
}
}
FoundationProductListingRoute->load()
in
custom/plugins/MoorlMerchantFinder/src/Storefront/Page/Merchant/MerchantPageLoader.php
(line 39)
throw new MissingRequestParameterException('merchantId', '/merchantId');
}
$criteria = new Criteria();
$criteria->addFilter(new EqualsFilter('MoorlMerchants.id', $merchantId));
$result = $this->productListingRoute->load(MoorlMerchantFinder::NAME, $request, $context, $criteria);
$products = $result->getResult();
$criteria = new Criteria();
$result = $this->merchantDetailRoute->load($merchantId, $request, $context, $criteria);
$merchant = $result->getMerchant();
MerchantPageLoader->load()
in
custom/plugins/MoorlMerchantFinder/src/Storefront/Controller/MerchantController.php
(line 25)
}
#[Route(path: '/merchant/{merchantId}', name: 'frontend.moorl.merchant.detail', methods: ['GET'], defaults: ['XmlHttpRequest' => true])]
public function detail(SalesChannelContext $context, Request $request): Response
{
$page = $this->merchantPageLoader->load($request, $context);
if (!$page->getCmsPage()) {
return $this->renderStorefront('@MoorlMerchantFinder/plugin/moorl-merchant-finder/page/merchant-detail/index.html.twig', [
'page' => $page
]);
in
vendor/symfony/http-kernel/HttpKernel.php
->
detail
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$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 state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 461)
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 438)
// 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 336)
}
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 214)
reload the cache by fetching a fresh response and caching it (if possible).
*/
$this->record($request, 'reload');
$response = $this->fetch($request, $catch);
} else {
$response = $this->lookup($request, $catch);
}
$this->restoreResponseBody($request, $response);
if (HttpKernelInterface::MAIN_REQUEST === $type) {
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.
// sub requests are requests, which are forwarded to the kernel inside the php stack
// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
if ($type === HttpKernelInterface::MAIN_REQUEST) {
$response = parent::handle($request, $type, $catch);
} elseif ($request->attributes->has('_sw_esi')) {
$response = parent::handle($request, $type, $catch);
} else {
$response = $this->getKernel()->handle($request, $type, $catch);
}
in
vendor/shopware/core/Kernel.php
->
handle
(line 155)
{
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/ernstesdesign.de/httpdocs/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 19:35:33 | deprecation |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php { "exception": {} } |
INFO 19:35:33 | deprecation |
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 "Lenz\OrderLineItemComment\Subscriber\Cart\CheckoutLoadedEvents" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 19:35:33 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "ab0f35" }, "request_uri": "https://ernstesdesign.de/_profiler/ab0f35?panel=exception&type=request", "method": "GET" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Lenz\OrderLineItemComment\Subscriber\Cart\CheckoutLoadedEvents::onKernelRequest". { "event": "kernel.request", "listener": "Lenz\\OrderLineItemComment\\Subscriber\\Cart\\CheckoutLoadedEvents::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
INFO 19:35:33 | deprecation |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "MoorlFoundation\Core\Framework\Twig\ListingExtension" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 19:35:33 | deprecation |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "CobCustomerNumberLogin\Core\Checkout\Customer\CustomerRepository". { "exception": {} } |
INFO 19:35:33 | deprecation |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository::__construct()" method is considered internal. It may change without further notice. You should not extend it from "CobCustomerNumberLogin\Core\Checkout\Customer\CustomerRepository". { "exception": {} } |
INFO 19:35:33 | deprecation |
User Deprecated: The "Shopware\Core\Content\Product\Cms\ProductSliderCmsElementResolver::__construct()" method is considered internal. It may change without further notice. You should not extend it from "MoorlFoundation\Core\Content\Product\Cms\ProductBuyListCmsElementResolver". { "exception": {} } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPersonalInformationAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPersonalInformationAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkAccountAddressAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkAccountAddressAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkCheckoutAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkCheckoutAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPaymentAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPaymentAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller_arguments" to listener "Container1UrP51Z\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container1UrP51Z\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Lenz\OrderLineItemComment\Subscriber\Cart\CheckoutLoadedEvents::onKernelRequest". { "event": "kernel.request", "listener": "Lenz\\OrderLineItemComment\\Subscriber\\Cart\\CheckoutLoadedEvents::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPersonalInformationAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPersonalInformationAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkAccountAddressAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkAccountAddressAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkCheckoutAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkCheckoutAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPaymentAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPaymentAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller_arguments" to listener "Container1UrP51Z\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container1UrP51Z\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". { "event": "kernel.response", "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke". { "event": "kernel.response", "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.response" to listener "LeopardSearchExtension\Subscriber\KernelResponseSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "LeopardSearchExtension\\Subscriber\\KernelResponseSubscriber::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 19:35:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Lenz\OrderLineItemComment\Subscriber\Cart\CheckoutLoadedEvents::onKernelRequest". { "event": "kernel.request", "listener": "Lenz\\OrderLineItemComment\\Subscriber\\Cart\\CheckoutLoadedEvents::onKernelRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPersonalInformationAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPersonalInformationAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkAccountAddressAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkAccountAddressAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkCheckoutAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkCheckoutAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Bpa\RestrictCustomerAccount\Subscriber\StorefrontSubscriber::checkPaymentAccess". { "event": "kernel.controller", "listener": "Bpa\\RestrictCustomerAccount\\Subscriber\\StorefrontSubscriber::checkPaymentAccess" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:35:33 | 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 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:35:33 | 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 19:35:33 | event |
Notified event "kernel.controller_arguments" to listener "Container1UrP51Z\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container1UrP51Z\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:35:33 | 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
InvalidUuidException
|
---|
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException: Value is not a valid UUID: www.m-lewalter.de at vendor/shopware/core/Framework/Uuid/Uuid.php:123 at Shopware\Core\Framework\Uuid\Uuid::fromHexToBytes() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:263) at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parseEqualsFilter() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:102) at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parse() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:309) at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->iterateNested() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:273) at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parseMultiFilter() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:109) at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parse() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/CriteriaQueryBuilder.php:91) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\CriteriaQueryBuilder->addFilter() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/CriteriaQueryBuilder.php:72) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\CriteriaQueryBuilder->build() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntitySearcher.php:72) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntitySearcher->search() (vendor/shopware/elasticsearch/Framework/DataAbstractionLayer/ElasticsearchEntitySearcher.php:49) at Shopware\Elasticsearch\Framework\DataAbstractionLayer\ElasticsearchEntitySearcher->search() (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:192) at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->doSearch() (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:164) at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->_searchIds() (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:75) at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->searchIds() (vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php:276) at Shopware\Core\Content\Product\SalesChannel\Listing\ProductListingLoader->resolveIds() (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44) at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish() (vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php:70) at Shopware\Core\Content\Product\SalesChannel\Listing\ProductListingLoader->_load() (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44) at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish() (vendor/shopware/core/Content/Product/SalesChannel/Listing/ProductListingLoader.php:55) at Shopware\Core\Content\Product\SalesChannel\Listing\ProductListingLoader->load() (custom/plugins/MoorlMerchantFinder/src/Core/Content/Product/SalesChannel/Listing/MerchantProductListingRoute.php:49) at Moorl\MerchantFinder\Core\Content\Product\SalesChannel\Listing\MerchantProductListingRoute->load() (custom/plugins/MoorlFoundation/src/Core/Content/Product/SalesChannel/Listing/FoundationProductListingRoute.php:40) at MoorlFoundation\Core\Content\Product\SalesChannel\Listing\FoundationProductListingRoute->load() (custom/plugins/MoorlMerchantFinder/src/Storefront/Page/Merchant/MerchantPageLoader.php:39) at Moorl\MerchantFinder\Storefront\Page\Merchant\MerchantPageLoader->load() (custom/plugins/MoorlMerchantFinder/src/Storefront/Controller/MerchantController.php:25) at Moorl\MerchantFinder\Storefront\Controller\MerchantController->detail() (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:461) at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:438) at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:336) at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:214) 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:155) 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/ernstesdesign.de/httpdocs/vendor/autoload_runtime.php') (public/index.php:10) |