Symfony Exception

ErrorException LogicException

HTTP 500 Internal Server Error

Cannot change the name of an active session.

Exceptions 2

LogicException

  1.      * @throws \LogicException
  2.      */
  3.     public function setName(string $name)
  4.     {
  5.         if ($this->isActive()) {
  6.             throw new \LogicException('Cannot change the name of an active session.');
  7.         }
  8.         session_name($name);
  9.     }
  10. }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function setName(string $name)
  5.     {
  6.         $this->saveHandler->setName($name);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function setName(string $name)
  5.     {
  6.         $this->storage->setName($name);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         }
  2.         $session $master->getSession();
  3.         if (!$session->isStarted()) {
  4.             $session->setName('session-');
  5.             $session->start();
  6.             $session->set('sessionId'$session->getId());
  7.         }
  8.         $salesChannelId $master->attributes->get(PlatformRequest::ATTRIBUTE_SALES_CHANNEL_ID);
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  8.             return $event;
  9.         }
  1.         $this->definitionRegistry $definitionRegistry;
  2.     }
  3.     public function dispatch($event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (Feature::isActive('FEATURE_NEXT_17858')) {
  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.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $throwable $event->getThrowable();
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), $e->getFile(), $e->getLine()));
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  8.             return $event;
  9.         }
  1.         $this->definitionRegistry $definitionRegistry;
  2.     }
  3.     public function dispatch($event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (Feature::isActive('FEATURE_NEXT_17858')) {
  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.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.     {
  2.         if (!$request $request ?: $this->requestStack->getMainRequest()) {
  3.             throw $exception;
  4.         }
  5.         $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         $response->sendHeaders();
  7.         $response->sendContent();
  8.         $this->terminate($request$response);
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /data/www/allnet.co.hu/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 607)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException()

ErrorException

Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)

  1.      * @return int|false
  2.      */
  3.     #[\ReturnTypeWillChange]
  4.     public function gc($maxlifetime)
  5.     {
  6.         return $this->handler->gc($maxlifetime);
  7.     }
  8. }
  1.      * @return int|false
  2.      */
  3.     #[\ReturnTypeWillChange]
  4.     public function gc($maxlifetime)
  5.     {
  6.         return $this->handler->gc($maxlifetime);
  7.     }
  8.     /**
  9.      * @return bool
  10.      */
SessionHandlerProxy->gc()
  1.             // the session ID in the header is invalid, create a new one
  2.             session_id(session_create_id());
  3.         }
  4.         // ok to try and start the session
  5.         if (!session_start()) {
  6.             throw new \RuntimeException('Failed to start the session.');
  7.         }
  8.         if (null !== $this->emulateSameSite) {
  9.             $originalCookie SessionUtils::popSessionCookie(session_name(), session_id());
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function start()
  5.     {
  6.         return $this->storage->start();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      */
  2.     public function hasToken(string $tokenId)
  3.     {
  4.         $session $this->getSession();
  5.         if (!$session->isStarted()) {
  6.             $session->start();
  7.         }
  8.         return $session->has($this->namespace.'/'.$tokenId);
  9.     }
  1.      * {@inheritdoc}
  2.      */
  3.     public function getToken(string $tokenId)
  4.     {
  5.         $namespacedId $this->getNamespace().$tokenId;
  6.         if ($this->storage->hasToken($namespacedId)) {
  7.             $value $this->storage->getToken($namespacedId);
  8.         } else {
  9.             $value $this->generator->generateToken();
  10.             $this->storage->setToken($namespacedId$value);
  1.         return $response;
  2.     }
  3.     private function getToken(string $intent): string
  4.     {
  5.         return $this->csrfTokenManager->getToken($intent)->getValue();
  6.     }
  7.     private function createSession(Request $request): SessionInterface
  8.     {
  9.         $session = new Session($this->sessionFactory->createStorage($request));
  1.                 $intent $matches['intent'];
  2.                 $token $processedIntents[$intent] ?? null;
  3.                 // Don't generate the token and set the cookie again
  4.                 if ($token === null) {
  5.                     $token $this->getToken($intent);
  6.                     $cookie Cookie::create('csrf[' $intent ']'$token);
  7.                     $cookie->setSecureDefault($request->isSecure());
  8.                     $response->headers->setCookie($cookie);
  9.                     $processedIntents[$intent] = $token;
  10.                 }
CsrfPlaceholderHandler->Shopware\Storefront\Framework\Csrf\{closure}()
  1.         $processedIntents = [];
  2.         // https://regex101.com/r/fefx3V/1
  3.         $content preg_replace_callback(
  4.             '/' self::CSRF_PLACEHOLDER '(?<intent>[^#]*)#/',
  5.             function ($matches) use ($response$request, &$processedIntents) {
  6.                 $intent $matches['intent'];
  7.                 $token $processedIntents[$intent] ?? null;
  8.                 // Don't generate the token and set the cookie again
  1.     }
  2.     public function replaceCsrfToken(BeforeSendResponseEvent $event): void
  3.     {
  4.         $event->setResponse(
  5.             $this->csrfPlaceholderHandler->replaceCsrfToken($event->getResponse(), $event->getRequest())
  6.         );
  7.     }
  8.     public function addHreflang(StorefrontRenderEvent $event): void
  9.     {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch($event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  8.             return $event;
  9.         }
  1.         $this->definitionRegistry $definitionRegistry;
  2.     }
  3.     public function dispatch($event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (Feature::isActive('FEATURE_NEXT_17858')) {
  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.         $response $kernel->handle($transformed$type$catch);
  2.         // fire event to trigger runtime events like seo url headers
  3.         $event = new BeforeSendResponseEvent($transformed$response);
  4.         $container->get('event_dispatcher')->dispatch($event);
  5.         return new HttpKernelResult($transformed$event->getResponse());
  6.     }
  7.     private function createKernel(): KernelInterface
  1.         if (!\is_bool($catch)) {
  2.             Feature::triggerDeprecationOrThrow('v6.5.0.0''The third parameter `$catch` of `HttpKernel->handle()` will be typed to `bool`');
  3.         }
  4.         try {
  5.             return $this->doHandle($request, (int) $type, (bool) $catch);
  6.         } catch (DBALException $e) {
  7.             $connectionParams self::getConnection()->getParams();
  8.             $message str_replace([$connectionParams['url'] ?? null$connectionParams['password'] ?? null$connectionParams['user'] ?? null], '******'$e->getMessage());
HttpKernel->handle() in /data/www/allnet.co.hu/public/index.php (line 85)
  1.     }
  2. } else {
  3.     $kernel = new InstallerKernel($appEnv$debug);
  4. }
  5. $result $kernel->handle($request);
  6. if ($result instanceof Response) {
  7.     $result->send();
  8.     $kernel->terminate($request$result);
  9. } else {

Stack Traces 2

[2/2] LogicException
LogicException:
Cannot change the name of an active session.

  at /data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php:113
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy->setName()
     (/data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:230)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->setName()
     (/data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Session.php:232)
  at Symfony\Component\HttpFoundation\Session\Session->setName()
     (/data/www/allnet.co.hu/vendor/shopware/storefront/Framework/Routing/StorefrontSubscriber.php:175)
  at Shopware\Storefront\Framework\Routing\StorefrontSubscriber->startSession()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:51)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:96)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/BusinessEventDispatcher.php:53)
  at Shopware\Core\Framework\Event\BusinessEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:35)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/HttpKernel.php:129)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/EventListener/ErrorListener.php:85)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:51)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:96)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/BusinessEventDispatcher.php:53)
  at Shopware\Core\Framework\Event\BusinessEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:35)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/HttpKernel.php:213)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/HttpKernel.php:109)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/data/www/allnet.co.hu/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:131)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/data/www/allnet.co.hu/vendor/symfony/error-handler/ErrorHandler.php:607)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()                
[1/2] ErrorException
ErrorException:
Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)

  at /data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php:116
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler->gc()
     (/data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php:91)
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy->gc()
  at session_start()
     (/data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:185)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
     (/data/www/allnet.co.hu/vendor/symfony/http-foundation/Session/Session.php:61)
  at Symfony\Component\HttpFoundation\Session\Session->start()
     (/data/www/allnet.co.hu/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php:98)
  at Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage->hasToken()
     (/data/www/allnet.co.hu/vendor/symfony/security-csrf/CsrfTokenManager.php:72)
  at Symfony\Component\Security\Csrf\CsrfTokenManager->getToken()
     (/data/www/allnet.co.hu/vendor/shopware/storefront/Framework/Csrf/CsrfPlaceholderHandler.php:115)
  at Shopware\Storefront\Framework\Csrf\CsrfPlaceholderHandler->getToken()
     (/data/www/allnet.co.hu/vendor/shopware/storefront/Framework/Csrf/CsrfPlaceholderHandler.php:91)
  at Shopware\Storefront\Framework\Csrf\CsrfPlaceholderHandler->Shopware\Storefront\Framework\Csrf\{closure}()
  at preg_replace_callback()
     (/data/www/allnet.co.hu/vendor/shopware/storefront/Framework/Csrf/CsrfPlaceholderHandler.php:84)
  at Shopware\Storefront\Framework\Csrf\CsrfPlaceholderHandler->replaceCsrfToken()
     (/data/www/allnet.co.hu/vendor/shopware/storefront/Framework/Routing/StorefrontSubscriber.php:339)
  at Shopware\Storefront\Framework\Routing\StorefrontSubscriber->replaceCsrfToken()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:51)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:96)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/BusinessEventDispatcher.php:53)
  at Shopware\Core\Framework\Event\BusinessEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:35)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/data/www/allnet.co.hu/vendor/shopware/core/HttpKernel.php:153)
  at Shopware\Core\HttpKernel->doHandle()
     (/data/www/allnet.co.hu/vendor/shopware/core/HttpKernel.php:75)
  at Shopware\Core\HttpKernel->handle()
     (/data/www/allnet.co.hu/public/index.php:85)