Exceptions
Exceptions 4
Twig\Error\ RuntimeError
in
app/Resources/views/Auth/login.html.twig
(line 11)
{% block body %}
<div class="container">
<div style="margin-top:80px;text-align:center;">
{% if platformSetup.getMainLogo is not null %}
<img src="{{ (platformSetup.getMainLogo.path ~ platformSetup.getMainLogo.physicalFileName) | imagine_filter('main_logo') }}">
{% endif %}
{# <img src="{{ asset("bundles/layout/images/" ~ kmg_app_logo_image ) }}"> #}
{% if session is not null %}
in
var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php
->
displayBlock
(line 94)
echo "</head>
<body style=\"height:100%;\">
<div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
";
// line 40
$this->displayBlock('body', $context, $blocks);
// line 43
echo "
";
// line 44
$this->displayBlock('globalScript', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
->
display
(line 53)
// line 2
$macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig", "Auth/login.html.twig", 2)->unwrap();
// line 1
$this->parent = $this->loadTemplate("base.html.twig", "Auth/login.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 390)
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 45)
*/
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], ?Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
'Auth/login.html.twig',
array(
// last username entered by the user
'last_username' => $lastUsername,
'error' => $error,
'platformSetup' => $this->ccp
)
);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
loginAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Doctrine\DBAL\Exception\ InvalidFieldNameException
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 1939)
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 1881)
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 1106)
$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 972)
{
$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.
*
EntityRepository->findBy()
in
src/Diplix/KMGBundle/Repository/PlatformClientRepository.php
(line 11)
class PlatformClientRepository extends BasicRepository
{
public function fetch()
{
$all = $this->findBy([]);
if (count($all)!==1)
throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
return $all[0];
}
protected function initialize()
{
if ($this->platformClient!==null) return;
$repo = $this->em->getRepository(PlatformClient::class);
$this->platformClient = $repo->fetch();
}
public function getStripe(): StripeEndpoint
{
return $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize()
in
src/Diplix/KMGBundle/Helper/ClientConfigProvider.php
(line 58)
return $this->getPdfLogo()!== null ? '@' . stream_get_contents( $this->fileRepo->getStream($this->getPdfLogo()) ) : null;
}
public function __call($method, $arguments)
{
$this->initialize();
if (
(0 === strpos($method, 'get'))
||
(0 === strpos($method, 'is'))
)
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
__call
(line 1567)
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
$ret = $object->$method(...$arguments);
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
return;
}
throw $e;
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
twig_get_attribute
(line 98)
<div class=\"container\">
<div style=\"margin-top:80px;text-align:center;\">
";
// line 11
if ( !(null === twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 11, $this->source); })()), "getMainLogo", [], "any", false, false, false, 11))) {
// line 12
echo " <img src=\"";
echo twig_escape_filter($this->env, $this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "path", [], "any", false, false, false, 12) . twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "physicalFileName", [], "any", false, false, false, 12)), "main_logo"), "html", null, true);
echo "\">
";
in
vendor/twig/twig/src/Template.php
->
block_body
(line 182)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php
->
displayBlock
(line 94)
echo "</head>
<body style=\"height:100%;\">
<div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
";
// line 40
$this->displayBlock('body', $context, $blocks);
// line 43
echo "
";
// line 44
$this->displayBlock('globalScript', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
->
display
(line 53)
// line 2
$macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig", "Auth/login.html.twig", 2)->unwrap();
// line 1
$this->parent = $this->loadTemplate("base.html.twig", "Auth/login.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 390)
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 45)
*/
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], ?Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
'Auth/login.html.twig',
array(
// last username entered by the user
'last_username' => $lastUsername,
'error' => $error,
'platformSetup' => $this->ccp
)
);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
loginAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 28)
} 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 69)
$this->stopwatch->start('doctrine', 'doctrine');
}
$query->start();
try {
return parent::query($sql);
} finally {
$query->stop();
if ($this->stopwatch) {
$this->stopwatch->stop('doctrine');
}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1101)
$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 972)
{
$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.
*
EntityRepository->findBy()
in
src/Diplix/KMGBundle/Repository/PlatformClientRepository.php
(line 11)
class PlatformClientRepository extends BasicRepository
{
public function fetch()
{
$all = $this->findBy([]);
if (count($all)!==1)
throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
return $all[0];
}
protected function initialize()
{
if ($this->platformClient!==null) return;
$repo = $this->em->getRepository(PlatformClient::class);
$this->platformClient = $repo->fetch();
}
public function getStripe(): StripeEndpoint
{
return $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize()
in
src/Diplix/KMGBundle/Helper/ClientConfigProvider.php
(line 58)
return $this->getPdfLogo()!== null ? '@' . stream_get_contents( $this->fileRepo->getStream($this->getPdfLogo()) ) : null;
}
public function __call($method, $arguments)
{
$this->initialize();
if (
(0 === strpos($method, 'get'))
||
(0 === strpos($method, 'is'))
)
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
__call
(line 1567)
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
$ret = $object->$method(...$arguments);
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
return;
}
throw $e;
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
twig_get_attribute
(line 98)
<div class=\"container\">
<div style=\"margin-top:80px;text-align:center;\">
";
// line 11
if ( !(null === twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 11, $this->source); })()), "getMainLogo", [], "any", false, false, false, 11))) {
// line 12
echo " <img src=\"";
echo twig_escape_filter($this->env, $this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "path", [], "any", false, false, false, 12) . twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "physicalFileName", [], "any", false, false, false, 12)), "main_logo"), "html", null, true);
echo "\">
";
in
vendor/twig/twig/src/Template.php
->
block_body
(line 182)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php
->
displayBlock
(line 94)
echo "</head>
<body style=\"height:100%;\">
<div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
";
// line 40
$this->displayBlock('body', $context, $blocks);
// line 43
echo "
";
// line 44
$this->displayBlock('globalScript', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
->
display
(line 53)
// line 2
$macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig", "Auth/login.html.twig", 2)->unwrap();
// line 1
$this->parent = $this->loadTemplate("base.html.twig", "Auth/login.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 390)
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 45)
*/
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], ?Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
'Auth/login.html.twig',
array(
// last username entered by the user
'last_username' => $lastUsername,
'error' => $error,
'platformSetup' => $this->ccp
)
);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
loginAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
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 69)
$this->stopwatch->start('doctrine', 'doctrine');
}
$query->start();
try {
return parent::query($sql);
} finally {
$query->stop();
if ($this->stopwatch) {
$this->stopwatch->stop('doctrine');
}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1101)
$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 972)
{
$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.
*
EntityRepository->findBy()
in
src/Diplix/KMGBundle/Repository/PlatformClientRepository.php
(line 11)
class PlatformClientRepository extends BasicRepository
{
public function fetch()
{
$all = $this->findBy([]);
if (count($all)!==1)
throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
return $all[0];
}
protected function initialize()
{
if ($this->platformClient!==null) return;
$repo = $this->em->getRepository(PlatformClient::class);
$this->platformClient = $repo->fetch();
}
public function getStripe(): StripeEndpoint
{
return $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize()
in
src/Diplix/KMGBundle/Helper/ClientConfigProvider.php
(line 58)
return $this->getPdfLogo()!== null ? '@' . stream_get_contents( $this->fileRepo->getStream($this->getPdfLogo()) ) : null;
}
public function __call($method, $arguments)
{
$this->initialize();
if (
(0 === strpos($method, 'get'))
||
(0 === strpos($method, 'is'))
)
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
__call
(line 1567)
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
$ret = $object->$method(...$arguments);
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
return;
}
throw $e;
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
twig_get_attribute
(line 98)
<div class=\"container\">
<div style=\"margin-top:80px;text-align:center;\">
";
// line 11
if ( !(null === twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 11, $this->source); })()), "getMainLogo", [], "any", false, false, false, 11))) {
// line 12
echo " <img src=\"";
echo twig_escape_filter($this->env, $this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "path", [], "any", false, false, false, 12) . twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup", $context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.', 12, $this->source); })()), "getMainLogo", [], "any", false, false, false, 12), "physicalFileName", [], "any", false, false, false, 12)), "main_logo"), "html", null, true);
echo "\">
";
in
vendor/twig/twig/src/Template.php
->
block_body
(line 182)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php
->
displayBlock
(line 94)
echo "</head>
<body style=\"height:100%;\">
<div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
";
// line 40
$this->displayBlock('body', $context, $blocks);
// line 43
echo "
";
// line 44
$this->displayBlock('globalScript', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php
->
display
(line 53)
// line 2
$macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig", "Auth/login.html.twig", 2)->unwrap();
// line 1
$this->parent = $this->loadTemplate("base.html.twig", "Auth/login.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 378)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 390)
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 45)
*/
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], ?Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
'Auth/login.html.twig',
array(
// last username entered by the user
'last_username' => $lastUsername,
'error' => $error,
'platformSetup' => $this->ccp
)
);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
loginAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 16:58:23 | php |
User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "BoShurik\TelegramBotBundle\BoShurikTelegramBotBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Kreait\Firebase\Symfony\Bundle\FirebaseBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. { "exception": {} } |
INFO 16:58:23 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://demo.easytransfer24.de/_profiler/latest", "method": "GET" } |
INFO 16:58:23 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. { "exception": {} } |
INFO 16:58:23 | php |
User Deprecated: Method "Doctrine\ORM\Query\Filter\SQLFilter::addFilterConstraint()" might add "string" as a native return type declaration in the future. Do the same in child class "Diplix\KMGBundle\Filter\BeDeletedFilter" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:23 | doctrine |
Connecting with parameters {params} { "params": { "driver": "pdo_mysql", "host": "127.0.0.1", "port": null, "dbname": "kwdemo", "user": "kwdemo", "password": "<redacted>", "charset": "UTF8", "idle_connection_ttl": 600, "driverOptions": [], "defaultTableOptions": [] } } |
INFO 16:58:24 | php |
Deprecated: Diplix\KMGBundle\Entity\User implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Class "Diplix\KMGBundle\Entity\User" should implement method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier(): string": returns the identifier for this user (e.g. its username or email address). { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUsername()" might add "string" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getSalt()" might add "?string" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead. { "exception": {} } |
INFO 16:58:24 | php |
User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead. { "exception": {} } |
Stack Traces 4
[4/4]
RuntimeError
|
---|
Twig\Error\RuntimeError: An exception has been thrown during the rendering of a template ("An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'"). at app/Resources/views/Auth/login.html.twig:11 at Twig\Template->displayBlock() (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94) at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (vendor/twig/twig/src/Template.php:390) at Twig\Template->render() (vendor/twig/twig/src/TemplateWrapper.php:45) at Twig\TemplateWrapper->render() (vendor/twig/twig/src/Environment.php:318) at Twig\Environment->render() (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView() (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render() (src/Diplix/KMGBundle/Controller/AuthController.php:58) at Diplix\KMGBundle\Controller\AuthController->loginAction() (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/app.php:38) |
[3/4]
InvalidFieldNameException
|
---|
Doctrine\DBAL\Exception\InvalidFieldNameException: An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list' at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:67 at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert() (vendor/doctrine/dbal/src/Connection.php:1939) at Doctrine\DBAL\Connection->handleDriverException() (vendor/doctrine/dbal/src/Connection.php:1881) at Doctrine\DBAL\Connection->convertExceptionDuringQuery() (vendor/doctrine/dbal/src/Connection.php:1106) at Doctrine\DBAL\Connection->executeQuery() (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll() (vendor/doctrine/orm/src/EntityRepository.php:224) at Doctrine\ORM\EntityRepository->findBy() (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11) at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33) at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58) at Diplix\KMGBundle\Helper\ClientConfigProvider->__call() (vendor/twig/twig/src/Extension/CoreExtension.php:1567) at twig_get_attribute() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body() (vendor/twig/twig/src/Template.php:182) at Twig\Template->displayBlock() (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94) at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (vendor/twig/twig/src/Template.php:390) at Twig\Template->render() (vendor/twig/twig/src/TemplateWrapper.php:45) at Twig\TemplateWrapper->render() (vendor/twig/twig/src/Environment.php:318) at Twig\Environment->render() (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView() (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render() (src/Diplix/KMGBundle/Controller/AuthController.php:58) at Diplix\KMGBundle\Controller\AuthController->loginAction() (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/app.php:38) |
[2/4]
Exception
|
---|
Doctrine\DBAL\Driver\PDO\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list' at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28 at Doctrine\DBAL\Driver\PDO\Exception::new() (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:76) at Doctrine\DBAL\Driver\PDO\Connection->query() (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33) at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query() (vendor/doctrine/dbal/src/Logging/Connection.php:43) at Doctrine\DBAL\Logging\Connection->query() (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33) at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query() (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:69) at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query() (vendor/doctrine/dbal/src/Connection.php:1101) at Doctrine\DBAL\Connection->executeQuery() (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll() (vendor/doctrine/orm/src/EntityRepository.php:224) at Doctrine\ORM\EntityRepository->findBy() (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11) at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33) at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58) at Diplix\KMGBundle\Helper\ClientConfigProvider->__call() (vendor/twig/twig/src/Extension/CoreExtension.php:1567) at twig_get_attribute() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body() (vendor/twig/twig/src/Template.php:182) at Twig\Template->displayBlock() (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94) at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (vendor/twig/twig/src/Template.php:390) at Twig\Template->render() (vendor/twig/twig/src/TemplateWrapper.php:45) at Twig\TemplateWrapper->render() (vendor/twig/twig/src/Environment.php:318) at Twig\Environment->render() (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView() (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render() (src/Diplix/KMGBundle/Controller/AuthController.php:58) at Diplix\KMGBundle\Controller\AuthController->loginAction() (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/app.php:38) |
[1/4]
PDOException
|
---|
PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list' at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71 at PDO->query() (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71) at Doctrine\DBAL\Driver\PDO\Connection->query() (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33) at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query() (vendor/doctrine/dbal/src/Logging/Connection.php:43) at Doctrine\DBAL\Logging\Connection->query() (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33) at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query() (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:69) at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query() (vendor/doctrine/dbal/src/Connection.php:1101) at Doctrine\DBAL\Connection->executeQuery() (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll() (vendor/doctrine/orm/src/EntityRepository.php:224) at Doctrine\ORM\EntityRepository->findBy() (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11) at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33) at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize() (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58) at Diplix\KMGBundle\Helper\ClientConfigProvider->__call() (vendor/twig/twig/src/Extension/CoreExtension.php:1567) at twig_get_attribute() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body() (vendor/twig/twig/src/Template.php:182) at Twig\Template->displayBlock() (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94) at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53) at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay() (vendor/twig/twig/src/Template.php:405) at Twig\Template->displayWithErrorHandling() (vendor/twig/twig/src/Template.php:378) at Twig\Template->display() (vendor/twig/twig/src/Template.php:390) at Twig\Template->render() (vendor/twig/twig/src/TemplateWrapper.php:45) at Twig\TemplateWrapper->render() (vendor/twig/twig/src/Environment.php:318) at Twig\Environment->render() (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView() (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render() (src/Diplix/KMGBundle/Controller/AuthController.php:58) at Diplix\KMGBundle\Controller\AuthController->loginAction() (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/app.php:38) |