Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackScriptTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php on line 51

Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackLinkTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php on line 57

Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusAction(): Implicitly marking parameter $actionName as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/StimulusTwigExtension.php on line 76

Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusAction(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/StimulusTwigExtension.php on line 76

Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::appendStimulusAction(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/StimulusTwigExtension.php on line 124

Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusTarget(): Implicitly marking parameter $targetNames as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/StimulusTwigExtension.php on line 135

Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::appendStimulusTarget(): Implicitly marking parameter $targetNames as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/StimulusTwigExtension.php on line 163

Deprecated: Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter::__construct(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/sensio/framework-extra-bundle/src/Configuration/ParamConverter.php on line 61

Deprecated: Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter::__construct(): Implicitly marking parameter $converter as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/sensio/framework-extra-bundle/src/Configuration/ParamConverter.php on line 61

Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookup::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Asset/EntrypointLookup.php on line 36

Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookup::__construct(): Implicitly marking parameter $cacheKey as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Asset/EntrypointLookup.php on line 36

Deprecated: Boldr\Cms\CmsBundle\Twig\DynamicPropertyNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead in /home/boldrdev/sites/tmk/app/vendor/boldr/cms-bundle/src/Twig/DynamicPropertyNormalizer.php on line 11
Failed to start the session because headers have already been sent by "/home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php" at line 51. (500 Internal Server Error)

Symfony Exception

ErrorException RuntimeException

HTTP 500 Internal Server Error

Failed to start the session because headers have already been sent by "/home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php" at line 51.

Exceptions 2

RuntimeException

  1. if (\PHP_SESSION_ACTIVE === session_status()) {
  2. throw new \RuntimeException('Failed to start the session: already started by PHP.');
  3. }
  4. if (filter_var(\ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOLEAN) && headers_sent($file, $line)) {
  5. throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line));
  6. }
  7. $sessionId = $_COOKIE[session_name()] ?? null;
  8. /*
  9. * Explanation of the session ID regular expression: `/^[a-zA-Z0-9,-]{22,250}$/`.
  1. }
  2. if (!$this->started && $this->saveHandler->isActive()) {
  3. $this->loadSession();
  4. } elseif (!$this->started) {
  5. $this->start();
  6. }
  7. return $this->bags[$name];
  8. }
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function getBag(string $name)
  5. {
  6. $bag = $this->storage->getBag($name);
  7. return method_exists($bag, 'getBag') ? $bag->getBag() : $bag;
  8. }
  9. /**
  1. *
  2. * Note that this method was added to help with IDE autocompletion.
  3. */
  4. private function getAttributeBag(): AttributeBagInterface
  5. {
  6. return $this->getBag($this->attributeName);
  7. }
  8. }
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function get(string $name, $default = null)
  5. {
  6. return $this->getAttributeBag()->get($name, $default);
  7. }
  8. /**
  9. * {@inheritdoc}
  10. */
  1. if (null !== $session) {
  2. $usageIndexValue = $session instanceof Session ? $usageIndexReference = &$session->getUsageIndex() : 0;
  3. $usageIndexReference = \PHP_INT_MIN;
  4. $sessionId = $request->cookies->all()[$session->getName()] ?? null;
  5. $token = $session->get($this->sessionKey);
  6. // sessionId = true is used in the tests
  7. if ($this->sessionTrackerEnabler && \in_array($sessionId, [true, $session->getId()], true)) {
  8. $usageIndexReference = $usageIndexValue;
  9. } else {
  1. public function authenticate(RequestEvent $event)
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $ret = $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. }
  2. $this->tokenStorage->setInitializer(function () use ($event, $listeners) {
  3. $event = new LazyResponseEvent($event);
  4. foreach ($listeners as $listener) {
  5. $listener($event);
  6. }
  7. });
  8. }
  9. }
in vendor/symfony/security-core/Authentication/Token/Storage/TokenStorage.php -> {closure:Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext::__invoke():70} (line 37)
  1. */
  2. public function getToken()
  3. {
  4. if ($initializer = $this->initializer) {
  5. $this->initializer = null;
  6. $initializer();
  7. }
  8. return $this->token;
  9. }
  1. 'user' => '',
  2. 'roles' => [],
  3. 'inherited_roles' => [],
  4. 'supports_role_hierarchy' => null !== $this->roleHierarchy,
  5. ];
  6. } elseif (null === $token = $this->tokenStorage->getToken()) {
  7. $this->data = [
  8. 'enabled' => true,
  9. 'authenticated' => false,
  10. 'impersonated' => false,
  11. 'impersonator_user' => null,
  1. }
  2. $response->headers->set('X-Debug-Token', $profile->getToken());
  3. foreach ($this->collectors as $collector) {
  4. $collector->collect($request, $response, $exception);
  5. // we need to clone for sub-requests
  6. $profile->addCollector(clone $collector);
  7. }
  1. $usageIndexValue = $usageIndexReference = &$session->getUsageIndex();
  2. $usageIndexReference = \PHP_INT_MIN;
  3. }
  4. try {
  5. if (!$profile = $this->profiler->collect($request, $event->getResponse(), $exception)) {
  6. return;
  7. }
  8. } finally {
  9. if ($session instanceof Session) {
  10. $usageIndexReference = $usageIndexValue;
  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. 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 filterResponse(Response $response, Request $request, int $type): Response
  3. {
  4. $event = new ResponseEvent($this, $request, $type, $response);
  5. $this->dispatcher->dispatch($event, KernelEvents::RESPONSE);
  6. $this->finishRequest($request, $type);
  7. return $event->getResponse();
  8. }
in vendor/symfony/http-kernel/HttpKernel.php -> filterResponse (line 184)
  1. throw new ControllerDoesNotReturnResponseException($msg, $controller, __FILE__, __LINE__ - 17);
  2. }
  3. }
  4. return $this->filterResponse($response, $request, $type);
  5. }
  6. /**
  7. * Filters a response object.
  8. *
  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($request, HttpKernelInterface::SUB_REQUEST, false);
  5. } catch (\Exception $e) {
  6. $f = FlattenException::createFromThrowable($e);
  7. $this->logException($e, sprintf('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. 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 $e, Request $request, int $type): Response
  4. {
  5. $event = new ExceptionEvent($this, $request, $type, $e);
  6. $this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
  7. // a listener might have replaced the exception
  8. $e = $event->getThrowable();
  9. if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 86)
  1. $this->finishRequest($request, $type);
  2. throw $e;
  3. }
  4. return $this->handleThrowable($e, $request, $type);
  5. } finally {
  6. $this->requestStack->pop();
  7. }
  8. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $this->request = $request;
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send();
  7. if ($this->kernel instanceof TerminableInterface) {
  8. $this->kernel->terminate($this->request, $response);
  9. }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/boldrdev/sites/tmk/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

ErrorException

Warning: session_id(): Session ID cannot be changed after headers have already been sent

  1. {
  2. if ($this->isActive()) {
  3. throw new \LogicException('Cannot change the ID of an active session.');
  4. }
  5. session_id($id);
  6. }
  7. /**
  8. * Gets the session name.
  9. *
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function setId(string $id)
  5. {
  6. $this->saveHandler->setId($id);
  7. }
  8. /**
  9. * {@inheritdoc}
  10. */
  1. * {@inheritdoc}
  2. */
  3. public function setId(string $id)
  4. {
  5. if ($this->storage->getId() !== $id) {
  6. $this->storage->setId($id);
  7. }
  8. }
  9. /**
  10. * {@inheritdoc}
  1. *
  2. * Do not set it when a native php session is active.
  3. */
  4. if ($sess && !$sess->isStarted() && \PHP_SESSION_ACTIVE !== session_status()) {
  5. $sessionId = $sess->getId() ?: $request->cookies->get($sess->getName(), '');
  6. $sess->setId($sessionId);
  7. }
  8. }
  9. return $sess;
  10. });
in vendor/symfony/http-foundation/Request.php -> {closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():80} (line 754)
  1. */
  2. public function getSession()
  3. {
  4. $session = $this->session;
  5. if (!$session instanceof SessionInterface && null !== $session) {
  6. $this->setSession($session = $session());
  7. }
  8. if (null === $session) {
  9. throw new SessionNotFoundException('Session has not been set.');
  10. }
  1. $em = $this->container->get('entity_manager');
  2. $customerRepository = $em->getRepository(Customer::class);
  3. $requestStack = $this->container->get('request_stack');
  4. $request = $requestStack->getCurrentRequest();
  5. $session = $request !== null && $request->hasSession() ? $request->getSession() : null;
  6. // 1. Check for user customer
  7. $user = $this->container->get('security')->getUser();
  8. if ($user instanceof User)
  9. {
  1. public function _getCurrentOrder($createIfNotExists = true): ?Order
  2. {
  3. $cartState = $this->container->get('order_flow_manager')->getCartState();
  4. // Get (or create) customer object
  5. $customer = $this->getCustomer($createIfNotExists);
  6. if ($customer === null)
  7. {
  8. return null;
  9. }
in vendor/boldr/shop-bundle/src/ShopContext.php -> _getCurrentOrder (line 103)
  1. public function getCurrentOrder(bool $createIfNotExists = true): ?Order
  2. {
  3. if (!$this->loadedCurrentOrder || ($createIfNotExists && $this->currentOrder === null))
  4. {
  5. $this->loadedCurrentOrder = true;
  6. $this->currentOrder = $this->_getCurrentOrder($createIfNotExists);
  7. if ($this->currentOrder !== null)
  8. {
  9. $productVariantIds = array_unique(array_map(
  10. fn($orderItem) => $orderItem->getProductVariant()->getId(),
  1. public function getShop(?Order $order = null, bool $useRequest = true): Shop
  2. {
  3. if ($order === null)
  4. {
  5. $order = $this->shopContext->getCurrentOrder(false);
  6. }
  7. if ($order !== null && $order->getId() !== null)
  8. {
  9. if (!array_key_exists($order->getId(), $this->cache))
ShopManager->getShop() in src/Presenter/CategoryPresenter.php (line 32)
  1. $categoryView = $this->inner->createCategoryView($category, $summary, $locale);
  2. $categoryOptions = $this->categoryOptionsRepository->find($category);
  3. $headerImage = $categoryOptions?->getHeaderImage();
  4. $categoryView->headerImage = $headerImage === null ? null : $this->componentPresenter->createComponentView(new Image($headerImage), $locale);
  5. $shop = $this->shopManager->getShop();
  6. dump($shop->getId(), $category->getId(), $locale);
  7. $shopCategoryTranslation = $this->shopCategoryTranslationRepository->findByCategoryAndShop($category, $shop, $locale);
  8. if ($shopCategoryTranslation !== null && $shopCategoryTranslation->alternativeDescription !== '') {
  9. $categoryView->description = $shopCategoryTranslation?->alternativeDescription;
  10. }
  1. $locale = $request->getLocale();
  2. $filters = [new CategoryFilterDataDto([$category])];
  3. return $this->container->get(ProductListController::class)->productList($request, '@BoldrShop/catalog/category.html.twig', [
  4. 'category' => $this->container->get(CategoryPresenterInterface::class)->createCategoryView($category, false, $locale),
  5. ], $filters, new CategorySortOrderDto($category));
  6. }
  7. public function handlePermalink(PermalinkableInterface $permalinkable, Request $request): Response
  8. {
  1. if (!($permalinkable instanceof Category))
  2. {
  3. throw new \RuntimeException('Passed non-Category permalinkable to CategoryController::handlePermalink');
  4. }
  5. return $this->renderCategory($request, $permalinkable);
  6. }
  7. public function resolvePermalink(string $permalink, string $locale): ?PermalinkableInterface
  8. {
  9. $repoCategory = $this->getDoctrine()->getRepository(Category::class);
  1. // Save the permalinkable in a request attribute
  2. $request->attributes->set('_permalinkable', $permalinkable);
  3. // Delegate handling the permalink to the responsible PermalinkHandlerInterface
  4. $handler = $this->permalinkHandlers->get($permalinkableClass);
  5. return $handler->handlePermalink($permalinkable, $request);
  6. }
  7. /**
  8. * Gets a cache key for the permalink
  9. */
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  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. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $this->request = $request;
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send();
  7. if ($this->kernel instanceof TerminableInterface) {
  8. $this->kernel->terminate($this->request, $response);
  9. }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/boldrdev/sites/tmk/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 3

Level Channel Message
INFO 14:22:07 php User Deprecated: Method "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface::isOptional()" might add "bool" as a native return type declaration in the future. Do the same in implementation "EasyCorp\Bundle\EasyAdminBundle\Cache\CacheWarmer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface::warmUp()" might add "array" as a native return type declaration in the future. Do the same in implementation "EasyCorp\Bundle\EasyAdminBundle\Cache\CacheWarmer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "Symfony\Contracts\Service\ServiceSubscriberInterface::getSubscribedServices()" might add "array" as a native return type declaration in the future. Do the same in implementation "EasyCorp\Bundle\EasyAdminBundle\Controller\AbstractCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::index()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Cms\CmsBundle\Controller\Admin\AbstractPolymorphicCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::edit()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Cms\CmsBundle\Controller\Admin\AbstractPolymorphicCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::new()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Cms\CmsBundle\Controller\Admin\AbstractPolymorphicCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::index()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Cms\CmsBundle\Controller\Admin\PageCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::new()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Cms\CmsBundle\Controller\Admin\PageCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::new()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Shop\ShopBundle\Controller\Admin\OrderCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:22:07 php User Deprecated: Method "EasyCorp\Bundle\EasyAdminBundle\Contracts\Controller\CrudControllerInterface::edit()" might add "KeyValueStore|Response" as a native return type declaration in the future. Do the same in implementation "Boldr\Shop\ShopBundle\Controller\Admin\OrderCrudController" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 14:22:07 doctrine SELECT r0_.id AS id_0, r0_.prefix AS prefix_1, r0_.source AS source_2, r0_.target AS target_3 FROM redirect r0_ WHERE r0_.source = ? OR (r0_.prefix = 1 AND ? LIKE CONCAT(r0_.source, '%')) LIMIT 1
[
    "/de/lounge-sofas",
    "/de/lounge-sofas"
]
INFO 14:22:07 request Matched route "cms_permalink".
{
    "route": "cms_permalink",
    "route_parameters": {
        "_route": "cms_permalink",
        "_controller": "Boldr\\Cms\\CmsBundle\\Controller\\PermalinkController::resolve",
        "permalink": "de/lounge-sofas"
    },
    "request_uri": "https://tmk-4so.boldrdev.nl/de/lounge-sofas?page=1",
    "method": "GET"
}
INFO 14:22:07 php Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
DEBUG 14:22:07 security Checking for authenticator support.
{
    "firewall_name": "boldr_users",
    "authenticators": 1
}
DEBUG 14:22:07 security Checking support on authenticator.
{
    "firewall_name": "boldr_users",
    "authenticator": "Boldr\\Cms\\UsersBundle\\Security\\UserAuthenticator"
}
DEBUG 14:22:07 security Authenticator does not support the request.
{
    "firewall_name": "boldr_users",
    "authenticator": "Boldr\\Cms\\UsersBundle\\Security\\UserAuthenticator"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\RedirectBundle\EventSubscriber\KernelEventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\RedirectBundle\\EventSubscriber\\KernelEventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\CookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\CookieSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Shop\ShopUtmBundle\EventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Shop\\ShopUtmBundle\\EventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 14:22:07 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 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 14:22:07 doctrine SELECT t0.id AS id_1, t0.visible AS visible_2, t0.sort_order AS sort_order_3, t0.show_as_filter AS show_as_filter_4, t0.parent_id AS parent_id_5 FROM shop_category t0 WHERE t0.id = ?
[
    212
]
DEBUG 14:22:07 doctrine SELECT t0.category_id AS category_id_1, t0.header_image_id AS header_image_id_2 FROM tmk_category_options t0 WHERE t0.category_id = ?
[
    212
]
DEBUG 14:22:07 doctrine SELECT t0.id AS id_1, t0.type AS type_2, t0.storage_identifier AS storage_identifier_3, t0.public_name AS public_name_4, t0.derivatives AS derivatives_5, t0.enqueued_derivatives AS enqueued_derivatives_6, t0.derivatives_enqueued AS derivatives_enqueued_7, t0.mime_type AS mime_type_8, t0.size AS size_9, t0.width AS width_10, t0.height AS height_11, t0.time_uploaded AS time_uploaded_12 FROM cms_upload t0 WHERE t0.id = ?
[
    14969
]
DEBUG 14:22:07 doctrine SELECT t0.id AS id_1, t0.locale AS locale_2, t0.display_name AS display_name_3, t0.description AS description_4, t0.upload_id AS upload_id_5 FROM cms_upload_translation t0 WHERE t0.upload_id = ?
[
    14969
]
CRITICAL 14:22:07 request Uncaught PHP Exception ErrorException: "Warning: session_id(): Session ID cannot be changed after headers have already been sent" at /home/boldrdev/sites/tmk/app/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php line 92
{
    "exception": {},
    "url": "https://tmk-4so.boldrdev.nl/de/lounge-sofas?page=1"
}
CRITICAL 14:22:07 request Exception thrown when handling an exception (RuntimeException: Failed to start the session because headers have already been sent by "/home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php" at line 51. at /home/boldrdev/sites/tmk/app/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php line 145)
{
    "exception": {},
    "url": "https://tmk-4so.boldrdev.nl/de/lounge-sofas?page=1"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Boldr\Cms\RedirectBundle\EventSubscriber\KernelEventSubscriber::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Boldr\\Cms\\RedirectBundle\\EventSubscriber\\KernelEventSubscriber::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ExceptionListener::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ExceptionListener::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::logKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\ExceptionListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\ExceptionListener::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelException"
}
DEBUG 14:22:07 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException"
}
CRITICAL 14:22:07 request Uncaught PHP Exception RuntimeException: "Failed to start the session because headers have already been sent by "/home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php" at line 51." at /home/boldrdev/sites/tmk/app/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php line 145
{
    "exception": {},
    "url": "https://tmk-4so.boldrdev.nl/de/lounge-sofas?page=1"
}
DEBUG 14:22:07 doctrine SELECT r0_.id AS id_0, r0_.prefix AS prefix_1, r0_.source AS source_2, r0_.target AS target_3 FROM redirect r0_ WHERE r0_.source = ? OR (r0_.prefix = 1 AND ? LIKE CONCAT(r0_.source, '%')) LIMIT 1
[
    "/de/lounge-sofas",
    "/de/lounge-sofas"
]
INFO 14:22:07 php Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\RedirectBundle\EventSubscriber\KernelEventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\RedirectBundle\\EventSubscriber\\KernelEventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\CookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\CookieSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Shop\ShopUtmBundle\EventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Shop\\ShopUtmBundle\\EventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 14:22:07 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 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Boldr\Cms\CmsBundle\EventSubscriber\CookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\CookieSubscriber::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Boldr\Cms\CmsBundle\EventSubscriber\LocaleSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\LocaleSubscriber::onKernelResponse"
}
DEBUG 14:22:07 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:22:07 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 14:22:07 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 14:22:07 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 14:22:07 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 14:22:07 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 14:22:07 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 14:22:07 doctrine SELECT r0_.id AS id_0, r0_.prefix AS prefix_1, r0_.source AS source_2, r0_.target AS target_3 FROM redirect r0_ WHERE r0_.source = ? OR (r0_.prefix = 1 AND ? LIKE CONCAT(r0_.source, '%')) LIMIT 1
[
    "/de/lounge-sofas",
    "/de/lounge-sofas"
]
INFO 14:22:07 php Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated
{
    "exception": {}
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\RedirectBundle\EventSubscriber\KernelEventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\RedirectBundle\\EventSubscriber\\KernelEventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Cms\CmsBundle\EventSubscriber\CookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Cms\\CmsBundle\\EventSubscriber\\CookieSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.request" to listener "Boldr\Shop\ShopUtmBundle\EventSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Boldr\\Shop\\ShopUtmBundle\\EventSubscriber::onKernelRequest"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 14:22:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 14:22:07 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 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 14:22:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Traces 2

[2/2] RuntimeException
RuntimeException:
Failed to start the session because headers have already been sent by "/home/boldrdev/sites/tmk/app/vendor/symfony/webpack-encore-bundle/src/Twig/EntryFilesTwigExtension.php" at line 51.

  at vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:145
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:352)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('attributes')
     (vendor/symfony/http-foundation/Session/Session.php:261)
  at Symfony\Component\HttpFoundation\Session\Session->getBag('attributes')
     (vendor/symfony/http-foundation/Session/Session.php:283)
  at Symfony\Component\HttpFoundation\Session\Session->getAttributeBag()
     (vendor/symfony/http-foundation/Session/Session.php:77)
  at Symfony\Component\HttpFoundation\Session\Session->get('_security_boldr_users')
     (vendor/symfony/security-http/Firewall/ContextListener.php:106)
  at Symfony\Component\Security\Http\Firewall\ContextListener->authenticate(object(LazyResponseEvent))
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:49)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate(object(LazyResponseEvent))
     (vendor/symfony/security-bundle/Security/LazyFirewallContext.php:73)
  at Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->{closure:Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext::__invoke():70}()
     (vendor/symfony/security-core/Authentication/Token/Storage/TokenStorage.php:37)
  at Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage->getToken()
     (vendor/symfony/security-bundle/DataCollector/SecurityDataCollector.php:85)
  at Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector->collect(object(Request), object(Response), object(ErrorException))
     (vendor/symfony/http-kernel/Profiler/Profiler.php:161)
  at Symfony\Component\HttpKernel\Profiler\Profiler->collect(object(Request), object(Response), object(ErrorException))
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:108)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.response', object(ResponseEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (vendor/symfony/http-kernel/HttpKernel.php:196)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse(object(Response), object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:184)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/http-kernel/EventListener/ErrorListener.php:91)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(ErrorException), object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:86)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/home/boldrdev/sites/tmk/app/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ErrorException
ErrorException:
Warning: session_id(): Session ID cannot be changed after headers have already been sent

  at vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php:92
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy->setId('fbfd7d1f154305214e654313dac38111')
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:214)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->setId('fbfd7d1f154305214e654313dac38111')
     (vendor/symfony/http-foundation/Session/Session.php:215)
  at Symfony\Component\HttpFoundation\Session\Session->setId('fbfd7d1f154305214e654313dac38111')
     (vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:93)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->{closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():80}()
     (vendor/symfony/http-foundation/Request.php:754)
  at Symfony\Component\HttpFoundation\Request->getSession()
     (vendor/boldr/shop-bundle/src/ShopContext.php:239)
  at Boldr\Shop\ShopBundle\ShopContext->getCustomer(false)
     (vendor/boldr/shop-bundle/src/ShopContext.php:137)
  at Boldr\Shop\ShopBundle\ShopContext->_getCurrentOrder(false)
     (vendor/boldr/shop-bundle/src/ShopContext.php:103)
  at Boldr\Shop\ShopBundle\ShopContext->getCurrentOrder(false)
     (vendor/boldr/multishop-bundle/src/ShopManager.php:36)
  at Boldr\Shop\MultishopBundle\ShopManager->getShop()
     (src/Presenter/CategoryPresenter.php:32)
  at App\Presenter\CategoryPresenter->createCategoryView(object(Category), false, 'de')
     (vendor/boldr/shop-bundle/src/Controller/CategoryController.php:38)
  at Boldr\Shop\ShopBundle\Controller\CategoryController->renderCategory(object(Request), object(Category))
     (vendor/boldr/shop-bundle/src/Controller/CategoryController.php:49)
  at Boldr\Shop\ShopBundle\Controller\CategoryController->handlePermalink(object(Category), object(Request))
     (vendor/boldr/cms-bundle/src/Controller/PermalinkController.php:271)
  at Boldr\Cms\CmsBundle\Controller\PermalinkController->resolve(object(Request), object(DataCollectorTranslator), 'lounge-sofas', false)
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/home/boldrdev/sites/tmk/app/vendor/autoload_runtime.php')
     (public/index.php:5)