Exceptions
Exception
Shopware\Core\Framework\Uuid\Exception\ InvalidUuidException
Show exception properties
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException {#5978 -statusCode: 400 -headers: [] #parameters: array:1 [ "input" => "0683d6c95ad94cce825c4f4a92a1dd06"" ] }
#[Package('framework')]class UuidException extends HttpException{public static function invalidUuid(string $uuid): ShopwareHttpException{return new InvalidUuidException($uuid);}public static function invalidUuidLength(int $length, string $hex): ShopwareHttpException{return new InvalidUuidLengthException($length, $hex);
in
vendor/shopware/core/Framework/Uuid/Uuid.php
::
invalidUuid
(line 122)
{if ($bin = @hex2bin($uuid)) {return $bin;}throw UuidException::invalidUuid($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 279)
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 105)
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 325)
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 289)
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 112)
$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 DataAbstractionLayerException::unsupportedQueryFilter($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 52)
}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 195)
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 166)
{$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 78)
{if (!$criteria->getTitle()) {return $this->_searchIds($criteria, $salesChannelContext);}return Profiler::trace($criteria->getTitle(), fn () => $this->_searchIds($criteria, $salesChannelContext), 'saleschannel-repository');}/*** @throws InconsistentCriteriaIdsException*
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Core\System\SalesChannel\Entity\{closure}
(line 67)
try {foreach (self::$profilers as $profiler) {$profiler->start($name, $category, $tags);}$result = $closure();} finally {foreach (self::$profilers as $profiler) {$profiler->stop($name);}}
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
::
trace
(line 78)
{if (!$criteria->getTitle()) {return $this->_searchIds($criteria, $salesChannelContext);}return Profiler::trace($criteria->getTitle(), fn () => $this->_searchIds($criteria, $salesChannelContext), 'saleschannel-repository');}/*** @throws InconsistentCriteriaIdsException*
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
->
searchIds
(line 209)
->addSorting(new FieldSorting('product.available', FieldSorting::DESCENDING))->addSorting(new FieldSorting('product.price'))->setLimit(1);$criteria->setTitle('product-detail-route::find-best-variant');$variantId = $this->productRepository->searchIds($criteria, $context);return $variantId->firstId() ?? $productId;}private function findBestVariantByTerm(string $term, string $productId, SalesChannelContext $context): ?string
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
->
findBestVariant
(line 99)
if ($resolveVariantIdEvent->getResolvedVariantId()) {$productId = $resolveVariantIdEvent->getResolvedVariantId();} else {$term = $request->query->get('search');$variantId = $term ? $this->findBestVariantByTerm($term, $productId, $context) : null;$productId = $variantId ?? $this->findBestVariant($productId, $context);}$this->addFilters($context, $criteria);$criteria->setIds([$productId]);
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Core\Content\Product\SalesChannel\Detail\{closure}
(line 67)
try {foreach (self::$profilers as $profiler) {$profiler->start($name, $category, $tags);}$result = $closure();} finally {foreach (self::$profilers as $profiler) {$profiler->stop($name);}}
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
::
trace
(line 83)
methods: [Request::METHOD_POST, Request::METHOD_GET],defaults: [PlatformRequest::ATTRIBUTE_ENTITY => ProductDefinition::ENTITY_NAME, PlatformRequest::ATTRIBUTE_HTTP_CACHE => true])]public function load(string $productId, Request $request, SalesChannelContext $context, Criteria $criteria): ProductDetailRouteResponse{return Profiler::trace('product-detail-route', function () use ($productId, $request, $context, $criteria) {$mainVariantId = $this->checkVariantListingConfig($productId, $context);$resolveVariantIdEvent = new ResolveVariantIdEvent($productId,$mainVariantId,
in
vendor/shopware/storefront/Page/Product/ProductPageLoader.php
->
load
(line 63)
new FieldSorting('position'));$this->eventDispatcher->dispatch(new ProductPageCriteriaEvent($productId, $criteria, $context));$result = $this->productDetailRoute->load($productId, $request, $context, $criteria);$product = $result->getProduct();if ($product->getMedia() && $product->getCover()) {$product->setMedia(new ProductMediaCollection(array_merge([$product->getCover()->getId() => $product->getCover()],
in
vendor/shopware/storefront/Controller/ProductController.php
->
load
(line 61)
defaults: [PlatformRequest::ATTRIBUTE_HTTP_CACHE => true],methods: [Request::METHOD_GET])]public function index(SalesChannelContext $context, Request $request): Response{$page = $this->productPageLoader->load($request, $context);$this->hook(new ProductPageLoadedHook($page, $context));return $this->renderStorefront('@Storefront/storefront/page/content/product-detail.html.twig',
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 466)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response{$this->surrogate?->addSurrogateCapability($request);// always a "master" request (as the real master request can be in cache)$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);/** Support stale-if-error given on Responses or as a config option.* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual* Cache-Control directives) that
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 443)
// 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 341)
}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 216)
$response = $this->fetch($request, $catch);} else {$response = null;do {try {$response = $this->lookup($request, $catch);} catch (CacheWasLockedException) {}} while (null === $response);}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 61)
// 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 129)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response{$this->boot();return $this->getHttpKernel()->handle($request, $type, $catch);}public function boot(): void{if (!$this->booted) {
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/app/sites/dimenno.notfalse.dev/current/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 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 14:29:51 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Framework\Adapter\Cache\CacheTagCollector::__invoke". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheTagCollector::__invoke"
}
|
| DEBUG 14:29:51 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Profiling\Subscriber\CacheTagCollectorSubscriber::add". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
"listener": "Shopware\\Core\\Profiling\\Subscriber\\CacheTagCollectorSubscriber::add"
}
|
| INFO 14:29:51 | cache |
Lock acquired, now computing item "system-config-" {
"key": "system-config-"
}
|
| INFO 14:29:51 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "75a7af"
},
"request_uri": "https://dimenno.notfalse.dev/_profiler/75a7af?panel=exception&type=request",
"method": "GET"
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Kiener\MolliePayments\Subscriber\WebhookTimezoneSubscriber::fixWebhookTimezone". {
"event": "kernel.request",
"listener": "Kiener\\MolliePayments\\Subscriber\\WebhookTimezoneSubscriber::fixWebhookTimezone"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::__invoke"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Kiener\MolliePayments\Subscriber\KernelSubscriber::onModifyRouteScope". {
"event": "kernel.controller",
"listener": "Kiener\\MolliePayments\\Subscriber\\KernelSubscriber::onModifyRouteScope"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 14:29:51 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | event |
Notified event "kernel.controller_arguments" to listener "ContainerExNURsq\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerExNURsq\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 14:29:51 | 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 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:29:51 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
Stack Trace
|
InvalidUuidException
|
|---|
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException:
Value is not a valid UUID: 0683d6c95ad94cce825c4f4a92a1dd06"
at vendor/shopware/core/Framework/Uuid/UuidException.php:16
at Shopware\Core\Framework\Uuid\UuidException::invalidUuid()
(vendor/shopware/core/Framework/Uuid/Uuid.php:122)
at Shopware\Core\Framework\Uuid\Uuid::fromHexToBytes()
(vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:279)
at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parseEqualsFilter()
(vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:105)
at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parse()
(vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:325)
at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->iterateNested()
(vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:289)
at Shopware\Core\Framework\DataAbstractionLayer\Search\Parser\SqlQueryParser->parseMultiFilter()
(vendor/shopware/core/Framework/DataAbstractionLayer/Search/Parser/SqlQueryParser.php:112)
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:52)
at Shopware\Elasticsearch\Framework\DataAbstractionLayer\ElasticsearchEntitySearcher->search()
(vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:195)
at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->doSearch()
(vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:166)
at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->_searchIds()
(vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:78)
at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->Shopware\Core\System\SalesChannel\Entity\{closure}()
(vendor/shopware/core/Profiling/Profiler.php:67)
at Shopware\Core\Profiling\Profiler::trace()
(vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:78)
at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->searchIds()
(vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:209)
at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->findBestVariant()
(vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:99)
at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->Shopware\Core\Content\Product\SalesChannel\Detail\{closure}()
(vendor/shopware/core/Profiling/Profiler.php:67)
at Shopware\Core\Profiling\Profiler::trace()
(vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:83)
at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->load()
(vendor/shopware/storefront/Page/Product/ProductPageLoader.php:63)
at Shopware\Storefront\Page\Product\ProductPageLoader->load()
(vendor/shopware/storefront/Controller/ProductController.php:61)
at Shopware\Storefront\Controller\ProductController->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:466)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:443)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:341)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:216)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:61)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
(vendor/shopware/core/Kernel.php:129)
at Shopware\Core\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home/app/sites/dimenno.notfalse.dev/current/vendor/autoload_runtime.php')
(public/index.php:10)
|