Error 500 Internal Server Error

GET https://new.light-domotique.fr/cadre-flat-1-poste-jung-ivoire.html

Exceptions

Unable to execute statement [SELECT `feature_product`.`id`, `feature_product`.`product_id`, `feature_product`.`feature_id`, `feature_product`.`feature_av_id`, `feature_product`.`free_text_value`, `feature_product`.`is_free_text`, `feature_product`.`position`, `feature_product`.`created_at`, `feature_product`.`updated_at`, NOT ISNULL(`feature_av_requested_locale_i18n`.`ID`) AS feature_av_IS_TRANSLATED, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`TITLE`) THEN `feature_av_requested_locale_i18n`.`TITLE` ELSE `feature_av_default_locale_i18n`.`TITLE` END AS feature_av_i18n_TITLE, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`CHAPO`) THEN `feature_av_requested_locale_i18n`.`CHAPO` ELSE `feature_av_default_locale_i18n`.`CHAPO` END AS feature_av_i18n_CHAPO, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`DESCRIPTION`) THEN `feature_av_requested_locale_i18n`.`DESCRIPTION` ELSE `feature_av_default_locale_i18n`.`DESCRIPTION` END AS feature_av_i18n_DESCRIPTION, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`POSTSCRIPTUM`) THEN `feature_av_requested_locale_i18n`.`POSTSCRIPTUM` ELSE `feature_av_default_locale_i18n`.`POSTSCRIPTUM` END AS feature_av_i18n_POSTSCRIPTUM, `feature_av`.`position` AS feature_av_position FROM `feature_product` LEFT JOIN `feature_av_i18n` `feature_av_default_locale_i18n` ON (`feature_product`.`feature_av_id`=`feature_av_default_locale_i18n`.`id` AND `feature_av_default_locale_i18n`.LOCALE = 'fr_FR') LEFT JOIN `feature_av_i18n` `feature_av_requested_locale_i18n` ON (`feature_product`.`feature_av_id`=`feature_av_requested_locale_i18n`.`id` AND `feature_av_requested_locale_i18n`.LOCALE = 'fr_FR') LEFT JOIN `feature_av` `feature_av` ON (`feature_product`.`feature_av_id`=`feature_av`.`id`) WHERE `feature_product`.`feature_id`='54' AND `feature_product`.`product_id`='698' ORDER BY feature_av_position ASC LIMIT 9223372036854775807]
Reason: [SQLSTATE[42S22]: Column not found: 1054 Unknown column 'feature_product.is_free_text' in 'SELECT']

Exceptions 2

Propel\Runtime\ActiveQuery\QueryExecutor\ QueryExecutionException

  1.         $publicMessage "Unable to execute statement [$sql]";
  2.         if ($isDebugMode) {
  3.             $publicMessage .= PHP_EOL "Reason: [$internalMessage]";
  4.         }
  5.         throw new QueryExecutionException($publicMessage0$e);
  6.     }
  7.     /**
  8.      * Check if the current connection has debug mode enabled
  9.      *
  1.             if ($params) {
  2.                 $this->adapter->bindValues($stmt$params$this->dbMap);
  3.             }
  4.             $stmt->execute();
  5.         } catch (Throwable $e) {
  6.             $this->handleStatementException($e$sql$stmt);
  7.         }
  8.         return $stmt;
  9.     }
  1.      */
  2.     protected function runSelect(): DataFetcherInterface
  3.     {
  4.         $params = [];
  5.         $preparedStatementDto SelectQuerySqlBuilder::createSelectSql($this->criteria$params);
  6.         $stmt $this->executeStatement($preparedStatementDto);
  7.         return $this->con->getDataFetcher($stmt);
  8.     }
  9. }
  1.      */
  2.     public static function execute(Criteria $criteria, ?ConnectionInterface $con null): DataFetcherInterface
  3.     {
  4.         $executor = new self($criteria$con);
  5.         return $executor->runSelect();
  6.     }
  7.     /**
  8.      * Builds, binds and executes a SELECT query based on the current object.
  9.      *
  1.      *
  2.      * @return \Propel\Runtime\DataFetcher\DataFetcherInterface A dataFetcher using the connection, ready to be fetched
  3.      */
  4.     public function doSelect(?ConnectionInterface $con null)
  5.     {
  6.         return SelectQueryExecutor::execute($this$con);
  7.     }
  8.     // Fluid operators
  9.     /**
  1.     {
  2.         $this->configureSelectColumns();
  3.         $this->addSelfSelectColumns();
  4.         return parent::doSelect($con);
  5.     }
  6.     /**
  7.      * {@inheritDoc}
  8.      *
  1.             $con Propel::getServiceContainer()->getReadConnection($this->getDbName());
  2.         }
  3.         $this->basePreSelect($con);
  4.         $criteria $this->isKeepQuery() ? clone $this $this;
  5.         $dataFetcher $criteria->doSelect($con);
  6.         return $criteria
  7.             ->getFormatter()
  8.             ->init($criteria)->format($dataFetcher);
  9.     }
  1.             $search->limit($limit);
  2.         }
  3.         $search->offset((int) $this->getArgValue('offset'));
  4.         return $search->find();
  5.     }
  6.     /**
  7.      * @param PropelModelPager|null $pagination
  8.      *
  1.         if ($this->getArgValue('page') !== null) {
  2.             return $this->searchWithPagination($search$pagination);
  3.         }
  4.         return $this->searchWithOffset($search);
  5.     }
  6.     protected function setupSearchContext(ModelCriteria $search): void
  7.     {
  8.         if ($this instanceof SearchLoopInterface) {
  1.         if ($this instanceof PropelSearchLoopInterface) {
  2.             $searchModelCriteria $this->extendsBuildModelCriteria($this->buildModelCriteria());
  3.             if (null !== $searchModelCriteria) {
  4.                 $results $this->search(
  5.                     $searchModelCriteria,
  6.                     $pagination
  7.                 );
  8.             }
  9.         } elseif ($this instanceof ArraySearchLoopInterface) {
  1.                 self::$pagination[$name] = null;
  2.                 // We have to clone the result, as exec() returns a cached LoopResult object, which may cause side effects
  3.                 // if loops with the same argument set are nested (see https://github.com/thelia/thelia/issues/2213)
  4.                 $loopResults = clone $loop->exec(self::$pagination[$name]);
  5.                 $loopResults->rewind();
  6.             } catch (ElementNotFoundException $ex) {
  7.                 // If loop is not found, when in development mode, rethrow the exception to make it visible
  8.                 //                if ($this->isDebugActive) {
  1. if (!is_callable(array($_block_plugin33'theliaLoop'))) {
  2. throw new SmartyException('block tag \'loop\' not callable or registered');
  3. }
  4. $_smarty_tpl->smarty->_cache['_tag_stack'][] = array('loop', array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value));
  5. $_block_repeat=true;
  6. echo $_block_plugin33->theliaLoop(array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value), null$_smarty_tpl$_block_repeat);
  7. while ($_block_repeat) {
  8. ob_start();
  9. if ($_smarty_tpl->tpl_vars['LOOP_COUNT']->value 1) {?><?php } else { ?> <?php }?><span><?php echo TheliaSmarty\Template\SmartyParser::theliaEscape($_smarty_tpl->tpl_vars['TITLE']->value,$_smarty_tpl);?>
  10. </span><?php $_block_repeat=false;
  11. echo $_block_plugin33->theliaLoop(array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value), ob_get_clean(), $_smarty_tpl$_block_repeat);
  1.      */
  2.     public function callBlock(Smarty_Internal_Block $blockSmarty_Internal_Template $tpl)
  3.     {
  4.         $this->sourceStack[] = $tpl->source;
  5.         $tpl->source $this->sources$block->tplIndex ];
  6.         $block->callBlock($tpl);
  7.         $tpl->source array_pop($this->sourceStack);
  8.     }
  9. }
  1.         $block->parent $parent;
  2.         if ($block->append && !$block->prepend && isset($parent)) {
  3.             $this->callParent($tpl$block'\'{block append}\'');
  4.         }
  5.         if ($block->callsChild || !isset($block->child) || ($block->child->hide && !isset($block->child->child))) {
  6.             $this->callBlock($block$tpl);
  7.         } else {
  8.             $this->process($tpl$block->child$block);
  9.         }
  10.         if ($block->prepend && isset($parent)) {
  11.             $this->callParent($tpl$block'{block prepend}');
  1.             $this->callParent($tpl$block'\'{block append}\'');
  2.         }
  3.         if ($block->callsChild || !isset($block->child) || ($block->child->hide && !isset($block->child->child))) {
  4.             $this->callBlock($block$tpl);
  5.         } else {
  6.             $this->process($tpl$block->child$block);
  7.         }
  8.         if ($block->prepend && isset($parent)) {
  9.             $this->callParent($tpl$block'{block prepend}');
  10.             if ($block->append) {
  11.                 if ($block->callsChild || !isset($block->child)
  1.         }
  2.         // make sure we got child block of child template of current block
  3.         while ($block->child && $block->child->child && $block->tplIndex <= $block->child->tplIndex) {
  4.             $block->child $block->child->child;
  5.         }
  6.         $this->process($tpl$block);
  7.     }
  8.     /**
  9.      * Goto child block or render this
  10.      *
  1.                 <?php 
  2. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_1799842295666c4ae4883931_18252255'"breadcrumb");
  3. ?>
  4.                 <div id="content"><?php 
  5. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_2093276931666c4ae4884b90_28334379'"main-content");
  6. ?>
  7. </div>
  8.                 <?php echo call_user_func_array$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION]['hook'][0], array( array('name'=>"main.content-bottom"),$_smarty_tpl ) );?>
  9.             </div><!-- /.container -->
  1.             if ($_template->startRenderCallbacks) {
  2.                 foreach ($_template->startRenderCallbacks as $callback) {
  3.                     call_user_func($callback$_template);
  4.                 }
  5.             }
  6.             $unifunc($_template);
  7.             foreach ($_template->endRenderCallbacks as $callback) {
  8.                 call_user_func($callback$_template);
  9.             }
  10.             $_template->isRenderingCache false;
  11.         } catch (Exception $e) {
  1.                 array_merge($_template->cached->file_dependency$this->file_dependency);
  2.         }
  3.         if ($_template->source->handler->uncompiled) {
  4.             $_template->source->handler->renderUncompiled($_template->source$_template);
  5.         } else {
  6.             $this->getRenderedTemplateCode($_template);
  7.         }
  8.         if ($_template->caching && $this->has_nocache_code) {
  9.             $_template->cached->hashes$this->nocache_hash ] = true;
  10.         }
  11.         if ($_template->smarty->debugging) {
  1.             $this->cached->render($this$no_output_filter);
  2.         } else {
  3.             if (!isset($this->compiled) || $this->compiled->compile_id !== $this->compile_id) {
  4.                 $this->loadCompiled(true);
  5.             }
  6.             $this->compiled->render($this);
  7.         }
  8.         // display or fetch
  9.         if ($display) {
  10.             if ($this->caching && $this->smarty->cache_modified_check) {
  11.                 $this->smarty->ext->_cacheModify->cacheModifiedCheck(
  1.             }
  2.         } else {
  3.             if (isset($tpl->compiled)) {
  4.                 $tpl->compiled->render($tpl);
  5.             } else {
  6.                 $tpl->render();
  7.             }
  8.         }
  9.     }
  10.     /**
  1.             $this->state 2;
  2.         }
  3.         if (isset($template) && (($tpl->parent->_isTplObj() && $tpl->parent->source->type !== 'extends')
  4.                                  || $tpl->smarty->extends_recursion)
  5.         ) {
  6.             $tpl->_subTemplateRender(
  7.                 $template,
  8.                 $tpl->cache_id,
  9.                 $tpl->compile_id,
  10.                 $tpl->caching 9999 0,
  11.                 $tpl->cache_lifetime,
  1. <?php 
  2. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_1128550952666c4aece7d4a1_62513853'"javascript-initialization");
  3. ?>
  4. <?php $_smarty_tpl->inheritance->endChild($_smarty_tpl"layout.tpl");
  5. }
  6. /* {block "init"} */
  7. class Block_357335056666c4aece04d43_50209950 extends Smarty_Internal_Block
  8. {
  9. public $subBlocks = array (
  1.             if ($_template->startRenderCallbacks) {
  2.                 foreach ($_template->startRenderCallbacks as $callback) {
  3.                     call_user_func($callback$_template);
  4.                 }
  5.             }
  6.             $unifunc($_template);
  7.             foreach ($_template->endRenderCallbacks as $callback) {
  8.                 call_user_func($callback$_template);
  9.             }
  10.             $_template->isRenderingCache false;
  11.         } catch (Exception $e) {
  1.                 array_merge($_template->cached->file_dependency$this->file_dependency);
  2.         }
  3.         if ($_template->source->handler->uncompiled) {
  4.             $_template->source->handler->renderUncompiled($_template->source$_template);
  5.         } else {
  6.             $this->getRenderedTemplateCode($_template);
  7.         }
  8.         if ($_template->caching && $this->has_nocache_code) {
  9.             $_template->cached->hashes$this->nocache_hash ] = true;
  10.         }
  11.         if ($_template->smarty->debugging) {
  1.             $this->cached->render($this$no_output_filter);
  2.         } else {
  3.             if (!isset($this->compiled) || $this->compiled->compile_id !== $this->compile_id) {
  4.                 $this->loadCompiled(true);
  5.             }
  6.             $this->compiled->render($this);
  7.         }
  8.         // display or fetch
  9.         if ($display) {
  10.             if ($this->caching && $this->smarty->cache_modified_check) {
  11.                 $this->smarty->ext->_cacheModify->cacheModifiedCheck(
  1.                 ob_start();
  2.                 $template->_mergeVars();
  3.                 if (!empty(Smarty::$global_tpl_vars)) {
  4.                     $template->tpl_vars array_merge(Smarty::$global_tpl_vars$template->tpl_vars);
  5.                 }
  6.                 $result $template->render(false$function);
  7.                 $template->_cleanUp();
  8.                 if ($saveVars) {
  9.                     $template->tpl_vars $savedTplVars;
  10.                     $template->config_vars $savedConfigVars;
  11.                 } else {
  1.      * @throws SmartyException
  2.      * @return string rendered template output
  3.      */
  4.     public function fetch($template null$cache_id null$compile_id null$parent null)
  5.     {
  6.         $result $this->_execute($template$cache_id$compile_id$parent0);
  7.         return $result === null ob_get_clean() : $result;
  8.     }
  9.     /**
  10.      * displays a Smarty template
Smarty_Internal_TemplateBase->fetch() in local/modules/TheliaSmarty/Template/SmartyParser.php (line 512)
  1.         if (ConfigQuery::read('smarty_mute_undefined_or_null'0)) {
  2.             $this->muteUndefinedOrNullWarnings();
  3.         }
  4.         $output $this->fetch($resourceType.':'.$resourceContent);
  5.         if (!$compressOutput) {
  6.             $this->registerFilter('output', [$this'trimWhitespaces']);
  7.         }
SmartyParser->internalRenderer() in local/modules/TheliaSmarty/Template/SmartyParser.php (line 540)
  1.     {
  2.         if (false === $this->templateExists($realTemplateName) || false === $this->checkTemplate($realTemplateName)) {
  3.             throw new ResourceNotFoundException(Translator::getInstance()->trans('Template file %file cannot be found.', ['%file' => $realTemplateName]));
  4.         }
  5.         return $this->internalRenderer('file'$realTemplateName$parameters$compressOutput);
  6.     }
  7.     private function checkTemplate($fileName)
  8.     {
  9.         $templates $this->getTemplateDir();
  1.             $viewId $this->request->attributes->get($view.'_id');
  2.             $this->eventDispatcher->dispatch(new ViewCheckEvent($view$viewId), TheliaEvents::VIEW_CHECK);
  3.             $content $this->parser->render($view.'.html');
  4.             if ($content instanceof Response) {
  5.                 $response $content;
  6.             } else {
  7.                 $response = new Response($content$this->parser->getStatus() ?: 200);
  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.         $response $controller(...$arguments);
  2.         // view
  3.         if (!$response instanceof Response) {
  4.             $event = new ViewEvent($this$request$type$response$event);
  5.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  6.             if ($event->hasResponse()) {
  7.                 $response $event->getResponse();
  8.             } else {
  9.                 $msg sprintf('The controller must return a "Symfony\Component\HttpFoundation\Response" object but it returned %s.'$this->varToString($response));
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.      */
  2.     public function handle(Request $request$type HttpKernelInterface::MAIN_REQUEST$catch true): \Symfony\Component\HttpFoundation\Response
  3.     {
  4.         $this->container->get('request.context')->fromRequest($request);
  5.         $response parent::handle($request$type$catch);
  6.         return $response;
  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.             }
  2.         }
  3.         $this->boot();
  4.         return parent::handle($request$type$catch);
  5.     }
  6.     /**
  7.      * Load some configuration
  8.      * Initialize all plugins.
Thelia->handle() in web/index.php (line 32)
  1.     Debug::enable();
  2. }
  3. $thelia = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $thelia->handle($request);
  6. $response->send();
  7. $thelia->terminate($request$response);

PDOException

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'feature_product.is_free_text' in 'SELECT'

  1.         }
  2.         $pdoException null;
  3.         $return null;
  4.         try {
  5.             $return $callback(...$args);
  6.         } catch (PDOException $e) {
  7.             $pdoException $e;
  8.         }
  9.         // For profiling to work, $this->log() needs to be run after the query was executed
  1.         }
  2.         $pdoException null;
  3.         $return null;
  4.         try {
  5.             $return $callback(...$args);
  6.         } catch (PDOException $e) {
  7.             $pdoException $e;
  8.         }
  9.         // For profiling to work, $this->log() needs to be run after the query was executed
  1.     {
  2.         if ($this->connection->useDebug) {
  3.             $sql $this->getExecutedQueryString($inputParameters);
  4.             $args = ($inputParameters !== null) ? [$inputParameters] : [];
  5.             return $this->connection->callUserFunctionWithLogging([$this->statement'execute'], $args$sql);
  6.         }
  7.         return $this->statement->execute($inputParameters);
  8.     }
  1.         try {
  2.             $stmt $this->con->prepare($sql);
  3.             if ($params) {
  4.                 $this->adapter->bindValues($stmt$params$this->dbMap);
  5.             }
  6.             $stmt->execute();
  7.         } catch (Throwable $e) {
  8.             $this->handleStatementException($e$sql$stmt);
  9.         }
  10.         return $stmt;
  1.      */
  2.     protected function runSelect(): DataFetcherInterface
  3.     {
  4.         $params = [];
  5.         $preparedStatementDto SelectQuerySqlBuilder::createSelectSql($this->criteria$params);
  6.         $stmt $this->executeStatement($preparedStatementDto);
  7.         return $this->con->getDataFetcher($stmt);
  8.     }
  9. }
  1.      */
  2.     public static function execute(Criteria $criteria, ?ConnectionInterface $con null): DataFetcherInterface
  3.     {
  4.         $executor = new self($criteria$con);
  5.         return $executor->runSelect();
  6.     }
  7.     /**
  8.      * Builds, binds and executes a SELECT query based on the current object.
  9.      *
  1.      *
  2.      * @return \Propel\Runtime\DataFetcher\DataFetcherInterface A dataFetcher using the connection, ready to be fetched
  3.      */
  4.     public function doSelect(?ConnectionInterface $con null)
  5.     {
  6.         return SelectQueryExecutor::execute($this$con);
  7.     }
  8.     // Fluid operators
  9.     /**
  1.     {
  2.         $this->configureSelectColumns();
  3.         $this->addSelfSelectColumns();
  4.         return parent::doSelect($con);
  5.     }
  6.     /**
  7.      * {@inheritDoc}
  8.      *
  1.             $con Propel::getServiceContainer()->getReadConnection($this->getDbName());
  2.         }
  3.         $this->basePreSelect($con);
  4.         $criteria $this->isKeepQuery() ? clone $this $this;
  5.         $dataFetcher $criteria->doSelect($con);
  6.         return $criteria
  7.             ->getFormatter()
  8.             ->init($criteria)->format($dataFetcher);
  9.     }
  1.             $search->limit($limit);
  2.         }
  3.         $search->offset((int) $this->getArgValue('offset'));
  4.         return $search->find();
  5.     }
  6.     /**
  7.      * @param PropelModelPager|null $pagination
  8.      *
  1.         if ($this->getArgValue('page') !== null) {
  2.             return $this->searchWithPagination($search$pagination);
  3.         }
  4.         return $this->searchWithOffset($search);
  5.     }
  6.     protected function setupSearchContext(ModelCriteria $search): void
  7.     {
  8.         if ($this instanceof SearchLoopInterface) {
  1.         if ($this instanceof PropelSearchLoopInterface) {
  2.             $searchModelCriteria $this->extendsBuildModelCriteria($this->buildModelCriteria());
  3.             if (null !== $searchModelCriteria) {
  4.                 $results $this->search(
  5.                     $searchModelCriteria,
  6.                     $pagination
  7.                 );
  8.             }
  9.         } elseif ($this instanceof ArraySearchLoopInterface) {
  1.                 self::$pagination[$name] = null;
  2.                 // We have to clone the result, as exec() returns a cached LoopResult object, which may cause side effects
  3.                 // if loops with the same argument set are nested (see https://github.com/thelia/thelia/issues/2213)
  4.                 $loopResults = clone $loop->exec(self::$pagination[$name]);
  5.                 $loopResults->rewind();
  6.             } catch (ElementNotFoundException $ex) {
  7.                 // If loop is not found, when in development mode, rethrow the exception to make it visible
  8.                 //                if ($this->isDebugActive) {
  1. if (!is_callable(array($_block_plugin33'theliaLoop'))) {
  2. throw new SmartyException('block tag \'loop\' not callable or registered');
  3. }
  4. $_smarty_tpl->smarty->_cache['_tag_stack'][] = array('loop', array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value));
  5. $_block_repeat=true;
  6. echo $_block_plugin33->theliaLoop(array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value), null$_smarty_tpl$_block_repeat);
  7. while ($_block_repeat) {
  8. ob_start();
  9. if ($_smarty_tpl->tpl_vars['LOOP_COUNT']->value 1) {?><?php } else { ?> <?php }?><span><?php echo TheliaSmarty\Template\SmartyParser::theliaEscape($_smarty_tpl->tpl_vars['TITLE']->value,$_smarty_tpl);?>
  10. </span><?php $_block_repeat=false;
  11. echo $_block_plugin33->theliaLoop(array('name'=>"feature_value_info",'type'=>"feature_value",'feature'=>$_prefixVariable30,'product'=>$_smarty_tpl->tpl_vars['product_id']->value), ob_get_clean(), $_smarty_tpl$_block_repeat);
  1.      */
  2.     public function callBlock(Smarty_Internal_Block $blockSmarty_Internal_Template $tpl)
  3.     {
  4.         $this->sourceStack[] = $tpl->source;
  5.         $tpl->source $this->sources$block->tplIndex ];
  6.         $block->callBlock($tpl);
  7.         $tpl->source array_pop($this->sourceStack);
  8.     }
  9. }
  1.         $block->parent $parent;
  2.         if ($block->append && !$block->prepend && isset($parent)) {
  3.             $this->callParent($tpl$block'\'{block append}\'');
  4.         }
  5.         if ($block->callsChild || !isset($block->child) || ($block->child->hide && !isset($block->child->child))) {
  6.             $this->callBlock($block$tpl);
  7.         } else {
  8.             $this->process($tpl$block->child$block);
  9.         }
  10.         if ($block->prepend && isset($parent)) {
  11.             $this->callParent($tpl$block'{block prepend}');
  1.             $this->callParent($tpl$block'\'{block append}\'');
  2.         }
  3.         if ($block->callsChild || !isset($block->child) || ($block->child->hide && !isset($block->child->child))) {
  4.             $this->callBlock($block$tpl);
  5.         } else {
  6.             $this->process($tpl$block->child$block);
  7.         }
  8.         if ($block->prepend && isset($parent)) {
  9.             $this->callParent($tpl$block'{block prepend}');
  10.             if ($block->append) {
  11.                 if ($block->callsChild || !isset($block->child)
  1.         }
  2.         // make sure we got child block of child template of current block
  3.         while ($block->child && $block->child->child && $block->tplIndex <= $block->child->tplIndex) {
  4.             $block->child $block->child->child;
  5.         }
  6.         $this->process($tpl$block);
  7.     }
  8.     /**
  9.      * Goto child block or render this
  10.      *
  1.                 <?php 
  2. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_1799842295666c4ae4883931_18252255'"breadcrumb");
  3. ?>
  4.                 <div id="content"><?php 
  5. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_2093276931666c4ae4884b90_28334379'"main-content");
  6. ?>
  7. </div>
  8.                 <?php echo call_user_func_array$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION]['hook'][0], array( array('name'=>"main.content-bottom"),$_smarty_tpl ) );?>
  9.             </div><!-- /.container -->
  1.             if ($_template->startRenderCallbacks) {
  2.                 foreach ($_template->startRenderCallbacks as $callback) {
  3.                     call_user_func($callback$_template);
  4.                 }
  5.             }
  6.             $unifunc($_template);
  7.             foreach ($_template->endRenderCallbacks as $callback) {
  8.                 call_user_func($callback$_template);
  9.             }
  10.             $_template->isRenderingCache false;
  11.         } catch (Exception $e) {
  1.                 array_merge($_template->cached->file_dependency$this->file_dependency);
  2.         }
  3.         if ($_template->source->handler->uncompiled) {
  4.             $_template->source->handler->renderUncompiled($_template->source$_template);
  5.         } else {
  6.             $this->getRenderedTemplateCode($_template);
  7.         }
  8.         if ($_template->caching && $this->has_nocache_code) {
  9.             $_template->cached->hashes$this->nocache_hash ] = true;
  10.         }
  11.         if ($_template->smarty->debugging) {
  1.             $this->cached->render($this$no_output_filter);
  2.         } else {
  3.             if (!isset($this->compiled) || $this->compiled->compile_id !== $this->compile_id) {
  4.                 $this->loadCompiled(true);
  5.             }
  6.             $this->compiled->render($this);
  7.         }
  8.         // display or fetch
  9.         if ($display) {
  10.             if ($this->caching && $this->smarty->cache_modified_check) {
  11.                 $this->smarty->ext->_cacheModify->cacheModifiedCheck(
  1.             }
  2.         } else {
  3.             if (isset($tpl->compiled)) {
  4.                 $tpl->compiled->render($tpl);
  5.             } else {
  6.                 $tpl->render();
  7.             }
  8.         }
  9.     }
  10.     /**
  1.             $this->state 2;
  2.         }
  3.         if (isset($template) && (($tpl->parent->_isTplObj() && $tpl->parent->source->type !== 'extends')
  4.                                  || $tpl->smarty->extends_recursion)
  5.         ) {
  6.             $tpl->_subTemplateRender(
  7.                 $template,
  8.                 $tpl->cache_id,
  9.                 $tpl->compile_id,
  10.                 $tpl->caching 9999 0,
  11.                 $tpl->cache_lifetime,
  1. <?php 
  2. $_smarty_tpl->inheritance->instanceBlock($_smarty_tpl'Block_1128550952666c4aece7d4a1_62513853'"javascript-initialization");
  3. ?>
  4. <?php $_smarty_tpl->inheritance->endChild($_smarty_tpl"layout.tpl");
  5. }
  6. /* {block "init"} */
  7. class Block_357335056666c4aece04d43_50209950 extends Smarty_Internal_Block
  8. {
  9. public $subBlocks = array (
  1.             if ($_template->startRenderCallbacks) {
  2.                 foreach ($_template->startRenderCallbacks as $callback) {
  3.                     call_user_func($callback$_template);
  4.                 }
  5.             }
  6.             $unifunc($_template);
  7.             foreach ($_template->endRenderCallbacks as $callback) {
  8.                 call_user_func($callback$_template);
  9.             }
  10.             $_template->isRenderingCache false;
  11.         } catch (Exception $e) {
  1.                 array_merge($_template->cached->file_dependency$this->file_dependency);
  2.         }
  3.         if ($_template->source->handler->uncompiled) {
  4.             $_template->source->handler->renderUncompiled($_template->source$_template);
  5.         } else {
  6.             $this->getRenderedTemplateCode($_template);
  7.         }
  8.         if ($_template->caching && $this->has_nocache_code) {
  9.             $_template->cached->hashes$this->nocache_hash ] = true;
  10.         }
  11.         if ($_template->smarty->debugging) {
  1.             $this->cached->render($this$no_output_filter);
  2.         } else {
  3.             if (!isset($this->compiled) || $this->compiled->compile_id !== $this->compile_id) {
  4.                 $this->loadCompiled(true);
  5.             }
  6.             $this->compiled->render($this);
  7.         }
  8.         // display or fetch
  9.         if ($display) {
  10.             if ($this->caching && $this->smarty->cache_modified_check) {
  11.                 $this->smarty->ext->_cacheModify->cacheModifiedCheck(
  1.                 ob_start();
  2.                 $template->_mergeVars();
  3.                 if (!empty(Smarty::$global_tpl_vars)) {
  4.                     $template->tpl_vars array_merge(Smarty::$global_tpl_vars$template->tpl_vars);
  5.                 }
  6.                 $result $template->render(false$function);
  7.                 $template->_cleanUp();
  8.                 if ($saveVars) {
  9.                     $template->tpl_vars $savedTplVars;
  10.                     $template->config_vars $savedConfigVars;
  11.                 } else {
  1.      * @throws SmartyException
  2.      * @return string rendered template output
  3.      */
  4.     public function fetch($template null$cache_id null$compile_id null$parent null)
  5.     {
  6.         $result $this->_execute($template$cache_id$compile_id$parent0);
  7.         return $result === null ob_get_clean() : $result;
  8.     }
  9.     /**
  10.      * displays a Smarty template
Smarty_Internal_TemplateBase->fetch() in local/modules/TheliaSmarty/Template/SmartyParser.php (line 512)
  1.         if (ConfigQuery::read('smarty_mute_undefined_or_null'0)) {
  2.             $this->muteUndefinedOrNullWarnings();
  3.         }
  4.         $output $this->fetch($resourceType.':'.$resourceContent);
  5.         if (!$compressOutput) {
  6.             $this->registerFilter('output', [$this'trimWhitespaces']);
  7.         }
SmartyParser->internalRenderer() in local/modules/TheliaSmarty/Template/SmartyParser.php (line 540)
  1.     {
  2.         if (false === $this->templateExists($realTemplateName) || false === $this->checkTemplate($realTemplateName)) {
  3.             throw new ResourceNotFoundException(Translator::getInstance()->trans('Template file %file cannot be found.', ['%file' => $realTemplateName]));
  4.         }
  5.         return $this->internalRenderer('file'$realTemplateName$parameters$compressOutput);
  6.     }
  7.     private function checkTemplate($fileName)
  8.     {
  9.         $templates $this->getTemplateDir();
  1.             $viewId $this->request->attributes->get($view.'_id');
  2.             $this->eventDispatcher->dispatch(new ViewCheckEvent($view$viewId), TheliaEvents::VIEW_CHECK);
  3.             $content $this->parser->render($view.'.html');
  4.             if ($content instanceof Response) {
  5.                 $response $content;
  6.             } else {
  7.                 $response = new Response($content$this->parser->getStatus() ?: 200);
  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.         $response $controller(...$arguments);
  2.         // view
  3.         if (!$response instanceof Response) {
  4.             $event = new ViewEvent($this$request$type$response$event);
  5.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  6.             if ($event->hasResponse()) {
  7.                 $response $event->getResponse();
  8.             } else {
  9.                 $msg sprintf('The controller must return a "Symfony\Component\HttpFoundation\Response" object but it returned %s.'$this->varToString($response));
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.      */
  2.     public function handle(Request $request$type HttpKernelInterface::MAIN_REQUEST$catch true): \Symfony\Component\HttpFoundation\Response
  3.     {
  4.         $this->container->get('request.context')->fromRequest($request);
  5.         $response parent::handle($request$type$catch);
  6.         return $response;
  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.             }
  2.         }
  3.         $this->boot();
  4.         return parent::handle($request$type$catch);
  5.     }
  6.     /**
  7.      * Load some configuration
  8.      * Initialize all plugins.
Thelia->handle() in web/index.php (line 32)
  1.     Debug::enable();
  2. }
  3. $thelia = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $thelia->handle($request);
  6. $response->send();
  7. $thelia->terminate($request$response);

Logs

Level Message
debug 01:02:34 Notified event "thelia_kernel.session" to listener "Thelia\Core\EventListener\SessionListener::testSession".
{
    "event": "thelia_kernel.session",
    "listener": "Thelia\\Core\\EventListener\\SessionListener::testSession"
}
debug 01:02:34 Notified event "thelia_kernel.session" to listener "Thelia\Core\EventListener\SessionListener::prodSession".
{
    "event": "thelia_kernel.session",
    "listener": "Thelia\\Core\\EventListener\\SessionListener::prodSession"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::sessionInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::sessionInit"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::paramInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::paramInit"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:34 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 01:02:34 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
info 01:02:34 Deprecated: Creation of dynamic property Smarty_Internal_Extension_Handler::$registerFilter is deprecated
{
    "exception": {}
}
info 01:02:34 Deprecated: Creation of dynamic property Smarty_Internal_Extension_Handler::$registerPlugin is deprecated
{
    "exception": {}
}
debug 01:02:34 Notified event "kernel.controller" to listener "Thelia\Core\EventListener\ControllerListener::adminFirewall".
{
    "event": "kernel.controller",
    "listener": "Thelia\\Core\\EventListener\\ControllerListener::adminFirewall"
}
debug 01:02:34 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 01:02:34 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 01:02:34 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 01:02:34 Notified event "kernel.controller_arguments" to listener "Container716GM1G\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container716GM1G\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
debug 01:02:34 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 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::sessionInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::sessionInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::paramInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::paramInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Thelia\Core\EventListener\ControllerListener::adminFirewall".
{
    "event": "kernel.controller",
    "listener": "Thelia\\Core\\EventListener\\ControllerListener::adminFirewall"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Container716GM1G\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container716GM1G\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
debug 01:02:35 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 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\RequestListener::registerPreviousUrl".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerPreviousUrl"
}
debug 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\ResponseListener::beforeResponse".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\ResponseListener::beforeResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\RequestListener::registerPreviousUrl".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerPreviousUrl"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
debug 01:02:35 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 01:02:35 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 01:02:35 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 01:02:35 Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
debug 01:02:35 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 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::sessionInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::sessionInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::paramInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::paramInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Thelia\Core\EventListener\ControllerListener::adminFirewall".
{
    "event": "kernel.controller",
    "listener": "Thelia\\Core\\EventListener\\ControllerListener::adminFirewall"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Container716GM1G\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container716GM1G\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
debug 01:02:35 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 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\RequestListener::registerPreviousUrl".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerPreviousUrl"
}
debug 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\ResponseListener::beforeResponse".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\ResponseListener::beforeResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Thelia\Core\EventListener\RequestListener::registerPreviousUrl".
{
    "event": "kernel.response",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerPreviousUrl"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
debug 01:02:35 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
debug 01:02:35 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 01:02:35 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 01:02:35 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 01:02:35 Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
debug 01:02:35 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 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::sessionInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::sessionInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\KernelListener::paramInit".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\KernelListener::paramInit"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::checkCurrency".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::checkCurrency"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::registerValidatorTranslator".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::registerValidatorTranslator"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::rememberMeLoader".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::rememberMeLoader"
}
debug 01:02:35 Notified event "kernel.request" to listener "Thelia\Core\EventListener\RequestListener::jsonBody".
{
    "event": "kernel.request",
    "listener": "Thelia\\Core\\EventListener\\RequestListener::jsonBody"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Thelia\Core\EventListener\ControllerListener::adminFirewall".
{
    "event": "kernel.controller",
    "listener": "Thelia\\Core\\EventListener\\ControllerListener::adminFirewall"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Container716GM1G\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container716GM1G\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
debug 01:02:35 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] QueryExecutionException
Propel\Runtime\ActiveQuery\QueryExecutor\QueryExecutionException:
Unable to execute statement [SELECT `feature_product`.`id`, `feature_product`.`product_id`, `feature_product`.`feature_id`, `feature_product`.`feature_av_id`, `feature_product`.`free_text_value`, `feature_product`.`is_free_text`, `feature_product`.`position`, `feature_product`.`created_at`, `feature_product`.`updated_at`, NOT ISNULL(`feature_av_requested_locale_i18n`.`ID`) AS feature_av_IS_TRANSLATED, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`TITLE`) THEN `feature_av_requested_locale_i18n`.`TITLE` ELSE `feature_av_default_locale_i18n`.`TITLE` END AS feature_av_i18n_TITLE, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`CHAPO`) THEN `feature_av_requested_locale_i18n`.`CHAPO` ELSE `feature_av_default_locale_i18n`.`CHAPO` END AS feature_av_i18n_CHAPO, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`DESCRIPTION`) THEN `feature_av_requested_locale_i18n`.`DESCRIPTION` ELSE `feature_av_default_locale_i18n`.`DESCRIPTION` END AS feature_av_i18n_DESCRIPTION, CASE WHEN NOT ISNULL(`feature_av_requested_locale_i18n`.`POSTSCRIPTUM`) THEN `feature_av_requested_locale_i18n`.`POSTSCRIPTUM` ELSE `feature_av_default_locale_i18n`.`POSTSCRIPTUM` END AS feature_av_i18n_POSTSCRIPTUM, `feature_av`.`position` AS feature_av_position FROM `feature_product` LEFT JOIN `feature_av_i18n` `feature_av_default_locale_i18n` ON (`feature_product`.`feature_av_id`=`feature_av_default_locale_i18n`.`id` AND `feature_av_default_locale_i18n`.LOCALE = 'fr_FR') LEFT JOIN `feature_av_i18n` `feature_av_requested_locale_i18n` ON (`feature_product`.`feature_av_id`=`feature_av_requested_locale_i18n`.`id` AND `feature_av_requested_locale_i18n`.LOCALE = 'fr_FR') LEFT JOIN `feature_av` `feature_av` ON (`feature_product`.`feature_av_id`=`feature_av`.`id`) WHERE `feature_product`.`feature_id`='54' AND `feature_product`.`product_id`='698' ORDER BY feature_av_position ASC LIMIT 9223372036854775807]
Reason: [SQLSTATE[42S22]: Column not found: 1054 Unknown column 'feature_product.is_free_text' in 'SELECT']

  at vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/AbstractQueryExecutor.php:136
  at Propel\Runtime\ActiveQuery\QueryExecutor\AbstractQueryExecutor->handleStatementException()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/AbstractQueryExecutor.php:105)
  at Propel\Runtime\ActiveQuery\QueryExecutor\AbstractQueryExecutor->executeStatement()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/SelectQueryExecutor.php:49)
  at Propel\Runtime\ActiveQuery\QueryExecutor\SelectQueryExecutor->runSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/SelectQueryExecutor.php:37)
  at Propel\Runtime\ActiveQuery\QueryExecutor\SelectQueryExecutor::execute()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/Criteria.php:2436)
  at Propel\Runtime\ActiveQuery\Criteria->doSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:2249)
  at Propel\Runtime\ActiveQuery\ModelCriteria->doSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1281)
  at Propel\Runtime\ActiveQuery\ModelCriteria->find()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:450)
  at Thelia\Core\Template\Element\BaseLoop->searchWithOffset()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:377)
  at Thelia\Core\Template\Element\BaseLoop->search()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:530)
  at Thelia\Core\Template\Element\BaseLoop->exec()
     (local/modules/TheliaSmarty/Template/Plugins/TheliaLoop.php:195)
  at TheliaSmarty\Template\Plugins\TheliaLoop->theliaLoop()
     (var/cache/dev/smarty/compile/1619f605b74f5f20a2a4784de43176956cd66534_0.file.product.html.php:972)
  at Block_1535089425666c4aece220c0_90814633->callBlock()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248)
  at Smarty_Internal_Runtime_Inheritance->callBlock()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184)
  at Smarty_Internal_Runtime_Inheritance->process()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186)
  at Smarty_Internal_Runtime_Inheritance->process()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156)
  at Smarty_Internal_Runtime_Inheritance->instanceBlock()
     (var/cache/dev/smarty/compile/f8b704233fc3e9af985cfbb7a25e35af95cb706a_0.file.layout.tpl.php:350)
  at content_666c4ae489c033_14623115()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123)
  at Smarty_Template_Resource_Base->getRenderedTemplateCode()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114)
  at Smarty_Template_Compiled->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216)
  at Smarty_Internal_Template->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385)
  at Smarty_Internal_Template->_subTemplateRender()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115)
  at Smarty_Internal_Runtime_Inheritance->endChild()
     (var/cache/dev/smarty/compile/1619f605b74f5f20a2a4784de43176956cd66534_0.file.product.html.php:75)
  at content_666c4aece7e069_11471585()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123)
  at Smarty_Template_Resource_Base->getRenderedTemplateCode()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114)
  at Smarty_Template_Compiled->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216)
  at Smarty_Internal_Template->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238)
  at Smarty_Internal_TemplateBase->_execute()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116)
  at Smarty_Internal_TemplateBase->fetch()
     (local/modules/TheliaSmarty/Template/SmartyParser.php:512)
  at TheliaSmarty\Template\SmartyParser->internalRenderer()
     (local/modules/TheliaSmarty/Template/SmartyParser.php:540)
  at TheliaSmarty\Template\SmartyParser->render()
     (vendor/thelia/core/lib/Thelia/Core/EventListener/ViewListener.php:90)
  at Thelia\Core\EventListener\ViewListener->onKernelView()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:186)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/thelia/core/lib/Thelia/Core/TheliaHttpKernel.php:72)
  at Thelia\Core\TheliaHttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/thelia/core/lib/Thelia/Core/Thelia.php:437)
  at Thelia\Core\Thelia->handle()
     (web/index.php:32)                
[1/2] PDOException
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'feature_product.is_free_text' in 'SELECT'

  at vendor/thelia/propel/src/Propel/Runtime/Connection/ConnectionWrapper.php:492
  at PDOStatement->execute()
     (vendor/thelia/propel/src/Propel/Runtime/Connection/ConnectionWrapper.php:492)
  at Propel\Runtime\Connection\ConnectionWrapper->callUserFunctionWithLogging()
     (vendor/thelia/propel/src/Propel/Runtime/Connection/StatementWrapper.php:212)
  at Propel\Runtime\Connection\StatementWrapper->execute()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/AbstractQueryExecutor.php:103)
  at Propel\Runtime\ActiveQuery\QueryExecutor\AbstractQueryExecutor->executeStatement()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/SelectQueryExecutor.php:49)
  at Propel\Runtime\ActiveQuery\QueryExecutor\SelectQueryExecutor->runSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/QueryExecutor/SelectQueryExecutor.php:37)
  at Propel\Runtime\ActiveQuery\QueryExecutor\SelectQueryExecutor::execute()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/Criteria.php:2436)
  at Propel\Runtime\ActiveQuery\Criteria->doSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:2249)
  at Propel\Runtime\ActiveQuery\ModelCriteria->doSelect()
     (vendor/thelia/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1281)
  at Propel\Runtime\ActiveQuery\ModelCriteria->find()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:450)
  at Thelia\Core\Template\Element\BaseLoop->searchWithOffset()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:377)
  at Thelia\Core\Template\Element\BaseLoop->search()
     (vendor/thelia/core/lib/Thelia/Core/Template/Element/BaseLoop.php:530)
  at Thelia\Core\Template\Element\BaseLoop->exec()
     (local/modules/TheliaSmarty/Template/Plugins/TheliaLoop.php:195)
  at TheliaSmarty\Template\Plugins\TheliaLoop->theliaLoop()
     (var/cache/dev/smarty/compile/1619f605b74f5f20a2a4784de43176956cd66534_0.file.product.html.php:972)
  at Block_1535089425666c4aece220c0_90814633->callBlock()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248)
  at Smarty_Internal_Runtime_Inheritance->callBlock()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184)
  at Smarty_Internal_Runtime_Inheritance->process()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186)
  at Smarty_Internal_Runtime_Inheritance->process()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156)
  at Smarty_Internal_Runtime_Inheritance->instanceBlock()
     (var/cache/dev/smarty/compile/f8b704233fc3e9af985cfbb7a25e35af95cb706a_0.file.layout.tpl.php:350)
  at content_666c4ae489c033_14623115()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123)
  at Smarty_Template_Resource_Base->getRenderedTemplateCode()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114)
  at Smarty_Template_Compiled->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216)
  at Smarty_Internal_Template->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385)
  at Smarty_Internal_Template->_subTemplateRender()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115)
  at Smarty_Internal_Runtime_Inheritance->endChild()
     (var/cache/dev/smarty/compile/1619f605b74f5f20a2a4784de43176956cd66534_0.file.product.html.php:75)
  at content_666c4aece7e069_11471585()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123)
  at Smarty_Template_Resource_Base->getRenderedTemplateCode()
     (vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114)
  at Smarty_Template_Compiled->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216)
  at Smarty_Internal_Template->render()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238)
  at Smarty_Internal_TemplateBase->_execute()
     (vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116)
  at Smarty_Internal_TemplateBase->fetch()
     (local/modules/TheliaSmarty/Template/SmartyParser.php:512)
  at TheliaSmarty\Template\SmartyParser->internalRenderer()
     (local/modules/TheliaSmarty/Template/SmartyParser.php:540)
  at TheliaSmarty\Template\SmartyParser->render()
     (vendor/thelia/core/lib/Thelia/Core/EventListener/ViewListener.php:90)
  at Thelia\Core\EventListener\ViewListener->onKernelView()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:186)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/thelia/core/lib/Thelia/Core/TheliaHttpKernel.php:72)
  at Thelia\Core\TheliaHttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/thelia/core/lib/Thelia/Core/Thelia.php:437)
  at Thelia\Core\Thelia->handle()
     (web/index.php:32)