Exceptions
Exception
Shopware\Core\Framework\DataAbstractionLayer\ InvalidCriteriaIdsException
Show exception properties
Shopware\Core\Framework\DataAbstractionLayer\InvalidCriteriaIdsException {#22903 -statusCode: 500 -headers: [] #parameters: array:2 [ "ids" => """ Array\n (\n )\n """ "reason" => "Ids should not be empty" ] #statusCode: 500 #errorCode: "FRAMEWORK__INVALID_CRITERIA_IDS" }
/**
* @param array<mixed> $ids
*/
public static function invalidCriteriaIds(array $ids, string $reason): self
{
return new InvalidCriteriaIdsException(
Response::HTTP_INTERNAL_SERVER_ERROR,
self::INVALID_CRITERIA_IDS,
'Invalid ids provided in criteria. {{ reason }}. Ids: {{ ids }}.',
['ids' => print_r($ids, true), 'reason' => $reason]
);
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php
::
invalidCriteriaIds
(line 689)
* @param array<mixed> $ids
*/
private function validateIds(array $ids): void
{
if (\count($ids) === 0) {
throw DataAbstractionLayerException::invalidCriteriaIds($ids, 'Ids should not be empty');
}
foreach ($ids as $id) {
if (!\is_string($id) && !\is_array($id)) {
throw DataAbstractionLayerException::invalidCriteriaIds($ids, 'Ids should be a list of strings or a list of key value pairs, for entities with combined primary keys');
in
vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php
->
validateIds
(line 167)
return;
}
$ids = array_filter($ids);
$this->validateIds($ids);
$this->ids = $ids;
}
public function __toString(): string
Criteria->__construct()
in
custom/plugins/BelVGSimilarProducts/src/Subscriber/Storefront/ProductPageLoaderSubscriber.php
(line 96)
$products = $event->getResult()->getEntities();
$context = $event->getSalesChannelContext()->getContext();
foreach ($products as $eventProduct) {
$manufacturer = $eventProduct->getManufacturer();
$manufacturerCriteria = new Criteria([$manufacturer->getMediaId()]);
$media = $this->mediaRepository->search($manufacturerCriteria, $event->getContext())->first();
$eventProduct->addExtension('manufacturerMedia', $media);
$criteria = new Criteria([$eventProduct->getId()]);
$criteria->addAssociation('translations');
$product = $this->productRepository->search($criteria, $context)->first();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
addSimilarProductsToListing
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php
->
dispatch
(line 40)
*
* @return TEvent
*/
public function dispatch(object $event, ?string $eventName = null): object
{
$event = $this->dispatcher->dispatch($event, $eventName);
if (!$event instanceof FlowEventAware) {
return $event;
}
in
vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php
->
dispatch
(line 29)
) {
}
public function dispatch(object $event, ?string $eventName = null): object
{
$event = $this->dispatcher->dispatch($event, $eventName);
// @deprecated tag:v6.7.0 - remove DISABLE_EXTENSIONS from if condition
if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS', false) || !HookableEventFactory::isHookable($event)) {
return $event;
}
in
vendor/shopware/core/Framework/Event/NestedEventDispatcher.php
->
dispatch
(line 31)
}
$this->dispatch($nested, $name);
}
}
return $this->dispatcher->dispatch($event, $eventName);
}
/**
* @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
*/
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 122)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/shopware/core/Content/Product/SalesChannel/Listing/ResolveCriteriaProductListingRoute.php
->
dispatch
(line 54)
$response->getResult()->addCurrentFilter('navigationId', $categoryId);
$this->processor->process($request, $response->getResult(), $context);
$this->eventDispatcher->dispatch(
new ProductListingResultEvent($request, $response->getResult(), $context)
);
$response->getResult()->getAvailableSortings()->removeByKey(
ResolvedCriteriaProductSearchRoute::DEFAULT_SEARCH_SORT
in
vendor/store.shopware.com/moorlfoundation/src/Core/Content/Product/SalesChannel/Listing/FoundationProductListingRoute.php
->
load
(line 40)
return $entityListing->listingRoute($criteria, $categoryId);
}
try {
return $this->decorated->load($categoryId, $request, $context, $criteria);
} catch (ProductSortingNotFoundException $exception) {
throw new \Exception('Product listing is not combinable with another listing. Please leave the product listing alone.');
}
}
}
in
vendor/shopware/core/Content/Product/Cms/ProductListingCmsElementResolver.php
->
load
(line 76)
$criteria = new Criteria();
$criteria->setTitle('cms::product-listing');
$listing = $this->listingRoute
->load($navigationId, $request, $context, $criteria)
->getResult();
$data->setListing($listing);
}
in
vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php
->
enrich
(line 138)
$result = new ElementDataCollection();
$this->mapSearchResults($result, $slot, $criteriaList, $criteriaResult);
$this->mapEntities($result, $slot, $criteriaList, $identifierResult);
$resolver->enrich($slot, $resolverContext, $result);
// replace with return value from enrich(), because it's allowed to change the entity type
$slots->set($slotId, $slot);
}
in
vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php
->
enrichCmsSlots
(line 44)
public function publish(string $name, Extension $extension, callable $function): mixed
{
$this->dispatcher->dispatch($extension, self::pre($name));
if (!$extension->isPropagationStopped()) {
$extension->result = $function(...$extension->getParams());
}
$extension->resetPropagation();
$this->dispatcher->dispatch($extension, self::post($name));
in
vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php
->
publish
(line 67)
// fetch data from storage
$identifierResult = $this->fetchByIdentifier($directReads, $resolverContext->getSalesChannelContext());
$criteriaResult = $this->fetchByCriteria($searches, $resolverContext->getSalesChannelContext());
return $this->extensions->publish(
name: CmsSlotsDataEnrichExtension::NAME,
extension: new CmsSlotsDataEnrichExtension(
slots: $slots,
criteriaList: $criteriaList,
identifierResult: $identifierResult,
in
vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php
->
__resolve
(line 44)
public function publish(string $name, Extension $extension, callable $function): mixed
{
$this->dispatcher->dispatch($extension, self::pre($name));
if (!$extension->isPropagationStopped()) {
$extension->result = $function(...$extension->getParams());
}
$extension->resetPropagation();
$this->dispatcher->dispatch($extension, self::post($name));
in
vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php
->
publish
(line 82)
);
}
public function resolve(CmsSlotCollection $slots, ResolverContext $resolverContext): CmsSlotCollection
{
return $this->extensions->publish(
name: CmsSlotsDataResolveExtension::NAME,
extension: new CmsSlotsDataResolveExtension($slots, $resolverContext),
function: $this->__resolve(...),
);
}
in
vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php
->
resolve
(line 112)
}
private function loadSlotData(CmsSectionCollection $sections, ResolverContext $resolverContext): void
{
$blocks = $sections->getBlocks();
$slots = $this->slotDataResolver->resolve($blocks->getSlots(), $resolverContext);
$blocks->setSlots($slots);
}
/**
in
vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php
->
loadSlotData
(line 99)
// step 4, overwrite slot config
$this->overwriteSlotConfig($sections, $overwrite);
// step 5, resolve slot data
$this->loadSlotData($sections, $resolverContext);
}
$this->dispatcher->dispatch(new CmsPageLoadedEvent($request, $pages, $context));
$this->dispatcher->dispatch(new AddCacheTagEvent(...$this->extractProductIds($pages)));
in
vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php
->
load
(line 85)
return new CategoryRouteResponse($category);
}
$resolverContext = new EntityResolverContext($context, $request, $this->categoryDefinition, $category);
$pages = $this->cmsPageLoader->load(
$request,
$this->createCriteria($pageId, $request),
$context,
$slotConfig,
$resolverContext
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
->
load
(line 79)
}
$value = $this->cache->get($key, function (ItemInterface $item) use ($navigationId, $request, $context) {
$name = self::buildName($navigationId);
$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId, $request, $context));
$item->tag($this->generateTags($navigationId, $response, $request, $context));
return CacheValueCompressor::compress($response);
});
in
vendor/shopware/core/System/SystemConfig/SystemConfigService.php
->
Shopware\Core\Content\Category\SalesChannel\{closure}
(line 451)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/pickware/shopware-extensions-bundle/src/Mail/SystemConfigServiceDecorator.php
->
trace
(line 140)
$this->decoratedSystemConfigService->deleteExtensionConfiguration($extensionName, $config);
}
public function trace(string $key, Closure $param)
{
return $this->decoratedSystemConfigService->trace($key, $param);
}
public function getTrace(string $key): array
{
return $this->decoratedSystemConfigService->getTrace($key);
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);
}
public function trace(string $key, \Closure $param)
{
return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
}
public function get(string $key): array
{
return array_merge(
in
vendor/shopware/core/Framework/Adapter/Translation/Translator.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 101)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);
}
public function trace(string $key, \Closure $param)
{
return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
}
public function get(string $key): array
{
return array_merge(
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 56)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 35)
throw new DecorationPatternException(self::class);
}
public function trace(string $key, \Closure $param)
{
return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key, $param)));
}
public function get(string $key): array
{
return array_merge(
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 35)
return $this->decorated;
}
public function trace(string $key, \Closure $param)
{
return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));
}
public function get(string $key): array
{
return array_unique(array_merge(
in
vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php
->
Shopware\Storefront\Framework\Cache\{closure}
(line 97)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 35)
return $this->decorated;
}
public function trace(string $key, \Closure $param)
{
return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key, $param));
}
public function get(string $key): array
{
return array_unique(array_merge(
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
->
trace
(line 79)
}
$value = $this->cache->get($key, function (ItemInterface $item) use ($navigationId, $request, $context) {
$name = self::buildName($navigationId);
$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId, $request, $context));
$item->tag($this->generateTags($navigationId, $response, $request, $context));
return CacheValueCompressor::compress($response);
});
in
vendor/symfony/cache-contracts/CacheTrait.php
->
Shopware\Core\Content\Category\SalesChannel\{closure}
(line 64)
}
}
if ($recompute) {
$save = true;
$item->set($callback($item, $save));
if ($save) {
$pool->save($item);
}
}
in
vendor/symfony/cache-contracts/CacheTrait.php
->
doGet
(line 30)
*/
trait CacheTrait
{
public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed
{
return $this->doGet($this, $key, $callback, $beta, $metadata);
}
public function delete(string $key): bool
{
return $this->deleteItem($key);
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
->
get
(line 76)
if ($key === null) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
$value = $this->cache->get($key, function (ItemInterface $item) use ($navigationId, $request, $context) {
$name = self::buildName($navigationId);
$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId, $request, $context));
$item->tag($this->generateTags($navigationId, $response, $request, $context));
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Core\Content\Category\SalesChannel\{closure}
(line 67)
try {
foreach (self::$profilers as $profiler) {
$profiler->start($name, $category, $tags);
}
$result = $closure();
} finally {
foreach (self::$profilers as $profiler) {
$profiler->stop($name);
}
}
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
::
trace
(line 65)
{
if (Feature::isActive('cache_rework')) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
return Profiler::trace('category-route', function () use ($navigationId, $request, $context) {
if ($context->hasState(...$this->states)) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
$key = $this->generateKey($navigationId, $request, $context);
in
vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php
->
load
(line 70)
)]
)]
#[Route(path: '/store-api/category/{navigationId}', name: 'store-api.category.detail', methods: ['GET', 'POST'])]
public function load(string $navigationId, Request $request, SalesChannelContext $context): CategoryRouteResponse
{
$response = $this->inner->load($navigationId, $request, $context);
$route = $request->attributes->get('_route');
if (!\is_string($route) || empty($route)) {
return $response;
in
vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php
->
load
(line 41)
$page = NavigationPage::createFrom($page);
$navigationId = $request->get('navigationId', $context->getSalesChannel()->getNavigationCategoryId());
$category = $this->cmsPageRoute
->load($navigationId, $request, $context)
->getCategory();
if (!$category->getActive()) {
throw CategoryException::categoryNotFound($category->getId());
}
in
vendor/shopware/storefront/Controller/NavigationController.php
->
load
(line 49)
}
#[Route(path: '/navigation/{navigationId}', name: 'frontend.navigation.page', options: ['seo' => true], defaults: ['_httpCache' => true], methods: ['GET'])]
public function index(SalesChannelContext $context, Request $request): Response
{
$page = $this->navigationPageLoader->load($request, $context);
$this->hook(new NavigationPageLoadedHook($page, $context));
return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 72)
$this->dispatcher->dispatch($event);
return $event->getResponse();
}
return parent::handle($request, $type, $catch);
}
}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 460)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
{
$this->surrogate?->addSurrogateCapability($request);
// always a "master" request (as the real master request can be in cache)
$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
/*
* Support stale-if-error given on Responses or as a config option.
* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
* Cache-Control directives) that
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 437)
// avoid that the backend sends no content
$subRequest->headers->remove('If-Modified-Since');
$subRequest->headers->remove('If-None-Match');
$response = $this->forward($subRequest, $catch);
if ($response->isCacheable()) {
$this->store($request, $response);
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
fetch
(line 335)
}
if (null === $entry) {
$this->record($request, 'miss');
return $this->fetch($request, $catch);
}
if (!$this->isFreshEnough($request, $entry)) {
$this->record($request, 'stale');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
lookup
(line 213)
reload the cache by fetching a fresh response and caching it (if possible).
*/
$this->record($request, 'reload');
$response = $this->fetch($request, $catch);
} else {
$response = $this->lookup($request, $catch);
}
$this->restoreResponseBody($request, $response);
if (HttpKernelInterface::MAIN_REQUEST === $type) {
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.
// sub requests are requests, which are forwarded to the kernel inside the php stack
// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
if ($type === HttpKernelInterface::MAIN_REQUEST) {
$response = parent::handle($request, $type, $catch);
} elseif ($request->attributes->has('_sw_esi')) {
$response = parent::handle($request, $type, $catch);
} else {
$response = $this->getKernel()->handle($request, $type, $catch);
}
in
vendor/shopware/core/Kernel.php
->
handle
(line 156)
{
if (!$this->booted) {
$this->boot();
}
return $this->getHttpKernel()->handle($request, $type, $catch);
}
public function boot(): void
{
if ($this->booted === true) {
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/html2/hungeling/public_html/vendor/autoload_runtime.php')
in
public/index.php
(line 10)
use Shopware\Core\Installer\InstallerKernel;
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
require_once __DIR__ . '/../vendor/autoload_runtime.php';
if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
}
Logs
Level | Channel | Message |
---|---|---|
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator". { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::get()" might add "array|bool|float|int|string|null" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::all()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator". { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::getDomain()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator". { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::trace()" might add "TReturn" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 11:54:52 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "f0b682" }, "request_uri": "https://hungeling.belvg.dev/_profiler/f0b682?panel=exception&type=request", "method": "GET" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
INFO 11:54:52 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Hungeling\Theme\Twig\ProductById" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "MoorlFoundation\Core\Framework\Twig\ListingExtension" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 11:54:52 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Context\SalesChannelContextPersister::__construct()" method is considered internal. It may change without further notice. You should not extend it from "BelVG\RecentlyViewedProduct\Core\System\SalesChannel\Context\SalesChannelContextPersisterDecorated". { "exception": {} } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke". { "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke" } |
DEBUG 11:54:52 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke". { "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent", "listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". { "event": "kernel.response", "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\ControllerExceptionHandling\JsonApiStashedErrorHandler::onResponseEvent". { "event": "kernel.response", "listener": "Pickware\\ApiErrorHandlingBundle\\ControllerExceptionHandling\\JsonApiStashedErrorHandler::onResponseEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\JsonApiErrorTranslating\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent". { "event": "kernel.response", "listener": "Pickware\\ApiErrorHandlingBundle\\JsonApiErrorTranslating\\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onResponse". { "event": "kernel.response", "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 11:54:52 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 11:54:52 | 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 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 11:54:52 | 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 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 11:54:52 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
Stack Trace
InvalidCriteriaIdsException
|
---|
Shopware\Core\Framework\DataAbstractionLayer\InvalidCriteriaIdsException: Invalid ids provided in criteria. Ids should not be empty. Ids: Array ( ) . at vendor/shopware/core/Framework/DataAbstractionLayer/DataAbstractionLayerException.php:146 at Shopware\Core\Framework\DataAbstractionLayer\DataAbstractionLayerException::invalidCriteriaIds() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php:689) at Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria->validateIds() (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php:167) at Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria->__construct() (custom/plugins/BelVGSimilarProducts/src/Subscriber/Storefront/ProductPageLoaderSubscriber.php:96) at BelVG\SimilarProducts\Subscriber\Storefront\ProductPageLoaderSubscriber->addSimilarProductsToListing() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:40) at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch() (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:29) at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch() (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31) at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/shopware/core/Content/Product/SalesChannel/Listing/ResolveCriteriaProductListingRoute.php:54) at Shopware\Core\Content\Product\SalesChannel\Listing\ResolveCriteriaProductListingRoute->load() (vendor/store.shopware.com/moorlfoundation/src/Core/Content/Product/SalesChannel/Listing/FoundationProductListingRoute.php:40) at MoorlFoundation\Core\Content\Product\SalesChannel\Listing\FoundationProductListingRoute->load() (vendor/shopware/core/Content/Product/Cms/ProductListingCmsElementResolver.php:76) at Shopware\Core\Content\Product\Cms\ProductListingCmsElementResolver->enrich() (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:138) at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->enrichCmsSlots() (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44) at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish() (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:67) at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->__resolve() (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44) at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish() (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:82) at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->resolve() (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:112) at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->loadSlotData() (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:99) at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->load() (vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php:85) at Shopware\Core\Content\Category\SalesChannel\CategoryRoute->load() (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:79) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}() (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:451) at Shopware\Core\System\SystemConfig\SystemConfigService->trace() (vendor/pickware/shopware-extensions-bundle/src/Mail/SystemConfigServiceDecorator.php:140) at Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}() (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:101) at Shopware\Core\Framework\Adapter\Translation\Translator->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}() (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56) at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace() (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35) at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}() (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:97) at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace() (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35) at Shopware\Storefront\Framework\Cache\CacheTracer->trace() (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:79) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}() (vendor/symfony/cache-contracts/CacheTrait.php:64) at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet() (vendor/symfony/cache-contracts/CacheTrait.php:30) at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get() (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:76) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}() (vendor/shopware/core/Profiling/Profiler.php:67) at Shopware\Core\Profiling\Profiler::trace() (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:65) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->load() (vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php:70) at Swag\PayPal\Checkout\ExpressCheckout\SalesChannel\ExpressCategoryRoute->load() (vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php:41) at Shopware\Storefront\Page\Navigation\NavigationPageLoader->load() (vendor/shopware/storefront/Controller/NavigationController.php:49) at Shopware\Storefront\Controller\NavigationController->index() (vendor/symfony/http-kernel/HttpKernel.php:183) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72) at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle() (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86) at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:460) at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:437) at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:335) at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup() (vendor/symfony/http-kernel/HttpCache/HttpCache.php:213) at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle() (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65) at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle() (vendor/shopware/core/Kernel.php:156) at Shopware\Core\Kernel->handle() (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/html2/hungeling/public_html/vendor/autoload_runtime.php') (public/index.php:10) |