Nike Solo Swoosh Hoodie black

94,90 €*

Clothing
6
Produktnummer: CV0552-010.2

ESSENTIAL HOODIE
Der Solo Swoosh Hoodie besticht durch sein hochwertiges Fleece-Material und ihr lässiges Design. Dieses Kleidungsstück ist Teil der Essentials-Kollektion und sorgt mit einer lockeren Passform für ganztägigen Tragekomfort.

Vorteile
Angerautes Fleece-Material gewährleistet ein weiches Tragegefühl und Wärme. Die Kapuze kann mit dem Kordelzug individuell verstellt werden. Die Kängurutasche vorne dient als Handwärmer und eignet sich zur Aufbewahrung von Gegenständen. Die elastischen Bündchen schließen die Wärme ein.

Produktinformationen
Weite Passform für ein lässiges Tragegefühl
Aufgestickter Swoosh
84–85 % Baumwolle/15–16 % Polyester
Die Materialien können variieren. Genaue Angaben findest du auf dem Label.
Maschinenwäsche
Gezeigte Farbe: Schwarz/Weiß

Farbe: Schwarz
Kategorie: Unisex
Material: 85% Baumwolle, 15% Polyester
Pflegehinweis: 40°C Machine Wash, Normal

0 von 0 Bewertungen

Bewerten Sie dieses Produkt!

Teilen Sie Ihre Erfahrungen mit anderen Kunden.


Loading…
Loading the web debug toolbar…
Attempt #
Warning: session_name(): Session name cannot be changed after headers have already been sent (500 Internal Server Error)

Symfony Exception

TypeError ErrorException

HTTP 500 Internal Server Error

Warning: session_name(): Session name cannot be changed after headers have already been sent

Exceptions 2

ErrorException

Show exception properties
ErrorException {#1744
  #severity: E_WARNING
}
  1.     {
  2.         if ($this->isActive()) {
  3.             throw new \LogicException('Cannot change the name of an active session.');
  4.         }
  5.         session_name($name);
  6.     }
  7. }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function setName(string $name)
  5.     {
  6.         $this->saveHandler->setName($name);
  7.     }
  8.     public function regenerate(bool $destroy falseint $lifetime null): bool
  9.     {
  10.         // Cannot regenerate the session ID for non-active sessions.
  1.     /**
  2.      * @return void
  3.      */
  4.     public function setName(string $name)
  5.     {
  6.         $this->storage->setName($name);
  7.     }
  8.     public function getMetadataBag(): MetadataBag
  9.     {
  10.         ++$this->usageIndex;
  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->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  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.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $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->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * Handles a throwable by trying to convert it to a Response.
  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.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  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 /usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 537)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
ErrorHandler->handleException()

TypeError

Diga\WebgainsAffiliate\Subscriber\ProductExport\DigaExportSubscriber::__construct(): Argument #2 ($currencyRepository) must be of type Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface, Shopware\Core\Framework\DataAbstractionLayer\EntityRepository given, called in /usr/www/users/zuppos/zupport.de/shopware6/var/cache/dev_h9da6551f5553393d4828742d6e85862a/ContainerVCNWGS9/Shopware_Core_KernelDevDebugContainer.php on line 35976

  1.     public $currencyRepository;
  2.     private const WEBGAINSEXTENSION "digawebgainsextension";
  3.     public const PLUGIN_NAME 'DigaWebgainsAffiliate';
  4.     public function __construct(
  5.         SystemConfigService $systemConfigService,
  6.         EntityRepositoryInterface $currencyRepository     
  7.     ) {
  8.         $this->configService $systemConfigService;
  9.         $this->currencyRepository $currencyRepository;
  1.         if (isset($container->privates['Diga\\WebgainsAffiliate\\Subscriber\\ProductExport\\DigaExportSubscriber'])) {
  2.             return $container->privates['Diga\\WebgainsAffiliate\\Subscriber\\ProductExport\\DigaExportSubscriber'];
  3.         }
  4.         return $container->privates['Diga\\WebgainsAffiliate\\Subscriber\\ProductExport\\DigaExportSubscriber'] = new \Diga\WebgainsAffiliate\Subscriber\ProductExport\DigaExportSubscriber($a$b);
  5.     }
  6.     /**
  7.      * Gets the private 'Dne\CustomCssJs\Subscriber\ThemeCompilerSubscriber' shared service.
  8.      *
  1.         $instance->addListener('Shopware\\Storefront\\Page\\Product\\ProductPageLoadedEvent', [#[\Closure(name'MkxProductLabel\\Subscriber\\PageSubscriber')] fn () => ($container->privates['MkxProductLabel\\Subscriber\\PageSubscriber'] ?? self::getPageSubscriberService($container)), 'addMkxProductLabelData'], 0);
  2.         $instance->addListener('Shopware\\Storefront\\Page\\Account\\Order\\AccountOrderPageLoadedEvent', [#[\Closure(name'MkxProductLabel\\Subscriber\\PageSubscriber')] fn () => ($container->privates['MkxProductLabel\\Subscriber\\PageSubscriber'] ?? self::getPageSubscriberService($container)), 'addMkxProductLabelData'], 0);
  3.         $instance->addListener('Shopware\\Storefront\\Page\\Checkout\\Cart\\CheckoutCartPageLoadedEvent', [#[\Closure(name'MkxProductLabel\\Subscriber\\PageSubscriber')] fn () => ($container->privates['MkxProductLabel\\Subscriber\\PageSubscriber'] ?? self::getPageSubscriberService($container)), 'addMkxProductLabelData'], 0);
  4.         $instance->addListener('kernel.response', [#[\Closure(name'Redgecko\\Magnalister\\EventListeners\\MagnalisterEventListener')] fn () => ($container->privates['Redgecko\\Magnalister\\EventListeners\\MagnalisterEventListener'] ??= new \Redgecko\Magnalister\EventListeners\MagnalisterEventListener()), 'setMagnalisterSecurityHeaders'], 0);
  5.         $instance->addListener('Shopware\\Storefront\\Page\\Checkout\\Finish\\CheckoutFinishPageLoadedEvent', [#[\Closure(name'Diga\\WebgainsAffiliate\\Storefront\\Page\\Checkout\\CheckoutPageSubscriber')] fn () => ($container->privates['Diga\\WebgainsAffiliate\\Storefront\\Page\\Checkout\\CheckoutPageSubscriber'] ?? self::getCheckoutPageSubscriberService($container)), 'onCheckoutFinishPageLoaded'], 0);
  6.         $instance->addListener('Shopware\\Core\\Content\\ProductExport\\Event\\ProductExportRenderBodyContextEvent', [#[\Closure(name'Diga\\WebgainsAffiliate\\Subscriber\\ProductExport\\DigaExportSubscriber')] fn () => ($container->privates['Diga\\WebgainsAffiliate\\Subscriber\\ProductExport\\DigaExportSubscriber'] ?? self::getDigaExportSubscriberService($container)), 'extendbody'], 0);
  7.         $instance->addListener('Shopware\\Storefront\\Event\\StorefrontRenderEvent', [#[\Closure(name'Diga\\WebgainsAffiliate\\Subscriber\\DigaCustomCookieSubscriber')] fn () => ($container->privates['Diga\\WebgainsAffiliate\\Subscriber\\DigaCustomCookieSubscriber'] ?? self::getDigaCustomCookieSubscriberService($container)), 'onStorefrontRender'], 0);
  8.         $instance->addListener('Pickware\\PickwareErpStarter\\Stock\\ProductAvailableStockUpdatedEvent', [#[\Closure(name'Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber')] fn () => ($container->privates['Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber'] ?? self::getCacheInvalidationSubscriber2Service($container)), 'onProductAvailableStockUpdated'], -9223372036854775807-1);
  9.         $instance->addListener('pickware_erp_stock_movement.written', [#[\Closure(name'Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber')] fn () => ($container->privates['Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber'] ?? self::getCacheInvalidationSubscriber2Service($container)), 'stockMovementWritten'], 10000);
  10.         $instance->addListener('Pickware\\PickwareErpStarter\\Stock\\StockUpdatedForStockMovementsEvent', [#[\Closure(name'Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber')] fn () => ($container->privates['Pickware\\PickwareErpStarter\\Cache\\CacheInvalidationSubscriber'] ?? self::getCacheInvalidationSubscriber2Service($container)), 'onStockUpdatedForStockMovements'], 10000);
  11.         $instance->addListener('Pickware\\FeatureFlagBundle\\PickwareFeatureFlagsRegisterEvent', [#[\Closure(name'Pickware\\PickwareErpStarter\\Config\\Subscriber\\EnableTopLevelAdministrationNavigationSubscriber')] fn () => ($container->privates['Pickware\\PickwareErpStarter\\Config\\Subscriber\\EnableTopLevelAdministrationNavigationSubscriber'] ?? self::getEnableTopLevelAdministrationNavigationSubscriberService($container)), 'registerTopLevelNavigationFeatureFlag'], 0);
  1.         $this->sorted[$eventName] = [];
  2.         foreach ($this->listeners[$eventName] as &$listeners) {
  3.             foreach ($listeners as &$listener) {
  4.                 if (\is_array($listener) && isset($listener[0]) && $listener[0] instanceof \Closure && >= \count($listener)) {
  5.                     $listener[0] = $listener[0]();
  6.                     $listener[1] ??= '__invoke';
  7.                 }
  8.                 $this->sorted[$eventName][] = $listener;
  9.             }
  10.         }
  1.             return $this->sorted[$eventName];
  2.         }
  3.         foreach ($this->listeners as $eventName => $eventListeners) {
  4.             if (!isset($this->sorted[$eventName])) {
  5.                 $this->sortListeners($eventName);
  6.             }
  7.         }
  8.         return array_filter($this->sorted);
  9.     }
  1.     /**
  2.      * @return array<array-key, array<array-key, callable(object): void>|callable(object): void>
  3.      */
  4.     public function getListeners(?string $eventName null): array
  5.     {
  6.         return $this->dispatcher->getListeners($eventName);
  7.     }
  8.     public function getListenerPriority(string $eventName, callable $listener): ?int
  9.     {
  10.         /** @var callable(object): void $listener - Specify generic callback interface callers can provide more specific implementations */
  1.     /**
  2.      * @return array<array-key, array<array-key, callable(object): void>|callable(object): void>
  3.      */
  4.     public function getListeners(?string $eventName null): array
  5.     {
  6.         return $this->dispatcher->getListeners($eventName);
  7.     }
  8.     public function getListenerPriority(string $eventName, callable $listener): ?int
  9.     {
  10.         /** @var callable(object): void $listener - Specify generic callback interface callers can provide more specific implementations */
  1.     /**
  2.      * @return array<array-key, array<array-key, callable(object): void>|callable(object): void>
  3.      */
  4.     public function getListeners(?string $eventName null): array
  5.     {
  6.         return $this->dispatcher->getListeners($eventName);
  7.     }
  8.     public function getListenerPriority(string $eventName, callable $listener): ?int
  9.     {
  10.         /** @var callable(object): void $listener - Specify generic callback interface callers can provide more specific implementations */
  1.         $this->dispatcher->removeSubscriber($subscriber);
  2.     }
  3.     public function getListeners(string $eventName null): array
  4.     {
  5.         return $this->dispatcher->getListeners($eventName);
  6.     }
  7.     public function getListenerPriority(string $eventName, callable|array $listener): ?int
  8.     {
  9.         // we might have wrapped listeners for the event (if called while dispatching)
  1.     private function getListenersWithoutPriority(): array
  2.     {
  3.         $result = [];
  4.         foreach ($this->getListeners() as $eventName => $listeners) {
  5.             foreach ($listeners as $listener) {
  6.                 $result[$eventName][] = [$listenernull];
  7.             }
  8.         }
  1.     }
  2.     public function getNotCalledListeners(Request $request null): array
  3.     {
  4.         try {
  5.             $allListeners $this->dispatcher instanceof EventDispatcher $this->getListenersWithPriority() : $this->getListenersWithoutPriority();
  6.         } catch (\Exception $e) {
  7.             $this->logger?->info('An exception was thrown while getting the uncalled listeners.', ['exception' => $e]);
  8.             // unable to retrieve the uncalled listeners
  9.             return [];
  1.             if (!$dispatcher instanceof TraceableEventDispatcher) {
  2.                 continue;
  3.             }
  4.             $this->setCalledListeners($dispatcher->getCalledListeners($this->currentRequest), $name);
  5.             $this->setNotCalledListeners($dispatcher->getNotCalledListeners($this->currentRequest), $name);
  6.             $this->setOrphanedEvents($dispatcher->getOrphanedEvents($this->currentRequest), $name);
  7.         }
  8.         $this->data $this->cloneVar($this->data);
  9.     }
  1.     public function saveProfile(Profile $profile): bool
  2.     {
  3.         // late collect
  4.         foreach ($profile->getCollectors() as $collector) {
  5.             if ($collector instanceof LateDataCollectorInterface) {
  6.                 $collector->lateCollect();
  7.             }
  8.         }
  9.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  10.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * @return void
  1.     {
  2.         if (!$this->kernel instanceof TerminableInterface) {
  3.             return;
  4.         }
  5.         $this->kernel->terminate($request$response);
  6.     }
  7.     private function doHandle(Request $requestint $typebool $catch): HttpKernelResult
  8.     {
  9.         // create core kernel which contains bootstrapping for plugins etc.
  1.             return $this->httpKernel->handle($request$type$catch)->getResponse();
  2.         }
  3.         public function terminate(Request $requestResponse $response): void
  4.         {
  5.             $this->httpKernel->terminate($request$response);
  6.         }
  7.     };
  8. };
  1.     {
  2.         $response $this->kernel->handle($this->request);
  3.         $response->send();
  4.         if ($this->kernel instanceof TerminableInterface) {
  5.             $this->kernel->terminate($this->request$response);
  6.         }
  7.         return 0;
  8.     }
  9. }
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/usr/www/users/zuppos/zupport.de/shopware6/vendor/autoload_runtime.php') in /usr/www/users/zuppos/zupport.de/shopware6/public/index.php (line 14)
  1. use Symfony\Component\HttpKernel\HttpKernelInterface;
  2. use Symfony\Component\HttpKernel\TerminableInterface;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env') && !file_exists(__DIR__ '/../.env.dist') && !file_exists(__DIR__ '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Stack Traces 2

[2/2] ErrorException
ErrorException:
Warning: session_name(): Session name cannot be changed after headers have already been sent

  at /usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php:108
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy->setName()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:204)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->setName()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-foundation/Session/Session.php:199)
  at Symfony\Component\HttpFoundation\Session\Session->setName()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/storefront/Framework/Routing/StorefrontSubscriber.php:109)
  at Shopware\Storefront\Framework\Routing\StorefrontSubscriber->startSession()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:67)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/EventListener/ErrorListener.php:108)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:67)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/HttpKernel.php:240)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/HttpKernel.php:133)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:74)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/error-handler/ErrorHandler.php:537)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()                
[1/2] TypeError
TypeError:
Diga\WebgainsAffiliate\Subscriber\ProductExport\DigaExportSubscriber::__construct(): Argument #2 ($currencyRepository) must be of type Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface, Shopware\Core\Framework\DataAbstractionLayer\EntityRepository given, called in /usr/www/users/zuppos/zupport.de/shopware6/var/cache/dev_h9da6551f5553393d4828742d6e85862a/ContainerVCNWGS9/Shopware_Core_KernelDevDebugContainer.php on line 35976

  at /usr/www/users/zuppos/zupport.de/shopware6/custom/plugins/DigaWebgainsAffiliate/src/Subscriber/ProductExport/DigaExportSubscriber.php:33
  at Diga\WebgainsAffiliate\Subscriber\ProductExport\DigaExportSubscriber->__construct()
     (/usr/www/users/zuppos/zupport.de/shopware6/var/cache/dev_h9da6551f5553393d4828742d6e85862a/ContainerVCNWGS9/Shopware_Core_KernelDevDebugContainer.php:35976)
  at ContainerVCNWGS9\Shopware_Core_KernelDevDebugContainer::getDigaExportSubscriberService()
     (/usr/www/users/zuppos/zupport.de/shopware6/var/cache/dev_h9da6551f5553393d4828742d6e85862a/ContainerVCNWGS9/Shopware_Core_KernelDevDebugContainer.php:20785)
  at ContainerVCNWGS9\Shopware_Core_KernelDevDebugContainer::ContainerVCNWGS9\{closure}()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:235)
  at Symfony\Component\EventDispatcher\EventDispatcher->sortListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:78)
  at Symfony\Component\EventDispatcher\EventDispatcher->getListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:98)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->getListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:117)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->getListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:64)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->getListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:98)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->getListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:368)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->getListenersWithoutPriority()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:177)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->getNotCalledListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:75)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/Profiler/Profiler.php:100)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:67)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/HttpKernel.php:116)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/http-kernel/Kernel.php:157)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/shopware/core/HttpKernel.php:109)
  at Shopware\Core\HttpKernel->terminate()
     (/usr/www/users/zuppos/zupport.de/shopware6/public/index.php:76)
  at Symfony\Component\HttpKernel\HttpKernelInterface@anonymous/usr/www/users/zuppos/zupport.de/shopware6/public/index.php:61$1c7f->terminate()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:39)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/usr/www/users/zuppos/zupport.de/shopware6/vendor/autoload_runtime.php:29)
  at require_once('/usr/www/users/zuppos/zupport.de/shopware6/vendor/autoload_runtime.php')
     (/usr/www/users/zuppos/zupport.de/shopware6/public/index.php:14)