Error 500 Internal Server Error

GET https://wildcard.shopware.agiqon.de/

Exceptions

An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

Exceptions 3

Doctrine\DBAL\Exception\ InvalidFieldNameException

Show exception properties
Doctrine\DBAL\Exception\InvalidFieldNameException {#3181
  -query: Doctrine\DBAL\Query {#3157
    -sql: """
      # base-context-factory::taxes::association::rules::read\n
      SELECT `tax_rule`.`id` as `tax_rule.id`, `tax_rule`.`tax_rule_type_id` as `tax_rule.taxRuleTypeId`, `tax_rule`.`country_id` as `tax_rule.countryId`, `tax_rule`.`tax_rate` as `tax_rule.taxRate`, `tax_rule`.`data` as `tax_rule.data`, `tax_rule`.`tax_id` as `tax_rule.taxId`, `tax_rule`.`active_from` as `tax_rule.activeFrom`, `tax_rule.type`.`id` as `tax_rule.type.id`, `tax_rule.type`.`technical_name` as `tax_rule.type.technicalName`, `tax_rule.type`.`position` as `tax_rule.type.position`, `tax_rule.type`.`created_at` as `tax_rule.type.createdAt`, `tax_rule.type`.`updated_at` as `tax_rule.type.updatedAt`, `tax_rule.type.translation.typeName`, COALESCE(`tax_rule.type.translation.typeName`,`tax_rule.type.translation.typeName`) as `tax_rule.type.typeName`, `tax_rule.type.translation.createdAt`, `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation.languageId`, `tax_rule`.`created_at` as `tax_rule.createdAt`, `tax_rule`.`updated_at` as `tax_rule.updatedAt` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule`.`tax_rule_type_id` = `tax_rule.type`.`id` LEFT JOIN (SELECT `tax_rule.type.translation`.tax_rule_type_id, `tax_rule.type.translation`.type_name as `tax_rule.type.translation.typeName`, `tax_rule.type.translation`.created_at as `tax_rule.type.translation.createdAt`, `tax_rule.type.translation`.updated_at as `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation`.tax_rule_type_id as `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation`.language_id as `tax_rule.type.translation.languageId` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation`.language_id = ?) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation`.`tax_rule_type_id` = `tax_rule.type`.`id` WHERE (`tax_rule`.`tax_id` IN (?, ?, ?, ?))
      """
    -params: array:5 [
      0 => b"/»_ââšMpªXTÎ|ãâ\v"
      1 => b",§Ì…\x1F\x10M|³Â=*F³»a"
      2 => b"`Î-Z\x13™M*Ÿ*D¾ÍQÉk"
      3 => b"á¯ıl³ðA5╝É┤Ûðx\x12g"
      4 => b"Ï+À„òLA\x07˜øwÒO${¶"
    ]
    -types: array:5 [
      0 => 2
      1 => 2
      2 => 2
      3 => 2
      4 => 2
    ]
  }
}
  1.                 return new UniqueConstraintViolationException($exception$query);
  2.             case 1054:
  3.             case 1166:
  4.             case 1611:
  5.                 return new InvalidFieldNameException($exception$query);
  6.             case 1052:
  7.             case 1060:
  8.             case 1110:
  9.                 return new NonUniqueFieldNameException($exception$query);
  1.     private function handleDriverException(
  2.         Driver\Exception $driverException,
  3.         ?Query $query
  4.     ): DriverException {
  5.         $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
  6.         $exception                  $this->exceptionConverter->convert($driverException$query);
  7.         if ($exception instanceof ConnectionLost) {
  8.             $this->close();
  9.         }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1918)
  1.         Driver\Exception $e,
  2.         string $sql,
  3.         array $params = [],
  4.         array $types = []
  5.     ): DriverException {
  6.         return $this->handleDriverException($e, new Query($sql$params$types));
  7.     }
  8.     /** @internal */
  9.     final public function convertException(Driver\Exception $e): DriverException
  10.     {
in vendor/doctrine/dbal/src/Connection.php -> convertExceptionDuringQuery (line 1111)
  1.                 $result $connection->query($sql);
  2.             }
  3.             return new Result($result$this);
  4.         } catch (Driver\Exception $e) {
  5.             throw $this->convertExceptionDuringQuery($e$sql$params$types);
  6.         } finally {
  7.             if ($logger !== null) {
  8.                 $logger->stopQuery();
  9.             }
  10.         }
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw new ParentAssociationCanNotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.             // Make sure our collection index will be loaded
  2.             $partial[$propertyName] = [];
  3.             $collectionClass EntityCollection::class;
  4.         }
  5.         $data $this->_read(
  6.             $fieldCriteria,
  7.             $referenceClass,
  8.             $context,
  9.             new $collectionClass(),
  10.             $referenceClass->getFields()->getBasicFields(),
  1.             );
  2.         }
  3.         // association should not be paginated > load data over foreign key condition
  4.         if ($fieldCriteria->getLimit() === null) {
  5.             $this->loadOneToManyWithoutPagination($definition$association$context$collection$fieldCriteria$partial);
  6.             return;
  7.         }
  8.         // load association paginated > use internal counter loops
  1.                 continue;
  2.             }
  3.             if ($association instanceof OneToManyAssociationField) {
  4.                 $this->loadOneToMany($criteria$definition$association$context$collection$partial[$association->getPropertyName()] ?? []);
  5.                 continue;
  6.             }
  7.             if ($association instanceof ManyToManyAssociationField) {
  1.         $rows $this->fetch($criteria$definition$context$fields$partial);
  2.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  3.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  4.         $hasIds = !empty($criteria->getIds());
  5.         if ($hasIds && empty($criteria->getSorting())) {
  6.             $collection->sortByIdArray($criteria->getIds());
  7.         }
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.     {
  2.         if (!$criteria->getTitle()) {
  3.             return $this->_search($criteria$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\Framework\DataAbstractionLayer\{closure} (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$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
  1.         $criteria = new Criteria();
  2.         $criteria->setTitle('base-context-factory::taxes');
  3.         $criteria->addAssociation('rules.type');
  4.         /** @var TaxCollection $taxes */
  5.         $taxes $this->taxRepository->search($criteria$context)->getEntities();
  6.         return $taxes;
  7.     }
  8.     /**
  1.         /** @var CustomerGroupEntity $customerGroup */
  2.         $customerGroup $customerGroups->get($groupId);
  3.         // loads tax rules based on active customer and delivery address
  4.         $taxRules $this->getTaxRules($context);
  5.         // detect active payment method, first check if checkout defined other payment method, otherwise validate if customer logged in, at least use shop default
  6.         $payment $this->getPaymentMethod($options$context$salesChannel);
  7.         // detect active delivery method, at first checkout scope, at least shop default method
  1.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.             SalesChannelContextService::COUNTRY_STATE_ID => true,
  2.         ]);
  3.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  4.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  5.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  6.             $keys array_unique(array_merge(
  7.                 $this->tracer->get($name),
  8.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  1.     }
  2.     public function create(string $tokenstring $salesChannelId, array $options = []): SalesChannelContext
  3.     {
  4.         // we split the context generation to allow caching of the base context
  5.         $base $this->baseContextFactory->create($salesChannelId$options);
  6.         // customer
  7.         $customer null;
  8.         if (\array_key_exists(SalesChannelContextService::CUSTOMER_ID$options) && $options[SalesChannelContextService::CUSTOMER_ID] !== null) {
  9.             // load logged in customer and set active addresses
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  1.             if ($parameters->getCustomerId() !== null) {
  2.                 $session[self::CUSTOMER_ID] = $parameters->getCustomerId();
  3.             }
  4.             $context $this->factory->create($token$parameters->getSalesChannelId(), $session);
  5.             $this->eventDispatcher->dispatch(new SalesChannelContextCreatedEvent($context$token));
  6.             $result $this->ruleLoader->loadByToken($context$token);
  7.             $this->cartService->setCart($result->getCart());
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\System\SalesChannel\Context\{closure} (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.     }
  3.     public function get(SalesChannelContextServiceParameters $parameters): SalesChannelContext
  4.     {
  5.         return Profiler::trace('sales-channel-context', function () use ($parameters) {
  6.             $token $parameters->getToken();
  7.             $session $this->contextPersister->load($token$parameters->getSalesChannelId());
  8.             if ($session['expired'] ?? false) {
  1.             $usedContextToken,
  2.             $request->headers->get(PlatformRequest::HEADER_LANGUAGE_ID),
  3.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_CURRENCY_ID),
  4.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_ID)
  5.         );
  6.         $context $this->contextService->get($contextServiceParameters);
  7.         // Validate if a customer login is required for the current request
  8.         $this->validateLogin($request$context);
  9.         // Update attributes and headers of the current request
  1.         ];
  2.     }
  3.     public function resolveContext(ControllerEvent $event): void
  4.     {
  5.         $this->requestContextResolver->resolve($event->getRequest());
  6.     }
  7. }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         if (false === $controller $this->resolver->getController($request)) {
  2.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  3.         }
  4.         $event = new ControllerEvent($this$controller$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER);
  6.         $controller $event->getController();
  7.         // controller arguments
  8.         $arguments $this->argumentResolver->getArguments($request$controller$event->getControllerReflector());
  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 $requestbool $catch false, ?Response $entry null)
  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$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  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.         } else {
  7.             $response $this->getKernel()->handle($request$type$catch);
  8.         }
  9.         if ($ips $response->headers->get(self::MAINTENANCE_WHITELIST_HEADER)) {
in vendor/shopware/core/Kernel.php -> handle (line 158)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  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 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php') in public/index.php (line 11)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Symfony\Component\HttpFoundation\Request;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

  1.         } else {
  2.             $code     $exception->getCode();
  3.             $sqlState null;
  4.         }
  5.         return new self($exception->getMessage(), $sqlState$code$exception);
  6.     }
  7. }
  1.         }
  2.         try {
  3.             $this->stmt->execute($params);
  4.         } catch (PDOException $exception) {
  5.             throw Exception::new($exception);
  6.         }
  7.         return new Result($this->stmt);
  8.     }
  9. }
  1.     /**
  2.      * {@inheritDoc}
  3.      */
  4.     public function execute($params null): Result
  5.     {
  6.         return $this->wrappedStatement->execute($params);
  7.     }
  8. }
  1.         $this->stopwatch?->start('doctrine''doctrine');
  2.         $query->start();
  3.         try {
  4.             return parent::execute($params);
  5.         } finally {
  6.             $query->stop();
  7.             $this->stopwatch?->stop('doctrine');
  8.         }
  9.     }
  1.                 $stmt $connection->prepare($sql);
  2.                 $this->bindParameters($stmt$params$types);
  3.                 $result $stmt->execute();
  4.             } else {
  5.                 $result $connection->query($sql);
  6.             }
  7.             return new Result($result$this);
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw new ParentAssociationCanNotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.             // Make sure our collection index will be loaded
  2.             $partial[$propertyName] = [];
  3.             $collectionClass EntityCollection::class;
  4.         }
  5.         $data $this->_read(
  6.             $fieldCriteria,
  7.             $referenceClass,
  8.             $context,
  9.             new $collectionClass(),
  10.             $referenceClass->getFields()->getBasicFields(),
  1.             );
  2.         }
  3.         // association should not be paginated > load data over foreign key condition
  4.         if ($fieldCriteria->getLimit() === null) {
  5.             $this->loadOneToManyWithoutPagination($definition$association$context$collection$fieldCriteria$partial);
  6.             return;
  7.         }
  8.         // load association paginated > use internal counter loops
  1.                 continue;
  2.             }
  3.             if ($association instanceof OneToManyAssociationField) {
  4.                 $this->loadOneToMany($criteria$definition$association$context$collection$partial[$association->getPropertyName()] ?? []);
  5.                 continue;
  6.             }
  7.             if ($association instanceof ManyToManyAssociationField) {
  1.         $rows $this->fetch($criteria$definition$context$fields$partial);
  2.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  3.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  4.         $hasIds = !empty($criteria->getIds());
  5.         if ($hasIds && empty($criteria->getSorting())) {
  6.             $collection->sortByIdArray($criteria->getIds());
  7.         }
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.     {
  2.         if (!$criteria->getTitle()) {
  3.             return $this->_search($criteria$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\Framework\DataAbstractionLayer\{closure} (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$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
  1.         $criteria = new Criteria();
  2.         $criteria->setTitle('base-context-factory::taxes');
  3.         $criteria->addAssociation('rules.type');
  4.         /** @var TaxCollection $taxes */
  5.         $taxes $this->taxRepository->search($criteria$context)->getEntities();
  6.         return $taxes;
  7.     }
  8.     /**
  1.         /** @var CustomerGroupEntity $customerGroup */
  2.         $customerGroup $customerGroups->get($groupId);
  3.         // loads tax rules based on active customer and delivery address
  4.         $taxRules $this->getTaxRules($context);
  5.         // detect active payment method, first check if checkout defined other payment method, otherwise validate if customer logged in, at least use shop default
  6.         $payment $this->getPaymentMethod($options$context$salesChannel);
  7.         // detect active delivery method, at first checkout scope, at least shop default method
  1.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.             SalesChannelContextService::COUNTRY_STATE_ID => true,
  2.         ]);
  3.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  4.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  5.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  6.             $keys array_unique(array_merge(
  7.                 $this->tracer->get($name),
  8.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  1.     }
  2.     public function create(string $tokenstring $salesChannelId, array $options = []): SalesChannelContext
  3.     {
  4.         // we split the context generation to allow caching of the base context
  5.         $base $this->baseContextFactory->create($salesChannelId$options);
  6.         // customer
  7.         $customer null;
  8.         if (\array_key_exists(SalesChannelContextService::CUSTOMER_ID$options) && $options[SalesChannelContextService::CUSTOMER_ID] !== null) {
  9.             // load logged in customer and set active addresses
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  1.             if ($parameters->getCustomerId() !== null) {
  2.                 $session[self::CUSTOMER_ID] = $parameters->getCustomerId();
  3.             }
  4.             $context $this->factory->create($token$parameters->getSalesChannelId(), $session);
  5.             $this->eventDispatcher->dispatch(new SalesChannelContextCreatedEvent($context$token));
  6.             $result $this->ruleLoader->loadByToken($context$token);
  7.             $this->cartService->setCart($result->getCart());
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\System\SalesChannel\Context\{closure} (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.     }
  3.     public function get(SalesChannelContextServiceParameters $parameters): SalesChannelContext
  4.     {
  5.         return Profiler::trace('sales-channel-context', function () use ($parameters) {
  6.             $token $parameters->getToken();
  7.             $session $this->contextPersister->load($token$parameters->getSalesChannelId());
  8.             if ($session['expired'] ?? false) {
  1.             $usedContextToken,
  2.             $request->headers->get(PlatformRequest::HEADER_LANGUAGE_ID),
  3.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_CURRENCY_ID),
  4.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_ID)
  5.         );
  6.         $context $this->contextService->get($contextServiceParameters);
  7.         // Validate if a customer login is required for the current request
  8.         $this->validateLogin($request$context);
  9.         // Update attributes and headers of the current request
  1.         ];
  2.     }
  3.     public function resolveContext(ControllerEvent $event): void
  4.     {
  5.         $this->requestContextResolver->resolve($event->getRequest());
  6.     }
  7. }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         if (false === $controller $this->resolver->getController($request)) {
  2.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  3.         }
  4.         $event = new ControllerEvent($this$controller$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER);
  6.         $controller $event->getController();
  7.         // controller arguments
  8.         $arguments $this->argumentResolver->getArguments($request$controller$event->getControllerReflector());
  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 $requestbool $catch false, ?Response $entry null)
  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$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  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.         } else {
  7.             $response $this->getKernel()->handle($request$type$catch);
  8.         }
  9.         if ($ips $response->headers->get(self::MAINTENANCE_WHITELIST_HEADER)) {
in vendor/shopware/core/Kernel.php -> handle (line 158)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  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 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php') in public/index.php (line 11)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Symfony\Component\HttpFoundation\Request;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

PDOException

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

  1.                     ' Statement::bindParam() or Statement::bindValue() instead.',
  2.             );
  3.         }
  4.         try {
  5.             $this->stmt->execute($params);
  6.         } catch (PDOException $exception) {
  7.             throw Exception::new($exception);
  8.         }
  9.         return new Result($this->stmt);
  1.                     ' Statement::bindParam() or Statement::bindValue() instead.',
  2.             );
  3.         }
  4.         try {
  5.             $this->stmt->execute($params);
  6.         } catch (PDOException $exception) {
  7.             throw Exception::new($exception);
  8.         }
  9.         return new Result($this->stmt);
  1.     /**
  2.      * {@inheritDoc}
  3.      */
  4.     public function execute($params null): Result
  5.     {
  6.         return $this->wrappedStatement->execute($params);
  7.     }
  8. }
  1.         $this->stopwatch?->start('doctrine''doctrine');
  2.         $query->start();
  3.         try {
  4.             return parent::execute($params);
  5.         } finally {
  6.             $query->stop();
  7.             $this->stopwatch?->stop('doctrine');
  8.         }
  9.     }
  1.                 $stmt $connection->prepare($sql);
  2.                 $this->bindParameters($stmt$params$types);
  3.                 $result $stmt->execute();
  4.             } else {
  5.                 $result $connection->query($sql);
  6.             }
  7.             return new Result($result$this);
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw new ParentAssociationCanNotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.             // Make sure our collection index will be loaded
  2.             $partial[$propertyName] = [];
  3.             $collectionClass EntityCollection::class;
  4.         }
  5.         $data $this->_read(
  6.             $fieldCriteria,
  7.             $referenceClass,
  8.             $context,
  9.             new $collectionClass(),
  10.             $referenceClass->getFields()->getBasicFields(),
  1.             );
  2.         }
  3.         // association should not be paginated > load data over foreign key condition
  4.         if ($fieldCriteria->getLimit() === null) {
  5.             $this->loadOneToManyWithoutPagination($definition$association$context$collection$fieldCriteria$partial);
  6.             return;
  7.         }
  8.         // load association paginated > use internal counter loops
  1.                 continue;
  2.             }
  3.             if ($association instanceof OneToManyAssociationField) {
  4.                 $this->loadOneToMany($criteria$definition$association$context$collection$partial[$association->getPropertyName()] ?? []);
  5.                 continue;
  6.             }
  7.             if ($association instanceof ManyToManyAssociationField) {
  1.         $rows $this->fetch($criteria$definition$context$fields$partial);
  2.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  3.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  4.         $hasIds = !empty($criteria->getIds());
  5.         if ($hasIds && empty($criteria->getSorting())) {
  6.             $collection->sortByIdArray($criteria->getIds());
  7.         }
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.     {
  2.         if (!$criteria->getTitle()) {
  3.             return $this->_search($criteria$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\Framework\DataAbstractionLayer\{closure} (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$context);
  4.         }
  5.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  6.     }
  7.     public function aggregate(Criteria $criteriaContext $context): AggregationResultCollection
  8.     {
  9.         $criteria = clone $criteria;
  1.         $criteria = new Criteria();
  2.         $criteria->setTitle('base-context-factory::taxes');
  3.         $criteria->addAssociation('rules.type');
  4.         /** @var TaxCollection $taxes */
  5.         $taxes $this->taxRepository->search($criteria$context)->getEntities();
  6.         return $taxes;
  7.     }
  8.     /**
  1.         /** @var CustomerGroupEntity $customerGroup */
  2.         $customerGroup $customerGroups->get($groupId);
  3.         // loads tax rules based on active customer and delivery address
  4.         $taxRules $this->getTaxRules($context);
  5.         // detect active payment method, first check if checkout defined other payment method, otherwise validate if customer logged in, at least use shop default
  6.         $payment $this->getPaymentMethod($options$context$salesChannel);
  7.         // detect active delivery method, at first checkout scope, at least shop default method
  1.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ]);
  2.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.             SalesChannelContextService::COUNTRY_STATE_ID => true,
  2.         ]);
  3.         $key implode('-', [$namemd5(json_encode($keys\JSON_THROW_ON_ERROR))]);
  4.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$salesChannelId$options) {
  5.             $context $this->tracer->trace($name, fn () => $this->decorated->create($salesChannelId$options));
  6.             $keys array_unique(array_merge(
  7.                 $this->tracer->get($name),
  8.                 [$nameCachedSalesChannelContextFactory::ALL_TAG]
  1.     }
  2.     public function create(string $tokenstring $salesChannelId, array $options = []): SalesChannelContext
  3.     {
  4.         // we split the context generation to allow caching of the base context
  5.         $base $this->baseContextFactory->create($salesChannelId$options);
  6.         // customer
  7.         $customer null;
  8.         if (\array_key_exists(SalesChannelContextService::CUSTOMER_ID$options) && $options[SalesChannelContextService::CUSTOMER_ID] !== null) {
  9.             // load logged in customer and set active addresses
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 416)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 96)
  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 -> Shopware\Core\Framework\Adapter\Cache\{closure} (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 -> Shopware\Storefront\Framework\Cache\{closure} (line 76)
  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.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  8.             ));
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\System\SalesChannel\Context\{closure} (line 70)
  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.      * {@inheritdoc}
  3.      */
  4.     public function get(string $key, callable $callbackfloat $beta null, array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         ksort($options);
  2.         $key implode('-', [$namemd5(json_encode($options\JSON_THROW_ON_ERROR))]);
  3.         $value $this->cache->get($key, function (ItemInterface $item) use ($name$token$salesChannelId$options) {
  4.             $context $this->tracer->trace($name, fn () => $this->getDecorated()->create($token$salesChannelId$options));
  5.             $keys array_unique(array_merge(
  6.                 $this->tracer->get($name),
  7.                 [$nameself::ALL_TAG]
  1.             if ($parameters->getCustomerId() !== null) {
  2.                 $session[self::CUSTOMER_ID] = $parameters->getCustomerId();
  3.             }
  4.             $context $this->factory->create($token$parameters->getSalesChannelId(), $session);
  5.             $this->eventDispatcher->dispatch(new SalesChannelContextCreatedEvent($context$token));
  6.             $result $this->ruleLoader->loadByToken($context$token);
  7.             $this->cartService->setCart($result->getCart());
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\System\SalesChannel\Context\{closure} (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.     }
  3.     public function get(SalesChannelContextServiceParameters $parameters): SalesChannelContext
  4.     {
  5.         return Profiler::trace('sales-channel-context', function () use ($parameters) {
  6.             $token $parameters->getToken();
  7.             $session $this->contextPersister->load($token$parameters->getSalesChannelId());
  8.             if ($session['expired'] ?? false) {
  1.             $usedContextToken,
  2.             $request->headers->get(PlatformRequest::HEADER_LANGUAGE_ID),
  3.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_CURRENCY_ID),
  4.             $request->attributes->get(SalesChannelRequest::ATTRIBUTE_DOMAIN_ID)
  5.         );
  6.         $context $this->contextService->get($contextServiceParameters);
  7.         // Validate if a customer login is required for the current request
  8.         $this->validateLogin($request$context);
  9.         // Update attributes and headers of the current request
  1.         ];
  2.     }
  3.     public function resolveContext(ControllerEvent $event): void
  4.     {
  5.         $this->requestContextResolver->resolve($event->getRequest());
  6.     }
  7. }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         if (false === $controller $this->resolver->getController($request)) {
  2.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  3.         }
  4.         $event = new ControllerEvent($this$controller$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER);
  6.         $controller $event->getController();
  7.         // controller arguments
  8.         $arguments $this->argumentResolver->getArguments($request$controller$event->getControllerReflector());
  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 $requestbool $catch false, ?Response $entry null)
  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$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  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.         } else {
  7.             $response $this->getKernel()->handle($request$type$catch);
  8.         }
  9.         if ($ips $response->headers->get(self::MAINTENANCE_WHITELIST_HEADER)) {
in vendor/shopware/core/Kernel.php -> handle (line 158)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  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 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php') in public/index.php (line 11)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Symfony\Component\HttpFoundation\Request;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 22:37:11 php User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead.
{
    "exception": {}
}
INFO 22:37:11 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 22:37:11 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 22:37:11 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 22:37:11 php User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead.
{
    "exception": {}
}
INFO 22:37:11 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5103e2"
    },
    "request_uri": "https://wildcard.shopware.agiqon.de/_profiler/5103e2?panel=exception&type=request",
    "method": "GET"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 22:37:11 php User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller_arguments" to listener "Container8AQJ3xm\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container8AQJ3xm\\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::setCanonicalUrl".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::setCanonicalUrl"
}
DEBUG 22:37:11 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::updateCacheControlForBrowser".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::updateCacheControlForBrowser"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller_arguments" to listener "Container8AQJ3xm\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container8AQJ3xm\\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCacheHeader".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCacheHeader"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 22:37:11 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCache".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCache"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 22:37:11 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 22:37:11 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 22:37:11 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 22:37:11 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 22:37:11 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 22:37:11 event Notified event "kernel.controller_arguments" to listener "Container8AQJ3xm\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container8AQJ3xm\\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments"
}
DEBUG 22:37:11 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 Traces 3

[3/3] InvalidFieldNameException
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:67
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
     (vendor/doctrine/dbal/src/Connection.php:1976)
  at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
     (vendor/doctrine/dbal/src/Connection.php:1918)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), '# base-context-factory::taxes::association::rules::readSELECT `tax_rule`.`id` as `tax_rule.id`, `tax_rule`.`tax_rule_type_id` as `tax_rule.taxRuleTypeId`, `tax_rule`.`country_id` as `tax_rule.countryId`, `tax_rule`.`tax_rate` as `tax_rule.taxRate`, `tax_rule`.`data` as `tax_rule.data`, `tax_rule`.`tax_id` as `tax_rule.taxId`, `tax_rule`.`active_from` as `tax_rule.activeFrom`, `tax_rule.type`.`id` as `tax_rule.type.id`, `tax_rule.type`.`technical_name` as `tax_rule.type.technicalName`, `tax_rule.type`.`position` as `tax_rule.type.position`, `tax_rule.type`.`created_at` as `tax_rule.type.createdAt`, `tax_rule.type`.`updated_at` as `tax_rule.type.updatedAt`, `tax_rule.type.translation.typeName`, COALESCE(`tax_rule.type.translation.typeName`,`tax_rule.type.translation.typeName`) as `tax_rule.type.typeName`, `tax_rule.type.translation.createdAt`, `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation.languageId`, `tax_rule`.`created_at` as `tax_rule.createdAt`, `tax_rule`.`updated_at` as `tax_rule.updatedAt` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule`.`tax_rule_type_id` = `tax_rule.type`.`id` LEFT JOIN (SELECT `tax_rule.type.translation`.tax_rule_type_id, `tax_rule.type.translation`.type_name as `tax_rule.type.translation.typeName`, `tax_rule.type.translation`.created_at as `tax_rule.type.translation.createdAt`, `tax_rule.type.translation`.updated_at as `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation`.tax_rule_type_id as `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation`.language_id as `tax_rule.type.translation.languageId` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation`.language_id = ?) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation`.`tax_rule_type_id` = `tax_rule.type`.`id` WHERE (`tax_rule`.`tax_id` IN (?, ?, ?, ?))', array('/�_��Mp�XT�|��', binary string, binary string, binary string, '�+���LA��w�O${�'), array(2, 2, 2, 2, 2))
     (vendor/doctrine/dbal/src/Connection.php:1111)
  at Doctrine\DBAL\Connection->executeQuery('# base-context-factory::taxes::association::rules::readSELECT `tax_rule`.`id` as `tax_rule.id`, `tax_rule`.`tax_rule_type_id` as `tax_rule.taxRuleTypeId`, `tax_rule`.`country_id` as `tax_rule.countryId`, `tax_rule`.`tax_rate` as `tax_rule.taxRate`, `tax_rule`.`data` as `tax_rule.data`, `tax_rule`.`tax_id` as `tax_rule.taxId`, `tax_rule`.`active_from` as `tax_rule.activeFrom`, `tax_rule.type`.`id` as `tax_rule.type.id`, `tax_rule.type`.`technical_name` as `tax_rule.type.technicalName`, `tax_rule.type`.`position` as `tax_rule.type.position`, `tax_rule.type`.`created_at` as `tax_rule.type.createdAt`, `tax_rule.type`.`updated_at` as `tax_rule.type.updatedAt`, `tax_rule.type.translation.typeName`, COALESCE(`tax_rule.type.translation.typeName`,`tax_rule.type.translation.typeName`) as `tax_rule.type.typeName`, `tax_rule.type.translation.createdAt`, `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation.languageId`, `tax_rule`.`created_at` as `tax_rule.createdAt`, `tax_rule`.`updated_at` as `tax_rule.updatedAt` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule`.`tax_rule_type_id` = `tax_rule.type`.`id` LEFT JOIN (SELECT `tax_rule.type.translation`.tax_rule_type_id, `tax_rule.type.translation`.type_name as `tax_rule.type.translation.typeName`, `tax_rule.type.translation`.created_at as `tax_rule.type.translation.createdAt`, `tax_rule.type.translation`.updated_at as `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation`.tax_rule_type_id as `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation`.language_id as `tax_rule.type.translation.languageId` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation`.language_id = ?) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation`.`tax_rule_type_id` = `tax_rule.type`.`id` WHERE (`tax_rule`.`tax_id` IN (?, ?, ?, ?))', array('/�_��Mp�XT�|��', binary string, binary string, binary string, '�+���LA��w�O${�'), array(2, 2, 2, 2, 2), null)
     (vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:311)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch(object(Criteria), object(TaxRuleDefinition), object(Context), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxRuleDefinition), object(Context), object(TaxRuleCollection), object(CompiledFieldCollection), false, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:494)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToManyWithoutPagination(object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), object(Criteria), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:437)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToMany(object(Criteria), object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:1234)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetchAssociations(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:137)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), true, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read(object(TaxDefinition), object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:212)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:240)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->Shopware\Core\Framework\DataAbstractionLayer\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('base-context-factory::taxes', object(Closure), 'repository')
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search(object(Criteria), object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:143)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->getTaxRules(object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:100)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:54)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextFactory.php:60)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:46)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:88)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('sales-channel-context', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:59)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->get(object(SalesChannelContextServiceParameters))
     (vendor/shopware/core/Framework/Routing/SalesChannelRequestContextResolver.php:63)
  at Shopware\Core\Framework\Routing\SalesChannelRequestContextResolver->resolve(object(Request))
     (vendor/shopware/core/Framework/Routing/ContextResolverListener.php:34)
  at Shopware\Core\Framework\Routing\ContextResolverListener->resolveContext(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.controller', object(ControllerEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:482)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:457)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:355)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:225)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:158)
  at Shopware\Core\Kernel->handle(object(Request))
     (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/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php')
     (public/index.php:11)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
     (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:132)
  at Doctrine\DBAL\Driver\PDO\Statement->execute(null)
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute(null)
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
     (vendor/doctrine/dbal/src/Connection.php:1104)
  at Doctrine\DBAL\Connection->executeQuery('# base-context-factory::taxes::association::rules::readSELECT `tax_rule`.`id` as `tax_rule.id`, `tax_rule`.`tax_rule_type_id` as `tax_rule.taxRuleTypeId`, `tax_rule`.`country_id` as `tax_rule.countryId`, `tax_rule`.`tax_rate` as `tax_rule.taxRate`, `tax_rule`.`data` as `tax_rule.data`, `tax_rule`.`tax_id` as `tax_rule.taxId`, `tax_rule`.`active_from` as `tax_rule.activeFrom`, `tax_rule.type`.`id` as `tax_rule.type.id`, `tax_rule.type`.`technical_name` as `tax_rule.type.technicalName`, `tax_rule.type`.`position` as `tax_rule.type.position`, `tax_rule.type`.`created_at` as `tax_rule.type.createdAt`, `tax_rule.type`.`updated_at` as `tax_rule.type.updatedAt`, `tax_rule.type.translation.typeName`, COALESCE(`tax_rule.type.translation.typeName`,`tax_rule.type.translation.typeName`) as `tax_rule.type.typeName`, `tax_rule.type.translation.createdAt`, `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation.languageId`, `tax_rule`.`created_at` as `tax_rule.createdAt`, `tax_rule`.`updated_at` as `tax_rule.updatedAt` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule`.`tax_rule_type_id` = `tax_rule.type`.`id` LEFT JOIN (SELECT `tax_rule.type.translation`.tax_rule_type_id, `tax_rule.type.translation`.type_name as `tax_rule.type.translation.typeName`, `tax_rule.type.translation`.created_at as `tax_rule.type.translation.createdAt`, `tax_rule.type.translation`.updated_at as `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation`.tax_rule_type_id as `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation`.language_id as `tax_rule.type.translation.languageId` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation`.language_id = ?) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation`.`tax_rule_type_id` = `tax_rule.type`.`id` WHERE (`tax_rule`.`tax_id` IN (?, ?, ?, ?))', array('/�_��Mp�XT�|��', binary string, binary string, binary string, '�+���LA��w�O${�'), array(2, 2, 2, 2, 2), null)
     (vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:311)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch(object(Criteria), object(TaxRuleDefinition), object(Context), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxRuleDefinition), object(Context), object(TaxRuleCollection), object(CompiledFieldCollection), false, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:494)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToManyWithoutPagination(object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), object(Criteria), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:437)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToMany(object(Criteria), object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:1234)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetchAssociations(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:137)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), true, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read(object(TaxDefinition), object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:212)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:240)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->Shopware\Core\Framework\DataAbstractionLayer\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('base-context-factory::taxes', object(Closure), 'repository')
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search(object(Criteria), object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:143)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->getTaxRules(object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:100)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:54)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextFactory.php:60)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:46)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:88)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('sales-channel-context', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:59)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->get(object(SalesChannelContextServiceParameters))
     (vendor/shopware/core/Framework/Routing/SalesChannelRequestContextResolver.php:63)
  at Shopware\Core\Framework\Routing\SalesChannelRequestContextResolver->resolve(object(Request))
     (vendor/shopware/core/Framework/Routing/ContextResolverListener.php:34)
  at Shopware\Core\Framework\Routing\ContextResolverListener->resolveContext(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.controller', object(ControllerEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:482)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:457)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:355)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:225)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:158)
  at Shopware\Core\Kernel->handle(object(Request))
     (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/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php')
     (public/index.php:11)                
[1/3] PDOException
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tax_rule.active_from' in 'SELECT'

  at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130
  at PDOStatement->execute(null)
     (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130)
  at Doctrine\DBAL\Driver\PDO\Statement->execute(null)
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute(null)
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
     (vendor/doctrine/dbal/src/Connection.php:1104)
  at Doctrine\DBAL\Connection->executeQuery('# base-context-factory::taxes::association::rules::readSELECT `tax_rule`.`id` as `tax_rule.id`, `tax_rule`.`tax_rule_type_id` as `tax_rule.taxRuleTypeId`, `tax_rule`.`country_id` as `tax_rule.countryId`, `tax_rule`.`tax_rate` as `tax_rule.taxRate`, `tax_rule`.`data` as `tax_rule.data`, `tax_rule`.`tax_id` as `tax_rule.taxId`, `tax_rule`.`active_from` as `tax_rule.activeFrom`, `tax_rule.type`.`id` as `tax_rule.type.id`, `tax_rule.type`.`technical_name` as `tax_rule.type.technicalName`, `tax_rule.type`.`position` as `tax_rule.type.position`, `tax_rule.type`.`created_at` as `tax_rule.type.createdAt`, `tax_rule.type`.`updated_at` as `tax_rule.type.updatedAt`, `tax_rule.type.translation.typeName`, COALESCE(`tax_rule.type.translation.typeName`,`tax_rule.type.translation.typeName`) as `tax_rule.type.typeName`, `tax_rule.type.translation.createdAt`, `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation.languageId`, `tax_rule`.`created_at` as `tax_rule.createdAt`, `tax_rule`.`updated_at` as `tax_rule.updatedAt` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule`.`tax_rule_type_id` = `tax_rule.type`.`id` LEFT JOIN (SELECT `tax_rule.type.translation`.tax_rule_type_id, `tax_rule.type.translation`.type_name as `tax_rule.type.translation.typeName`, `tax_rule.type.translation`.created_at as `tax_rule.type.translation.createdAt`, `tax_rule.type.translation`.updated_at as `tax_rule.type.translation.updatedAt`, `tax_rule.type.translation`.tax_rule_type_id as `tax_rule.type.translation.taxRuleTypeId`, `tax_rule.type.translation`.language_id as `tax_rule.type.translation.languageId` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation`.language_id = ?) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation`.`tax_rule_type_id` = `tax_rule.type`.`id` WHERE (`tax_rule`.`tax_id` IN (?, ?, ?, ?))', array('/�_��Mp�XT�|��', binary string, binary string, binary string, '�+���LA��w�O${�'), array(2, 2, 2, 2, 2), null)
     (vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:311)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch(object(Criteria), object(TaxRuleDefinition), object(Context), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxRuleDefinition), object(Context), object(TaxRuleCollection), object(CompiledFieldCollection), false, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:494)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToManyWithoutPagination(object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), object(Criteria), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:437)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->loadOneToMany(object(Criteria), object(TaxDefinition), object(OneToManyAssociationField), object(Context), object(TaxCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:1234)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetchAssociations(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:137)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read(object(Criteria), object(TaxDefinition), object(Context), object(TaxCollection), object(CompiledFieldCollection), true, array())
     (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read(object(TaxDefinition), object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:212)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:240)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search(object(Criteria), object(Context))
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->Shopware\Core\Framework\DataAbstractionLayer\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('base-context-factory::taxes', object(Closure), 'repository')
     (vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:65)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search(object(Criteria), object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:143)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->getTaxRules(object(Context))
     (vendor/shopware/core/System/SalesChannel/Context/BaseContextFactory.php:100)
  at Shopware\Core\System\SalesChannel\Context\BaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:55)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('base-context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedBaseContextFactory.php:54)
  at Shopware\Core\System\SalesChannel\Context\CachedBaseContextFactory->create('60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextFactory.php:60)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:416)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:96)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:76)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:47)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->Shopware\Core\System\SalesChannel\Context\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:70)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet(object(CacheDecorator), 'context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:33)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get('context-factory-60e76e3ef85f47f4a2c8a6ea1d0f47de-64f26b65fd3bb2661f3263ffe7ea7f13', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/CachedSalesChannelContextFactory.php:46)
  at Shopware\Core\System\SalesChannel\Context\CachedSalesChannelContextFactory->create('BMljoAOQI5ISIerfmtv1oQjmqFHk7syk', '60e76e3ef85f47f4a2c8a6ea1d0f47de', array('currencyId' => 'b7d2554b0ce847cd82f3ac9bd1c0dfca', 'domainId' => '6b6b4818a2c3421dac975bab75758775', 'languageId' => '2fbb5fe2e29a4d70aa5854ce7ce3e20b'))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:88)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->Shopware\Core\System\SalesChannel\Context\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('sales-channel-context', object(Closure))
     (vendor/shopware/core/System/SalesChannel/Context/SalesChannelContextService.php:59)
  at Shopware\Core\System\SalesChannel\Context\SalesChannelContextService->get(object(SalesChannelContextServiceParameters))
     (vendor/shopware/core/Framework/Routing/SalesChannelRequestContextResolver.php:63)
  at Shopware\Core\Framework\Routing\SalesChannelRequestContextResolver->resolve(object(Request))
     (vendor/shopware/core/Framework/Routing/ContextResolverListener.php:34)
  at Shopware\Core\Framework\Routing\ContextResolverListener->resolveContext(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.controller', object(ControllerEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:482)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:457)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:355)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:225)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:158)
  at Shopware\Core\Kernel->handle(object(Request))
     (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/share/wildcard.shopware.agiqon.de/shopware/vendor/autoload_runtime.php')
     (public/index.php:11)