if (\PHP_SESSION_ACTIVE === session_status()) { throw new \RuntimeException('Failed to start the session: already started by PHP.'); } if (filter_var(\ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOLEAN) && headers_sent($file, $line)) { throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line)); } $sessionId = $_COOKIE[session_name()] ?? null; /* * Explanation of the session ID regular expression: `/^[a-zA-Z0-9,-]{22,250}$/`. } if (!$this->started && $this->saveHandler->isActive()) { $this->loadSession(); } elseif (!$this->started) { $this->start(); } return $this->bags[$name]; } /** * {@inheritdoc} */ public function getBag(string $name) { $bag = $this->storage->getBag($name); return method_exists($bag, 'getBag') ? $bag->getBag() : $bag; } /** * * Note that this method was added to help with IDE autocompletion. */ private function getAttributeBag(): AttributeBagInterface { return $this->getBag($this->attributeName); }} /** * {@inheritdoc} */ public function get(string $name, $default = null) { return $this->getAttributeBag()->get($name, $default); } /** * {@inheritdoc} */ if (null !== $session) { $usageIndexValue = $session instanceof Session ? $usageIndexReference = &$session->getUsageIndex() : 0; $usageIndexReference = \PHP_INT_MIN; $sessionId = $request->cookies->all()[$session->getName()] ?? null; $token = $session->get($this->sessionKey); // sessionId = true is used in the tests if ($this->sessionTrackerEnabler && \in_array($sessionId, [true, $session->getId()], true)) { $usageIndexReference = $usageIndexValue; } else { public function authenticate(RequestEvent $event) { $startTime = microtime(true); try { $ret = $this->listener->authenticate($event); } catch (LazyResponseException $e) { $this->response = $e->getResponse(); throw $e; } finally { } $this->tokenStorage->setInitializer(function () use ($event, $listeners) { $event = new LazyResponseEvent($event); foreach ($listeners as $listener) { $listener($event); } }); }} */ public function getToken() { if ($initializer = $this->initializer) { $this->initializer = null; $initializer(); } return $this->token; } 'user' => '', 'roles' => [], 'inherited_roles' => [], 'supports_role_hierarchy' => null !== $this->roleHierarchy, ]; } elseif (null === $token = $this->tokenStorage->getToken()) { $this->data = [ 'enabled' => true, 'authenticated' => false, 'impersonated' => false, 'impersonator_user' => null, } $response->headers->set('X-Debug-Token', $profile->getToken()); foreach ($this->collectors as $collector) { $collector->collect($request, $response, $exception); // we need to clone for sub-requests $profile->addCollector(clone $collector); } $usageIndexValue = $usageIndexReference = &$session->getUsageIndex(); $usageIndexReference = \PHP_INT_MIN; } try { if (!$profile = $this->profiler->collect($request, $event->getResponse(), $exception)) { return; } } finally { if ($session instanceof Session) { $usageIndexReference = $usageIndexValue; $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener); $e = $this->stopwatch->start($this->name, 'event_listener'); try { ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher); } finally { if ($e->isStarted()) { $e->stop(); } } foreach ($listeners as $listener) { if ($stoppable && $event->isPropagationStopped()) { break; } $listener($event, $eventName, $this); } } /** * Sorts the internal list of listeners for the given event by priority. } else { $listeners = $this->getListeners($eventName); } if ($listeners) { $this->callListeners($listeners, $eventName, $event); } return $event; } try { $this->beforeDispatch($eventName, $event); try { $e = $this->stopwatch->start($eventName, 'section'); try { $this->dispatcher->dispatch($event, $eventName); } finally { if ($e->isStarted()) { $e->stop(); } } */ private function filterResponse(Response $response, Request $request, int $type): Response { $event = new ResponseEvent($this, $request, $type, $response); $this->dispatcher->dispatch($event, KernelEvents::RESPONSE); $this->finishRequest($request, $type); return $event->getResponse(); } throw new ControllerDoesNotReturnResponseException($msg, $controller, __FILE__, __LINE__ - 17); } } return $this->filterResponse($response, $request, $type); } /** * Filters a response object. * { $request->headers->set('X-Php-Ob-Level', (string) ob_get_level()); $this->requestStack->push($request); try { return $this->handleRaw($request, $type); } catch (\Exception $e) { if ($e instanceof RequestExceptionInterface) { $e = new BadRequestHttpException($e->getMessage(), $e); } if (false === $catch) { $throwable = $event->getThrowable(); $request = $this->duplicateRequest($throwable, $event->getRequest()); try { $response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, false); } catch (\Exception $e) { $f = FlattenException::createFromThrowable($e); $this->logException($e, sprintf('Exception thrown when handling an exception (%s: %s at %s line %s)', $f->getClass(), $f->getMessage(), $e->getFile(), $e->getLine())); $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener); $e = $this->stopwatch->start($this->name, 'event_listener'); try { ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher); } finally { if ($e->isStarted()) { $e->stop(); } } foreach ($listeners as $listener) { if ($stoppable && $event->isPropagationStopped()) { break; } $listener($event, $eventName, $this); } } /** * Sorts the internal list of listeners for the given event by priority. } else { $listeners = $this->getListeners($eventName); } if ($listeners) { $this->callListeners($listeners, $eventName, $event); } return $event; } try { $this->beforeDispatch($eventName, $event); try { $e = $this->stopwatch->start($eventName, 'section'); try { $this->dispatcher->dispatch($event, $eventName); } finally { if ($e->isStarted()) { $e->stop(); } } * @throws \Exception */ private function handleThrowable(\Throwable $e, Request $request, int $type): Response { $event = new ExceptionEvent($this, $request, $type, $e); $this->dispatcher->dispatch($event, KernelEvents::EXCEPTION); // a listener might have replaced the exception $e = $event->getThrowable(); if (!$event->hasResponse()) { $this->finishRequest($request, $type); throw $e; } return $this->handleThrowable($e, $request, $type); } finally { $this->requestStack->pop(); } } $this->boot(); ++$this->requestStackSize; $this->resetServices = true; try { return $this->getHttpKernel()->handle($request, $type, $catch); } finally { --$this->requestStackSize; } } $this->request = $request; } public function run(): int { $response = $this->kernel->handle($this->request); $response->send(); if ($this->kernel instanceof TerminableInterface) { $this->kernel->terminate($this->request, $response); }$app = $app(...$args);exit( $runtime ->getRunner($app) ->run());<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);}; { if ($this->isActive()) { throw new \LogicException('Cannot change the ID of an active session.'); } session_id($id); } /** * Gets the session name. * /** * {@inheritdoc} */ public function setId(string $id) { $this->saveHandler->setId($id); } /** * {@inheritdoc} */ * {@inheritdoc} */ public function setId(string $id) { if ($this->storage->getId() !== $id) { $this->storage->setId($id); } } /** * {@inheritdoc} * * Do not set it when a native php session is active. */ if ($sess && !$sess->isStarted() && \PHP_SESSION_ACTIVE !== session_status()) { $sessionId = $sess->getId() ?: $request->cookies->get($sess->getName(), ''); $sess->setId($sessionId); } } return $sess; }); */ public function getSession() { $session = $this->session; if (!$session instanceof SessionInterface && null !== $session) { $this->setSession($session = $session()); } if (null === $session) { throw new SessionNotFoundException('Session has not been set.'); }
$em = $this->container->get('entity_manager');
$customerRepository = $em->getRepository(Customer::class);
$requestStack = $this->container->get('request_stack');
$request = $requestStack->getCurrentRequest();
$session = $request !== null && $request->hasSession() ? $request->getSession() : null;
// 1. Check for user customer
$user = $this->container->get('security')->getUser();
if ($user instanceof User)
{
public function _getCurrentOrder($createIfNotExists = true): ?Order
{
$cartState = $this->container->get('order_flow_manager')->getCartState();
// Get (or create) customer object
$customer = $this->getCustomer($createIfNotExists);
if ($customer === null)
{
return null;
}
public function getCurrentOrder(bool $createIfNotExists = true): ?Order
{
if (!$this->loadedCurrentOrder || ($createIfNotExists && $this->currentOrder === null))
{
$this->loadedCurrentOrder = true;
$this->currentOrder = $this->_getCurrentOrder($createIfNotExists);
if ($this->currentOrder !== null)
{
$productVariantIds = array_unique(array_map(
fn($orderItem) => $orderItem->getProductVariant()->getId(),
public function getShop(?Order $order = null, bool $useRequest = true): Shop
{
if ($order === null)
{
$order = $this->shopContext->getCurrentOrder(false);
}
if ($order !== null && $order->getId() !== null)
{
if (!array_key_exists($order->getId(), $this->cache))
$categoryView = $this->inner->createCategoryView($category, $summary, $locale);
$categoryOptions = $this->categoryOptionsRepository->find($category);
$headerImage = $categoryOptions?->getHeaderImage();
$categoryView->headerImage = $headerImage === null ? null : $this->componentPresenter->createComponentView(new Image($headerImage), $locale);
$shop = $this->shopManager->getShop();
dump($shop->getId(), $category->getId(), $locale);
$shopCategoryTranslation = $this->shopCategoryTranslationRepository->findByCategoryAndShop($category, $shop, $locale);
if ($shopCategoryTranslation !== null && $shopCategoryTranslation->alternativeDescription !== '') {
$categoryView->description = $shopCategoryTranslation?->alternativeDescription;
}
$locale = $request->getLocale();
$filters = [new CategoryFilterDataDto([$category])];
return $this->container->get(ProductListController::class)->productList($request, '@BoldrShop/catalog/category.html.twig', [
'category' => $this->container->get(CategoryPresenterInterface::class)->createCategoryView($category, false, $locale),
], $filters, new CategorySortOrderDto($category));
}
public function handlePermalink(PermalinkableInterface $permalinkable, Request $request): Response
{
if (!($permalinkable instanceof Category))
{
throw new \RuntimeException('Passed non-Category permalinkable to CategoryController::handlePermalink');
}
return $this->renderCategory($request, $permalinkable);
}
public function resolvePermalink(string $permalink, string $locale): ?PermalinkableInterface
{
$repoCategory = $this->getDoctrine()->getRepository(Category::class);
// Save the permalinkable in a request attribute
$request->attributes->set('_permalinkable', $permalinkable);
// Delegate handling the permalink to the responsible PermalinkHandlerInterface
$handler = $this->permalinkHandlers->get($permalinkableClass);
return $handler->handlePermalink($permalinkable, $request);
}
/**
* Gets a cache key for the permalink
*/
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS); $controller = $event->getController(); $arguments = $event->getArguments(); // call controller $response = $controller(...$arguments); // view if (!$response instanceof Response) { $event = new ViewEvent($this, $request, $type, $response); $this->dispatcher->dispatch($event, KernelEvents::VIEW); { $request->headers->set('X-Php-Ob-Level', (string) ob_get_level()); $this->requestStack->push($request); try { return $this->handleRaw($request, $type); } catch (\Exception $e) { if ($e instanceof RequestExceptionInterface) { $e = new BadRequestHttpException($e->getMessage(), $e); } if (false === $catch) { $this->boot(); ++$this->requestStackSize; $this->resetServices = true; try { return $this->getHttpKernel()->handle($request, $type, $catch); } finally { --$this->requestStackSize; } } $this->request = $request; } public function run(): int { $response = $this->kernel->handle($this->request); $response->send(); if ($this->kernel instanceof TerminableInterface) { $this->kernel->terminate($this->request, $response); }$app = $app(...$args);exit( $runtime ->getRunner($app) ->run());<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};| 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"
}
|
|
[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)
|