Error 400 Bad Request

GET https://sw6staging.straid.nl/landingPage/twt.widget.payment.link

Forwarded to ErrorController (b700ba)

Exceptions

Value is not a valid UUID: twt.widget.payment.link

Exception

Shopware\Core\Framework\Uuid\Exception\ InvalidUuidException

Show exception properties
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException {#5580
  -statusCode: 400
  -headers: []
  #parameters: array:1 [
    "input" => "twt.widget.payment.link"
  ]
}
  1. {
  2. if ($bin = @hex2bin($uuid)) {
  3. return $bin;
  4. }
  5. throw new InvalidUuidException($uuid);
  6. }
  7. /**
  8. * Generates a md5 binary, to hash the string and returns a UUID in hex
  9. */
  1. \assert(\is_string($shiftedId));
  2. return Uuid::fromHexToBytes($shiftedId);
  3. }
  4. return Uuid::fromHexToBytes($id);
  5. }, $primaryKeys);
  6. }
  7. if (!$primaryKeyField instanceof StorageAware) {
  8. throw new \RuntimeException('Primary key fields has to be an instance of StorageAware');
EntityDefinitionQueryHelper->{closure:Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper::addIdCondition():576}()
  1. }
  2. if (!\is_array($primaryKeys[0]) || \count($primaryKeys[0]) === 1) {
  3. $primaryKeyField = $definition->getPrimaryKeys()->first();
  4. if ($primaryKeyField instanceof IdField || $primaryKeyField instanceof FkField) {
  5. $primaryKeys = array_map(function ($id) {
  6. if (\is_array($id)) {
  7. $shiftedId = array_shift($id);
  8. \assert(\is_string($shiftedId));
  9. return Uuid::fromHexToBytes($shiftedId);
  1. }
  2. $query = $this->criteriaQueryBuilder->build($query, $definition, $criteria, $context);
  3. if (!empty($criteria->getIds())) {
  4. $this->queryHelper->addIdCondition($criteria, $definition, $query);
  5. }
  6. $this->queryHelper->addGroupBy($definition, $criteria, $context, $query, $table);
  7. // add pagination
  1. }
  2. public function search(EntityDefinition $definition, Criteria $criteria, Context $context): IdSearchResult
  3. {
  4. if (!$this->helper->allowSearch($definition, $context, $criteria)) {
  5. return $this->decorated->search($definition, $criteria, $context);
  6. }
  7. if ($criteria->getLimit() === 0) {
  8. return new IdSearchResult(0, [], $criteria, $context);
  9. }
  1. }
  2. public function search(EntityDefinition $definition, Criteria $criteria, Context $context): IdSearchResult
  3. {
  4. if (!$this->allowAdminEsSearch($definition, $context, $criteria)) {
  5. return $this->decorated->search($definition, $criteria, $context);
  6. }
  7. if ($criteria->getLimit() === 0) {
  8. return new IdSearchResult(0, [], $criteria, $context);
  9. }
  1. return $entities;
  2. }
  3. private function doSearch(Criteria $criteria, SalesChannelContext $salesChannelContext): IdSearchResult
  4. {
  5. $result = $this->searcher->search($this->definition, $criteria, $salesChannelContext->getContext());
  6. $event = new SalesChannelEntityIdSearchResultLoadedEvent($this->definition, $result, $salesChannelContext);
  7. $this->eventDispatcher->dispatch($event, $event->getName());
  8. return $result;
  1. $entities = $this->read($criteria, $salesChannelContext);
  2. return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities, $aggregations, $criteria, $salesChannelContext->getContext());
  3. }
  4. $ids = $this->doSearch($criteria, $salesChannelContext);
  5. if (empty($ids->getIds())) {
  6. /** @var TEntityCollection $collection */
  7. $collection = $this->definition->getCollectionClass();
  1. {
  2. if (!$criteria->getTitle()) {
  3. return $this->_search($criteria, $salesChannelContext);
  4. }
  5. return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria, $salesChannelContext), 'saleschannel-repository');
  6. }
  7. public function aggregate(Criteria $criteria, SalesChannelContext $salesChannelContext): AggregationResultCollection
  8. {
  9. if (!$criteria->getTitle()) {
in vendor/shopware/core/Profiling/Profiler.php -> {closure:Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository::search():60} (line 67)
  1. try {
  2. foreach (self::$profilers as $profiler) {
  3. $profiler->start($name, $category, $tags);
  4. }
  5. $result = $closure();
  6. } finally {
  7. foreach (self::$profilers as $profiler) {
  8. $profiler->stop($name);
  9. }
  10. }
  1. {
  2. if (!$criteria->getTitle()) {
  3. return $this->_search($criteria, $salesChannelContext);
  4. }
  5. return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria, $salesChannelContext), 'saleschannel-repository');
  6. }
  7. public function aggregate(Criteria $criteria, SalesChannelContext $salesChannelContext): AggregationResultCollection
  8. {
  9. if (!$criteria->getTitle()) {
  1. $criteria->addFilter(new EqualsFilter('active', true));
  2. $criteria->addFilter(new EqualsFilter('salesChannels.id', $context->getSalesChannelId()));
  3. $landingPage = $this->landingPageRepository
  4. ->search($criteria, $context)
  5. ->get($landingPageId);
  6. if (!$landingPage instanceof LandingPageEntity) {
  7. throw LandingPageException::notFound($landingPageId);
  8. }
  1. #[Route(path: '/store-api/landing-page/{landingPageId}', name: 'store-api.landing-page.detail', methods: ['POST'])]
  2. public function load(string $landingPageId, Request $request, SalesChannelContext $context): LandingPageRouteResponse
  3. {
  4. $this->dispatcher->dispatch(new AddCacheTagEvent(self::buildName($landingPageId)));
  5. $landingPage = $this->loadLandingPage($landingPageId, $context);
  6. $pageId = $landingPage->getCmsPageId();
  7. if (!$pageId) {
  8. return new LandingPageRouteResponse($landingPage);
  1. return $this->getDecorated()->load($landingPageId, $request, $context);
  2. }
  3. $value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {
  4. $name = self::buildName($landingPageId);
  5. $response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));
  6. $item->tag($this->generateTags($landingPageId, $response, $request, $context));
  7. return CacheValueCompressor::compress($response);
  8. });
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> {closure:{closure:Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute::load():74}:76} (line 451)
  1. public function trace(string $key, \Closure $param)
  2. {
  3. $this->traces[$key] = [];
  4. $this->keys[$key] = true;
  5. $result = $param();
  6. unset($this->keys[$key]);
  7. return $result;
  8. }
  1. throw new DecorationPatternException(self::class);
  2. }
  3. public function trace(string $key, \Closure $param)
  4. {
  5. return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
  6. }
  7. public function get(string $key): array
  8. {
  9. return array_merge(
in vendor/shopware/core/Framework/Adapter/Translation/Translator.php -> {closure:{closure:Shopware\Core\Framework\Adapter\Cache\CacheTracer::trace():35}:35} (line 101)
  1. public function trace(string $key, \Closure $param)
  2. {
  3. $this->traces[$key] = [];
  4. $this->keys[$key] = true;
  5. $result = $param();
  6. unset($this->keys[$key]);
  7. return $result;
  8. }
  1. throw new DecorationPatternException(self::class);
  2. }
  3. public function trace(string $key, \Closure $param)
  4. {
  5. return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
  6. }
  7. public function get(string $key): array
  8. {
  9. return array_merge(
in vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php -> {closure:Shopware\Core\Framework\Adapter\Cache\CacheTracer::trace():35} (line 56)
  1. public function trace(string $key, \Closure $param)
  2. {
  3. $this->traces[$key] = [];
  4. $this->keys[$key] = true;
  5. $result = $param();
  6. unset($this->keys[$key]);
  7. return $result;
  8. }
  1. throw new DecorationPatternException(self::class);
  2. }
  3. public function trace(string $key, \Closure $param)
  4. {
  5. return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
  6. }
  7. public function get(string $key): array
  8. {
  9. return array_merge(
  1. return $this->decorated;
  2. }
  3. public function trace(string $key, \Closure $param)
  4. {
  5. return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));
  6. }
  7. public function get(string $key): array
  8. {
  9. return array_unique(array_merge(
in vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php -> {closure:Shopware\Storefront\Framework\Cache\CacheTracer::trace():35} (line 97)
  1. public function trace(string $key, \Closure $param)
  2. {
  3. $this->traces[$key] = [];
  4. $this->keys[$key] = true;
  5. $result = $param();
  6. unset($this->keys[$key]);
  7. return $result;
  8. }
  1. return $this->decorated;
  2. }
  3. public function trace(string $key, \Closure $param)
  4. {
  5. return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));
  6. }
  7. public function get(string $key): array
  8. {
  9. return array_unique(array_merge(
  1. return $this->getDecorated()->load($landingPageId, $request, $context);
  2. }
  3. $value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {
  4. $name = self::buildName($landingPageId);
  5. $response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));
  6. $item->tag($this->generateTags($landingPageId, $response, $request, $context));
  7. return CacheValueCompressor::compress($response);
  8. });
in vendor/symfony/cache-contracts/CacheTrait.php -> {closure:Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute::load():74} (line 64)
  1. }
  2. }
  3. if ($recompute) {
  4. $save = true;
  5. $item->set($callback($item, $save));
  6. if ($save) {
  7. $pool->save($item);
  8. }
  9. }
  1. */
  2. trait CacheTrait
  3. {
  4. public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed
  5. {
  6. return $this->doGet($this, $key, $callback, $beta, $metadata);
  7. }
  8. public function delete(string $key): bool
  9. {
  10. return $this->deleteItem($key);
  1. if ($key === null) {
  2. return $this->getDecorated()->load($landingPageId, $request, $context);
  3. }
  4. $value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $landingPageId) {
  5. $name = self::buildName($landingPageId);
  6. $response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($landingPageId, $request, $context));
  7. $item->tag($this->generateTags($landingPageId, $response, $request, $context));
  1. $landingPageId = $request->attributes->get('landingPageId');
  2. if (!$landingPageId) {
  3. throw RoutingException::missingRequestParameter('landingPageId', '/landingPageId');
  4. }
  5. $landingPage = $this->landingPageRoute->load($landingPageId, $request, $context)->getLandingPage();
  6. if ($landingPage->getCmsPage() === null) {
  7. throw new PageNotFoundException($landingPageId);
  8. }
  1. }
  2. #[Route(path: '/landingPage/{landingPageId}', name: 'frontend.landing.page', defaults: ['_httpCache' => true], methods: ['GET'])]
  3. public function index(SalesChannelContext $context, Request $request): Response
  4. {
  5. $page = $this->landingPageLoader->load($request, $context);
  6. $this->hook(new LandingPageLoadedHook($page, $context));
  7. return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);
  8. }
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->dispatcher->dispatch($event);
  2. return $event->getResponse();
  3. }
  4. return parent::handle($request, $type, $catch);
  5. }
  6. }
  1. if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2. Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3. }
  4. try {
  5. return $kernel->handle($request, $type, $catch);
  6. } finally {
  7. // restore global state
  8. Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9. }
  10. }
  1. protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
  2. {
  3. $this->surrogate?->addSurrogateCapability($request);
  4. // always a "master" request (as the real master request can be in cache)
  5. $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6. $this->forwardedRequest = $request;
  7. /*
  8. * Support stale-if-error given on Responses or as a config option.
  9. * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  1. // avoid that the backend sends no content
  2. $subRequest->headers->remove('If-Modified-Since');
  3. $subRequest->headers->remove('If-None-Match');
  4. $response = $this->forward($subRequest, $catch);
  5. if ($response->isCacheable()) {
  6. $this->store($request, $response);
  7. }
  1. }
  2. if (null === $entry) {
  3. $this->record($request, 'miss');
  4. return $this->fetch($request, $catch);
  5. }
  6. if (!$this->isFreshEnough($request, $entry)) {
  7. $this->record($request, 'stale');
  1. $response = $this->fetch($request, $catch);
  2. } else {
  3. $response = null;
  4. do {
  5. try {
  6. $response = $this->lookup($request, $catch);
  7. } catch (CacheWasLockedException) {
  8. }
  9. } while (null === $response);
  10. }
  1. // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2. // sub requests are requests, which are forwarded to the kernel inside the php stack
  3. // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4. if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5. $response = parent::handle($request, $type, $catch);
  6. } elseif ($request->attributes->has('_sw_esi')) {
  7. $response = parent::handle($request, $type, $catch);
  8. } else {
  9. $response = $this->getKernel()->handle($request, $type, $catch);
  10. }
in vendor/shopware/core/Kernel.php -> handle (line 153)
  1. public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  2. {
  3. $this->boot();
  4. return $this->getHttpKernel()->handle($request, $type, $catch);
  5. }
  6. public function boot(): void
  7. {
  8. if (!$this->booted) {
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/straid1q/sw6staging.straid.nl/www/vendor/autoload_runtime.php') in public/index.php (line 10)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ . '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
  6. $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 03:22:53 php User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php
{
    "exception": {}
}
INFO 03:22:53 php User Deprecated: Since symfony/var-exporter 7.3: The "Symfony\Component\VarExporter\LazyGhostTrait" trait is deprecated, use native lazy objects instead.
{
    "exception": {}
}
INFO 03:22:53 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "cbf1de"
    },
    "request_uri": "https://sw6staging.straid.nl/_profiler/cbf1de",
    "method": "GET"
}
DEBUG 03:22:53 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 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:22:53 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 03:22:53 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 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 03:22:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 03:22:53 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 03:22:53 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Sendcloud\Shipping\Subscriber\OrderSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Sendcloud\\Shipping\\Subscriber\\OrderSubscriber::saveDataForDelete"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Sendcloud\Shipping\Subscriber\CheckoutSubscriber::setRemoveServicePointFlag".
{
    "event": "kernel.controller",
    "listener": "Sendcloud\\Shipping\\Subscriber\\CheckoutSubscriber::setRemoveServicePointFlag"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:22:53 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 03:22:53 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 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 03:22:53 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 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 03:22:53 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 03:22:53 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 03:22:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 03:22:53 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 03:22:53 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 03:22:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
DEBUG 03:22:53 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 03:22:53 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 03:22:53 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 03:22:53 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 03:22:53 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: twt.widget.payment.link

  at vendor/shopware/core/Framework/Uuid/Uuid.php:124
  at Shopware\Core\Framework\Uuid\Uuid::fromHexToBytes()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php:584)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper->{closure:Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper::addIdCondition():576}()
  at array_map()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php:576)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper->addIdCondition()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntitySearcher.php:75)
  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/elasticsearch/Admin/AdminElasticsearchEntitySearcher.php:37)
  at Shopware\Elasticsearch\Admin\AdminElasticsearchEntitySearcher->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:102)
  at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->_search()
     (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:60)
  at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->{closure:Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository::search():60}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace()
     (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:60)
  at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->search()
     (vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php:90)
  at Shopware\Core\Content\LandingPage\SalesChannel\LandingPageRoute->loadLandingPage()
     (vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php:53)
  at Shopware\Core\Content\LandingPage\SalesChannel\LandingPageRoute->load()
     (vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:76)
  at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->{closure:{closure:Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute::load():74}:76}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:451)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->{closure:{closure:Shopware\Core\Framework\Adapter\Cache\CacheTracer::trace():35}:35}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:101)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->{closure:Shopware\Core\Framework\Adapter\Cache\CacheTracer::trace():35}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace()
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->{closure:Shopware\Storefront\Framework\Cache\CacheTracer::trace():35}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:97)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace()
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace()
     (vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:76)
  at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->{closure:Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute::load():74}()
     (vendor/symfony/cache-contracts/CacheTrait.php:64)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet()
     (vendor/symfony/cache-contracts/CacheTrait.php:30)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get()
     (vendor/shopware/core/Content/LandingPage/SalesChannel/CachedLandingPageRoute.php:74)
  at Shopware\Core\Content\LandingPage\SalesChannel\CachedLandingPageRoute->load()
     (vendor/shopware/storefront/Page/LandingPage/LandingPageLoader.php:41)
  at Shopware\Storefront\Page\LandingPage\LandingPageLoader->load()
     (vendor/shopware/storefront/Controller/LandingPageController.php:31)
  at Shopware\Storefront\Controller\LandingPageController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:476)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:453)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:351)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:220)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
     (vendor/shopware/core/Kernel.php:153)
  at Shopware\Core\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/home/straid1q/sw6staging.straid.nl/www/vendor/autoload_runtime.php')
     (public/index.php:10)