Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
Show exception properties
Doctrine\DBAL\Exception\InvalidFieldNameException {#992 -query: Doctrine\DBAL\Query {#993 -sql: "SELECT t0.id AS id_1, t0.name AS name_2, t0.owner_id AS owner_id_3, t0.package_id AS package_id_4, t0.web_quota_override_bytes AS web_quota_override_bytes_5, t0.mail_quota_override_bytes AS mail_quota_override_bytes_6, t0.dns_zone_id AS dns_zone_id_7, t0.web_node_id AS web_node_id_8, t0.mail_node_id AS mail_node_id_9, t0.web_node_username AS web_node_username_10, t0.web_node_user_id AS web_node_user_id_11, t0.web_node_domain_id AS web_node_domain_id_12, t0.php_version AS php_version_13, t0.php_settings AS php_settings_14, t0.mail_node_domain_id AS mail_node_domain_id_15, t0.dkim_public_key AS dkim_public_key_16, t0.mail_forward_destination AS mail_forward_destination_17, t0.mail_send_ip AS mail_send_ip_18, t0.mail_suspension_reason AS mail_suspension_reason_19, t0.status AS status_20, t0.failure_reason AS failure_reason_21, t0.created_at AS created_at_22, t0.provisioned_at AS provisioned_at_23, t0.updated_at AS updated_at_24 FROM domains t0 WHERE t0.id = ?" -params: array:1 [ 0 => Symfony\Component\Uid\UuidV7 {#852 #uid: "019ecb6a-4148-7aa9-a0de-4297ac9c8110" : "1Cc571xFGEFMoX5TzG2yuq" : "01KV5PMGA8FAMT1QJ2JYP9S08G" : "2026-06-15 13:13:18.920682 UTC" } ] -types: array:1 [ 0 => "uuid" ] } }
1557,1569,1586 => new UniqueConstraintViolationException($exception, $query),1054,1166,1611 => new InvalidFieldNameException($exception, $query),1052,1060,1110 => new NonUniqueFieldNameException($exception, $query),1064,1149,
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1460)
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 1396)
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 809)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}}/*** Executes a caching query.
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 738)
): object|null {$this->switchPersisterContext(null, $limit);$sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);if ($entity !== null) {$hints[Query::HINT_REFRESH] = true;$hints[Query::HINT_REFRESH_ENTITY] = $entity;}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
load
(line 756)
/*** {@inheritDoc}*/public function loadById(array $identifier, object|null $entity = null): object|null{return $this->load($identifier, $entity);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/EntityManager.php
->
loadById
(line 366)
case $lockMode === LockMode::PESSIMISTIC_READ:case $lockMode === LockMode::PESSIMISTIC_WRITE:return $persister->load($sortedId, null, null, [], $lockMode);default:return $persister->loadById($sortedId);}}public function getReference(string $entityName, mixed $id): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
find
(line 86)
* @return object|null The entity instance or NULL if the entity can not be found.* @phpstan-return ?T*/public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{return $this->em->find($this->entityName, $id, $lockMode, $lockVersion);}/*** Finds all entities in the repository.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php
->
find
(line 66)
public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{/** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */return ($this->repository ??= $this->resolveRepository())->find($id, $lockMode, $lockVersion);}/*** {@inheritDoc}*
return $this->redirectToRoute($roleHome->routeNameFor($actor));}private function loadDomainForView(string $id, DomainRepository $domains): Domain{$domain = $domains->find(Uuid::fromString($id));if ($domain === null) {throw $this->createNotFoundException('Domain not found.');}$this->denyAccessUnlessGranted(DomainCapability::VIEW->value, $domain);return $domain;
DomainSettingsController->loadDomainForView()
in
src/Controller/DomainSettingsController.php
(line 56)
private const float MAX_OVERRIDE_GB = 1048576.0;#[Route('/settings', name: 'app_domain_settings', methods: ['GET'])]public function settings(string $id, DomainRepository $domains, PackageRepository $packages): Response{$domain = $this->loadDomainForView($id, $domains);$this->denyAccessUnlessGranted(DomainCapability::MANAGE_SETTINGS->value, $domain);return $this->render('domains/settings.html.twig', $this->settingsViewParams($domain, $packages));}
in
vendor/symfony/http-kernel/HttpKernel.php
->
settings
(line 183)
$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 193)
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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/anthony/code/hosting-platform/control-plane/app/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static 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/Statement.php
::
new
(line 57)
public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 802)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 738)
): object|null {$this->switchPersisterContext(null, $limit);$sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);if ($entity !== null) {$hints[Query::HINT_REFRESH] = true;$hints[Query::HINT_REFRESH_ENTITY] = $entity;}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
load
(line 756)
/*** {@inheritDoc}*/public function loadById(array $identifier, object|null $entity = null): object|null{return $this->load($identifier, $entity);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/EntityManager.php
->
loadById
(line 366)
case $lockMode === LockMode::PESSIMISTIC_READ:case $lockMode === LockMode::PESSIMISTIC_WRITE:return $persister->load($sortedId, null, null, [], $lockMode);default:return $persister->loadById($sortedId);}}public function getReference(string $entityName, mixed $id): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
find
(line 86)
* @return object|null The entity instance or NULL if the entity can not be found.* @phpstan-return ?T*/public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{return $this->em->find($this->entityName, $id, $lockMode, $lockVersion);}/*** Finds all entities in the repository.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php
->
find
(line 66)
public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{/** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */return ($this->repository ??= $this->resolveRepository())->find($id, $lockMode, $lockVersion);}/*** {@inheritDoc}*
return $this->redirectToRoute($roleHome->routeNameFor($actor));}private function loadDomainForView(string $id, DomainRepository $domains): Domain{$domain = $domains->find(Uuid::fromString($id));if ($domain === null) {throw $this->createNotFoundException('Domain not found.');}$this->denyAccessUnlessGranted(DomainCapability::VIEW->value, $domain);return $domain;
DomainSettingsController->loadDomainForView()
in
src/Controller/DomainSettingsController.php
(line 56)
private const float MAX_OVERRIDE_GB = 1048576.0;#[Route('/settings', name: 'app_domain_settings', methods: ['GET'])]public function settings(string $id, DomainRepository $domains, PackageRepository $packages): Response{$domain = $this->loadDomainForView($id, $domains);$this->denyAccessUnlessGranted(DomainCapability::MANAGE_SETTINGS->value, $domain);return $this->render('domains/settings.html.twig', $this->settingsViewParams($domain, $packages));}
in
vendor/symfony/http-kernel/HttpKernel.php
->
settings
(line 183)
$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 193)
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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/anthony/code/hosting-platform/control-plane/app/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 802)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 738)
): object|null {$this->switchPersisterContext(null, $limit);$sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);if ($entity !== null) {$hints[Query::HINT_REFRESH] = true;$hints[Query::HINT_REFRESH_ENTITY] = $entity;}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
load
(line 756)
/*** {@inheritDoc}*/public function loadById(array $identifier, object|null $entity = null): object|null{return $this->load($identifier, $entity);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/EntityManager.php
->
loadById
(line 366)
case $lockMode === LockMode::PESSIMISTIC_READ:case $lockMode === LockMode::PESSIMISTIC_WRITE:return $persister->load($sortedId, null, null, [], $lockMode);default:return $persister->loadById($sortedId);}}public function getReference(string $entityName, mixed $id): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
find
(line 86)
* @return object|null The entity instance or NULL if the entity can not be found.* @phpstan-return ?T*/public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{return $this->em->find($this->entityName, $id, $lockMode, $lockVersion);}/*** Finds all entities in the repository.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php
->
find
(line 66)
public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lockVersion = null): object|null{/** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */return ($this->repository ??= $this->resolveRepository())->find($id, $lockMode, $lockVersion);}/*** {@inheritDoc}*
return $this->redirectToRoute($roleHome->routeNameFor($actor));}private function loadDomainForView(string $id, DomainRepository $domains): Domain{$domain = $domains->find(Uuid::fromString($id));if ($domain === null) {throw $this->createNotFoundException('Domain not found.');}$this->denyAccessUnlessGranted(DomainCapability::VIEW->value, $domain);return $domain;
DomainSettingsController->loadDomainForView()
in
src/Controller/DomainSettingsController.php
(line 56)
private const float MAX_OVERRIDE_GB = 1048576.0;#[Route('/settings', name: 'app_domain_settings', methods: ['GET'])]public function settings(string $id, DomainRepository $domains, PackageRepository $packages): Response{$domain = $this->loadDomainForView($id, $domains);$this->denyAccessUnlessGranted(DomainCapability::MANAGE_SETTINGS->value, $domain);return $this->render('domains/settings.html.twig', $this->settingsViewParams($domain, $packages));}
in
vendor/symfony/http-kernel/HttpKernel.php
->
settings
(line 183)
$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 193)
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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/anthony/code/hosting-platform/control-plane/app/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 20:44:45 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://cp.dev.digitalsynergy.co.za/_profiler/latest?ip=130.12.180.126&type=request",
"method": "GET"
}
|
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.php_settings' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:63
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
(vendor/doctrine/dbal/src/Connection.php:809)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:756)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadById()
(vendor/doctrine/orm/src/EntityManager.php:366)
at Doctrine\ORM\EntityManager->find()
(vendor/doctrine/orm/src/EntityRepository.php:86)
at Doctrine\ORM\EntityRepository->find()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php:66)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->find()
(src/Controller/DomainSettingsController.php:216)
at App\Controller\DomainSettingsController->loadDomainForView()
(src/Controller/DomainSettingsController.php:56)
at App\Controller\DomainSettingsController->settings()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home/anthony/code/hosting-platform/control-plane/app/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.php_settings' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:57)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:802)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:756)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadById()
(vendor/doctrine/orm/src/EntityManager.php:366)
at Doctrine\ORM\EntityManager->find()
(vendor/doctrine/orm/src/EntityRepository.php:86)
at Doctrine\ORM\EntityRepository->find()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php:66)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->find()
(src/Controller/DomainSettingsController.php:216)
at App\Controller\DomainSettingsController->loadDomainForView()
(src/Controller/DomainSettingsController.php:56)
at App\Controller\DomainSettingsController->settings()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home/anthony/code/hosting-platform/control-plane/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.php_settings' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:802)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:756)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadById()
(vendor/doctrine/orm/src/EntityManager.php:366)
at Doctrine\ORM\EntityManager->find()
(vendor/doctrine/orm/src/EntityRepository.php:86)
at Doctrine\ORM\EntityRepository->find()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepository.php:66)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->find()
(src/Controller/DomainSettingsController.php:216)
at App\Controller\DomainSettingsController->loadDomainForView()
(src/Controller/DomainSettingsController.php:56)
at App\Controller\DomainSettingsController->settings()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home/anthony/code/hosting-platform/control-plane/app/vendor/autoload_runtime.php')
(public/index.php:5)
|