Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ DriverException
Show exception properties
Doctrine\DBAL\Exception\DriverException {#1504 -query: Doctrine\DBAL\Query {#1497 -sql: "INSERT INTO users (username, email, roles, password, birth_year, gender, education_level, disorders, disorders_other, primary_language, secondary_language, region_dialect, reset_token, reset_token_expires_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" -params: array:14 [ 1 => "Davidmerly" 2 => "1gyhujjikk@anonmails.de" 3 => [] 4 => "$2y$13$keaEyJnTISxRbS0EfnClWOyKLi2S7B2f6uRs4ye83Maveo6I8dRam" 5 => 1937 6 => "female" 7 => "someCollege" 8 => [] 9 => """ <img src="https://i.ibb.co/4nRc7Mhd/1win.jpg">\n \n \n Для всех игроков: Эти поощрения доступны для всех клиентов, независимо от их опыта и статуса.\n Выберите удобный вариант регистрации: в 1 клик, через социальные сети или почтовый ящик.\n 1Win Промокод Казахстан: 1W2026FREE предназначен для новых пользователей. Он позволяет получить бонус до 500%. При регистрации на 1win необходимо указать этот промокод, чтобы активировать все доступные акции и бонусы на вашем аккаунте. Срок действия промокода истекает 31 декабря 2026 года.\n Возможность выиграть крупные призы в розыгрышах, доступ к которым открывается только после использования промокода 1win.\n После того как вы зарегистрировались и ввели промокод 1win для пополнения счета и получения приветственного бонуса, вы можете начать игру. Однако, нельзя сразу вывести бонусные средства - сначала их нужно отыграть. <a href=https://mywrite.ru/blacksprut-sc-zerkalo.html><img src="https://san2.ru/smiles/smile.gif"></a> """ 10 => "en" 11 => "en" 12 => "en_JP" 13 => null 14 => null ] -types: array:14 [ 1 => "string" 2 => "string" 3 => "json" 4 => "string" 5 => "integer" 6 => "string" 7 => "string" 8 => "json" 9 => "string" 10 => "string" 11 => "string" 12 => "string" 13 => "string" 14 => "datetime_immutable" ] } }
1171,1252,1263,1364,1566 => new NotNullConstraintViolationException($exception, $query),default => new DriverException($exception, $query),};}}
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/Statement.php
->
convertExceptionDuringQuery
(line 108)
return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}}/*** Executes the statement with the currently bound parameters and return result.
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
// encode the plain password$user->setPassword($userPasswordHasher->hashPassword($user, $plainPassword));$entityManager->persist($user);$entityManager->flush();$this->addFlash('success', 'Registration successful! Please login.');return $this->redirectToRoute('app_login');}
in
vendor/symfony/http-kernel/HttpKernel.php
->
register
(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 191)
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());
<?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/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/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
// encode the plain password$user->setPassword($userPasswordHasher->hashPassword($user, $plainPassword));$entityManager->persist($user);$entityManager->flush();$this->addFlash('success', 'Registration successful! Please login.');return $this->redirectToRoute('app_login');}
in
vendor/symfony/http-kernel/HttpKernel.php
->
register
(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 191)
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());
<?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/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/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
// encode the plain password$user->setPassword($userPasswordHasher->hashPassword($user, $plainPassword));$entityManager->persist($user);$entityManager->flush();$this->addFlash('success', 'Registration successful! Please login.');return $this->redirectToRoute('app_login');}
in
vendor/symfony/http-kernel/HttpKernel.php
->
register
(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 191)
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());
<?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 14:52:33 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "417302"
},
"request_uri": "https://spedi.ku.edu/_profiler/417302",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
DriverException
|
|---|
Doctrine\DBAL\Exception\DriverException:
An exception occurred while executing a query: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'disorders_other' at row 1
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:102
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), 'INSERT INTO users (username, email, roles, password, birth_year, gender, education_level, disorders, disorders_other, primary_language, secondary_language, region_dialect, reset_token, reset_token_expires_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', array('Davidmerly', '1gyhujjikk@anonmails.de', array(), '$2y$13$keaEyJnTISxRbS0EfnClWOyKLi2S7B2f6uRs4ye83Maveo6I8dRam', 1937, 'female', 'someCollege', array(), '<img src="https://i.ibb.co/4nRc7Mhd/1win.jpg"> Для всех игроков: Эти поощрения доступны для всех клиентов, независимо от их опыта и статуса. Выберите удобный вариант регистрации: в 1 клик, через социальные сети или почтовый ящик.1Win Промокод Казахстан: 1W2026FREE предназначен для новых пользователей. Он позволяет получить бонус до 500%. При регистрации на 1win необходимо указать этот промокод, чтобы активировать все доступные акции и бонусы на вашем аккаунте. Срок действия промокода истекает 31 декабря 2026 года. Возможность выиграть крупные призы в розыгрышах, доступ к которым открывается только после использования промокода 1win.После того как вы зарегистрировались и ввели промокод 1win для пополнения счета и получения приветственного бонуса, вы можете начать игру. Однако, нельзя сразу вывести бонусные средства - сначала их нужно отыграть. <a href=https://mywrite.ru/blacksprut-sc-zerkalo.html><img src="https://san2.ru/smiles/smile.gif"></a>', 'en', 'en', 'en_JP', null, null), array('string', 'string', 'json', 'string', 'integer', 'string', 'string', 'json', 'string', 'string', 'string', 'string', 'string', 'datetime_immutable'))
(vendor/doctrine/dbal/src/Statement.php:108)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/RegistrationController.php:38)
at App\Controller\RegistrationController->register(object(Request), object(UserPasswordHasher), object(EntityManager))
(vendor/symfony/http-kernel/HttpKernel.php:183)
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:191)
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:32)
at require_once('/home/spedi/spedi/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'disorders_other' at row 1
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/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/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/RegistrationController.php:38)
at App\Controller\RegistrationController->register(object(Request), object(UserPasswordHasher), object(EntityManager))
(vendor/symfony/http-kernel/HttpKernel.php:183)
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:191)
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:32)
at require_once('/home/spedi/spedi/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'disorders_other' at row 1
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/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/RegistrationController.php:38)
at App\Controller\RegistrationController->register(object(Request), object(UserPasswordHasher), object(EntityManager))
(vendor/symfony/http-kernel/HttpKernel.php:183)
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:191)
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:32)
at require_once('/home/spedi/spedi/vendor/autoload_runtime.php')
(public/index.php:5)
|