Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
Show exception properties
Doctrine\DBAL\Exception\InvalidFieldNameException {#1665 -query: Doctrine\DBAL\Query {#1666 -sql: "SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0" -params: [] -types: [] } }
return new UniqueConstraintViolationException($exception, $query);case 1054:case 1166:case 1611:return new InvalidFieldNameException($exception, $query);case 1052:case 1060:case 1110:return new NonUniqueFieldNameException($exception, $query);
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1976)
private function handleDriverException(Driver\Exception $driverException,?Query $query): DriverException {$this->exceptionConverter ??= $this->_driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1918)
Driver\Exception $e,string $sql,array $params = [],array $types = []): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/** @internal */final public function convertException(Driver\Exception $e): DriverException{
in
vendor/doctrine/dbal/src/Connection.php
->
convertExceptionDuringQuery
(line 1111)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);} finally {if ($logger !== null) {$logger->stopQuery();}}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 995)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 224)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 206)
** @phpstan-return list<T> The entities.*/public function findAll(){return $this->findBy([]);}/*** Finds entities by a set of criteria.*
* Retourne les options de la plateforme pour le tenant courant.* L'isolation multi-tenant est assurée par TenantConnection : chaque tenant a sa propre BDD.*/public function getPlatformOptions(): PlatformOptions{$platformOptions = $this->platformOptionsRepository->findAll();if (!$platformOptions) {$platformOptions = new PlatformOptions();$this->entityManager->persist($platformOptions);$this->entityManager->flush();} else {
{public function __construct(protected PlatformService $platformService, protected EntityManagerInterface $entityManager, protected Security $security) {}public function getGlobals(): array{$platformOptions = $this->platformService->getPlatformOptions();$notificationRepository = $this->entityManager->getRepository(Notification::class);$ticketRepository = $this->entityManager->getRepository(Ticket::class);$user = $this->security->getUser();$userNotifications = null;
in
vendor/twig/twig/src/ExtensionSet.php
->
getGlobals
(line 365)
foreach ($this->extensions as $extension) {if (!$extension instanceof GlobalsInterface) {continue;}$globals = array_merge($globals, $extension->getGlobals());}if ($this->initialized) {$this->globals = $globals;}
in
vendor/twig/twig/src/Environment.php
->
getGlobals
(line 908)
*/public function getGlobals(): array{if ($this->extensionSet->isInitialized()) {if (null === $this->resolvedGlobals) {$this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);}return $this->resolvedGlobals;}
in
vendor/twig/twig/src/Template.php
->
getGlobals
(line 398)
/*** @return iterable<scalar|\Stringable|null>*/public function yield(array $context, array $blocks = []): iterable{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 452)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 457)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 257)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
in
src/Controller/Platform/SecurityController.php
(line 49)
$error = $authenticationUtils->getLastAuthenticationError();// last username entered by the user$lastUsername = $authenticationUtils->getLastUsername();$session->set('login_url', 'platform_login');return $this->render('platform/security/login.html.twig', ['last_username' => $lastUsername,'error' => $error,'page' => (new Page()),]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
login
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?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']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 24)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
::
new
(line 76)
$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);}}/*** {@inheritDoc}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 43)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
->
query
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1106)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 995)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 224)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 206)
** @phpstan-return list<T> The entities.*/public function findAll(){return $this->findBy([]);}/*** Finds entities by a set of criteria.*
* Retourne les options de la plateforme pour le tenant courant.* L'isolation multi-tenant est assurée par TenantConnection : chaque tenant a sa propre BDD.*/public function getPlatformOptions(): PlatformOptions{$platformOptions = $this->platformOptionsRepository->findAll();if (!$platformOptions) {$platformOptions = new PlatformOptions();$this->entityManager->persist($platformOptions);$this->entityManager->flush();} else {
{public function __construct(protected PlatformService $platformService, protected EntityManagerInterface $entityManager, protected Security $security) {}public function getGlobals(): array{$platformOptions = $this->platformService->getPlatformOptions();$notificationRepository = $this->entityManager->getRepository(Notification::class);$ticketRepository = $this->entityManager->getRepository(Ticket::class);$user = $this->security->getUser();$userNotifications = null;
in
vendor/twig/twig/src/ExtensionSet.php
->
getGlobals
(line 365)
foreach ($this->extensions as $extension) {if (!$extension instanceof GlobalsInterface) {continue;}$globals = array_merge($globals, $extension->getGlobals());}if ($this->initialized) {$this->globals = $globals;}
in
vendor/twig/twig/src/Environment.php
->
getGlobals
(line 908)
*/public function getGlobals(): array{if ($this->extensionSet->isInitialized()) {if (null === $this->resolvedGlobals) {$this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);}return $this->resolvedGlobals;}
in
vendor/twig/twig/src/Template.php
->
getGlobals
(line 398)
/*** @return iterable<scalar|\Stringable|null>*/public function yield(array $context, array $blocks = []): iterable{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 452)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 457)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 257)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
in
src/Controller/Platform/SecurityController.php
(line 49)
$error = $authenticationUtils->getLastAuthenticationError();// last username entered by the user$lastUsername = $authenticationUtils->getLastUsername();$session->set('login_url', 'platform_login');return $this->render('platform/security/login.html.twig', ['last_username' => $lastUsername,'error' => $error,'page' => (new Page()),]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
login
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?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']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
(line 71)
}public function query(string $sql): ResultInterface{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
->
query
(line 71)
}public function query(string $sql): ResultInterface{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 43)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
->
query
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1106)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 995)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 224)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 206)
** @phpstan-return list<T> The entities.*/public function findAll(){return $this->findBy([]);}/*** Finds entities by a set of criteria.*
* Retourne les options de la plateforme pour le tenant courant.* L'isolation multi-tenant est assurée par TenantConnection : chaque tenant a sa propre BDD.*/public function getPlatformOptions(): PlatformOptions{$platformOptions = $this->platformOptionsRepository->findAll();if (!$platformOptions) {$platformOptions = new PlatformOptions();$this->entityManager->persist($platformOptions);$this->entityManager->flush();} else {
{public function __construct(protected PlatformService $platformService, protected EntityManagerInterface $entityManager, protected Security $security) {}public function getGlobals(): array{$platformOptions = $this->platformService->getPlatformOptions();$notificationRepository = $this->entityManager->getRepository(Notification::class);$ticketRepository = $this->entityManager->getRepository(Ticket::class);$user = $this->security->getUser();$userNotifications = null;
in
vendor/twig/twig/src/ExtensionSet.php
->
getGlobals
(line 365)
foreach ($this->extensions as $extension) {if (!$extension instanceof GlobalsInterface) {continue;}$globals = array_merge($globals, $extension->getGlobals());}if ($this->initialized) {$this->globals = $globals;}
in
vendor/twig/twig/src/Environment.php
->
getGlobals
(line 908)
*/public function getGlobals(): array{if ($this->extensionSet->isInitialized()) {if (null === $this->resolvedGlobals) {$this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);}return $this->resolvedGlobals;}
in
vendor/twig/twig/src/Template.php
->
getGlobals
(line 398)
/*** @return iterable<scalar|\Stringable|null>*/public function yield(array $context, array $blocks = []): iterable{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 452)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 457)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 257)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
in
src/Controller/Platform/SecurityController.php
(line 49)
$error = $authenticationUtils->getLastAuthenticationError();// last username entered by the user$lastUsername = $authenticationUtils->getLastUsername();$session->set('login_url', 'platform_login');return $this->render('platform/security/login.html.twig', ['last_username' => $lastUsername,'error' => $error,'page' => (new Page()),]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
login
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?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']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 13:47:44 | deprecation |
User Deprecated: Method "Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()" might add "void" as a native return type declaration in the future. Do the same in implementation "Akyos\PaymentBundle\DependencyInjection\PaymentBundleExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 13:47:44 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://gfv.akyos.com/_profiler/latest?ip=84.32.70.55&type=request",
"method": "GET"
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Annotations support is deprecated, migrate your application to use attributes and pass an instance of Gedmo\Mapping\Driver\AttributeReader to the Gedmo\Mapping\MappedEventSubscriber::setAnnotationReader() method instead. (MappedEventSubscriber.php:196 called by getStofDoctrineExtensions_Listener_TranslatableService.php:28, https://github.com/doctrine-extensions/DoctrineExtensions/pull/2772, package gedmo/doctrine-extensions) {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by App_KernelDevDebugContainer.php:4183, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:65 called by App_KernelDevDebugContainer.php:4173, https://github.com/doctrine/orm/issues/10098, package doctrine/orm) {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Gedmo\Sluggable\SluggableListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
"exception": {}
}
|
| INFO 13:47:44 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "App\EventListener\ActionLogSuscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
"exception": {}
}
|
Stack Traces 3
|
[3/3]
InvalidFieldNameException
|
|---|
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.test_mode' in 'field list'
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:69
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1976)
at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1918)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), 'SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0', array(), array())
(vendor/doctrine/dbal/src/Connection.php:1111)
at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0', array(), array())
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:995)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
(vendor/doctrine/orm/src/EntityRepository.php:224)
at Doctrine\ORM\EntityRepository->findBy(array())
(vendor/doctrine/orm/src/EntityRepository.php:206)
at Doctrine\ORM\EntityRepository->findAll()
(src/Services/PlatformService.php:56)
at App\Services\PlatformService->getPlatformOptions()
(src/Twig/GlobalsExtension.php:23)
at App\Twig\GlobalsExtension->getGlobals()
(vendor/twig/twig/src/ExtensionSet.php:365)
at Twig\ExtensionSet->getGlobals()
(vendor/twig/twig/src/Environment.php:908)
at Twig\Environment->getGlobals()
(vendor/twig/twig/src/Template.php:398)
at Twig\Template->yield(array('last_username' => '', 'error' => null, 'page' => object(Page)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:452)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:457)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(src/Controller/Platform/SecurityController.php:49)
at App\Controller\Platform\SecurityController->login(object(AuthenticationUtils), object(RequestStack))
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:208)
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:29)
at require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.test_mode' in 'field list'
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:76)
at Doctrine\DBAL\Driver\PDO\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Logging/Connection.php:43)
at Doctrine\DBAL\Logging\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Connection.php:1106)
at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0', array(), array())
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:995)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
(vendor/doctrine/orm/src/EntityRepository.php:224)
at Doctrine\ORM\EntityRepository->findBy(array())
(vendor/doctrine/orm/src/EntityRepository.php:206)
at Doctrine\ORM\EntityRepository->findAll()
(src/Services/PlatformService.php:56)
at App\Services\PlatformService->getPlatformOptions()
(src/Twig/GlobalsExtension.php:23)
at App\Twig\GlobalsExtension->getGlobals()
(vendor/twig/twig/src/ExtensionSet.php:365)
at Twig\ExtensionSet->getGlobals()
(vendor/twig/twig/src/Environment.php:908)
at Twig\Environment->getGlobals()
(vendor/twig/twig/src/Template.php:398)
at Twig\Template->yield(array('last_username' => '', 'error' => null, 'page' => object(Page)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:452)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:457)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(src/Controller/Platform/SecurityController.php:49)
at App\Controller\Platform\SecurityController->login(object(AuthenticationUtils), object(RequestStack))
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:208)
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:29)
at require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.test_mode' in 'field list'
at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71
at PDO->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71)
at Doctrine\DBAL\Driver\PDO\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Logging/Connection.php:43)
at Doctrine\DBAL\Logging\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0')
(vendor/doctrine/dbal/src/Connection.php:1106)
at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.platform_logo AS platform_logo_2, t0.platform_main_color AS platform_main_color_3, t0.platform_favicon AS platform_favicon_4, t0.platform_title AS platform_title_5, t0.push_notification_logo AS push_notification_logo_6, t0.push_notification_badge AS push_notification_badge_7, t0.contract_template_legal_person AS contract_template_legal_person_8, t0.contract_template_natural_person1 AS contract_template_natural_person1_9, t0.contract_template_natural_person2 AS contract_template_natural_person2_10, t0.contract_template_natural_person3 AS contract_template_natural_person3_11, t0.contract_template_natural_person4 AS contract_template_natural_person4_12, t0.contract_template_participation AS contract_template_participation_13, t0.ifu_template AS ifu_template_14, t0.primary_market_description AS primary_market_description_15, t0.secondary_market_reassurance AS secondary_market_reassurance_16, t0.payment_fees_sell_secondary_market AS payment_fees_sell_secondary_market_17, t0.payment_fees_buy_secondary_market AS payment_fees_buy_secondary_market_18, t0.sell_fees_platform AS sell_fees_platform_19, t0.page_one_ifu AS page_one_ifu_20, t0.page_three_ifu AS page_three_ifu_21, t0.given_power_pdf AS given_power_pdf_22, t0.sign_only_pdf AS sign_only_pdf_23, t0.duplicata_pdf AS duplicata_pdf_24, t0.universign_primary_market_email AS universign_primary_market_email_25, t0.universign_agemail AS universign_agemail_26, t0.universign_secondary_market_email AS universign_secondary_market_email_27, t0.contract_summary_text AS contract_summary_text_28, t0.contract_summary_video AS contract_summary_video_29, t0.cgpsummary_text AS cgpsummary_text_30, t0.cgpsummary_video AS cgpsummary_video_31, t0.contract_notice_documents AS contract_notice_documents_32, t0.company_address AS company_address_33, t0.company_rcs AS company_rcs_34, t0.company_siren AS company_siren_35, t0.company_orias AS company_orias_36, t0.company_capital AS company_capital_37, t0.company_address_only AS company_address_only_38, t0.company_zipcode_only AS company_zipcode_only_39, t0.company_city_only AS company_city_only_40, t0.contract_template_legal_person2 AS contract_template_legal_person2_41, t0.platform_mails_logo AS platform_mails_logo_42, t0.email_sender AS email_sender_43, t0.email_signature AS email_signature_44, t0.platform_url AS platform_url_45, t0.support_label AS support_label_46, t0.cheque_address AS cheque_address_47, t0.legal_representative_name AS legal_representative_name_48, t0.legal_representative_title AS legal_representative_title_49, t0.redaction_city AS redaction_city_50, t0.former_name AS former_name_51, t0.universign_observer_firstname AS universign_observer_firstname_52, t0.universign_observer_lastname AS universign_observer_lastname_53, t0.universign_observer_phone AS universign_observer_phone_54, t0.secondary_color AS secondary_color_55, t0.text_color_mode AS text_color_mode_56, t0.default_assistance_email AS default_assistance_email_57, t0.legal_notices_content AS legal_notices_content_58, t0.terms_content AS terms_content_59, t0.brevo_api_key_dev AS brevo_api_key_dev_60, t0.brevo_api_key_prod AS brevo_api_key_prod_61, t0.brevo_sms_sender AS brevo_sms_sender_62, t0.stripe_api_key_dev AS stripe_api_key_dev_63, t0.stripe_api_key_prod AS stripe_api_key_prod_64, t0.universign_user AS universign_user_65, t0.universign_password_dev AS universign_password_dev_66, t0.universign_password_prod AS universign_password_prod_67, t0.linkedin_url AS linkedin_url_68, t0.instagram_url AS instagram_url_69, t0.youtube_url AS youtube_url_70, t0.test_mode AS test_mode_71, t0.created_at AS created_at_72, t0.updated_at AS updated_at_73 FROM platform_options t0', array(), array())
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:995)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
(vendor/doctrine/orm/src/EntityRepository.php:224)
at Doctrine\ORM\EntityRepository->findBy(array())
(vendor/doctrine/orm/src/EntityRepository.php:206)
at Doctrine\ORM\EntityRepository->findAll()
(src/Services/PlatformService.php:56)
at App\Services\PlatformService->getPlatformOptions()
(src/Twig/GlobalsExtension.php:23)
at App\Twig\GlobalsExtension->getGlobals()
(vendor/twig/twig/src/ExtensionSet.php:365)
at Twig\ExtensionSet->getGlobals()
(vendor/twig/twig/src/Environment.php:908)
at Twig\Environment->getGlobals()
(vendor/twig/twig/src/Template.php:398)
at Twig\Template->yield(array('last_username' => '', 'error' => null, 'page' => object(Page)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:452)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:457)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('platform/security/login.html.twig', null, array('last_username' => '', 'error' => null, 'page' => object(Page)), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('platform/security/login.html.twig', array('last_username' => '', 'error' => null, 'page' => object(Page)))
(src/Controller/Platform/SecurityController.php:49)
at App\Controller\Platform\SecurityController->login(object(AuthenticationUtils), object(RequestStack))
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:208)
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:29)
at require_once('/home/clients/82912c3db656d3934b07da7bcf73107e/sites/preprod.canovia.fr/vendor/autoload_runtime.php')
(public/index.php:5)
|