Exceptions
Exceptions 3
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 1907)
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 1850)
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 1069)
$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/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 750)
{
$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/lib/Doctrine/ORM/EntityRepository.php
->
load
(line 241)
*/
public function findOneBy(array $criteria, ?array $orderBy = null)
{
$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
return $persister->load($criteria, null, null, [], null, 1, $orderBy);
}
/**
* Counts entities by a set of criteria.
*
EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1))
in
src/Service/BootService.php
(line 189)
$configSite = $this->getConfigurationSite();
$this->assign('config', $configSite);
$this->assign("device", MobileDetectService::getDevice(["twig"=>$this->twig,"site"=>$configSite]));
$this->assign("rappelForm", $this->formFactory->create(RappelsType::class)->createView());
$this->assign("sentences", $this->entityManager->getRepository(CfgBlocs::class)->findBy(["isActive"=>true],["rank"=>"ASC"]));
$this->assign("pag_contact", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_contact"],"isActive"=>1]));
$this->assign("pag_avis", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_avis"],"isActive"=>1]));
$this->loadDefaultModules();
break;
}
}
"site_offline"=>$informations
]);exit;
}
$this->setContentCfgConstants();
$this->setContentCfgTranslations();
$this->loadTwigVars();
$this->setContentLangues();
$this->getParamMod();
if(defined('TARTEAUCITRON_ACTIVE') && TARTEAUCITRON_ACTIVE===true && TARTEAUCITRON_SERVICES['recaptcha']===true){
$this->AddJS("https://www.google.com/recaptcha/api.js");
in
var/cache/dev/Container8xNohng/getBootServiceService.php
->
__construct
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Service/BootService.php';
$container->services['App\\Service\\BootService'] = $instance = new \App\Service\BootService(($container->services['kernel'] ?? $container->get('kernel', 1)), ($container->privates['form.factory'] ?? $container->load('getForm_FactoryService')), ($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService()), ($container->privates['twig'] ?? $container->getTwigService()), ($container->services['router'] ?? $container->getRouterService()));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Service\\BootService', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
var/cache/dev/Container8xNohng/getBootControllerService.php
->
load
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Controller/BootController.php';
$container->services['App\\Controller\\BootController'] = $instance = new \App\Controller\BootController(($container->services['App\\Service\\BootService'] ?? $container->load('getBootServiceService')));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Controller\\BootController', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 215)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 197)
*/
public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE): ?object
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? $this->make(...))($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 43)
protected function instantiateController(string $class): object
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 109)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 77)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request): callable|false
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
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;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
exec("rm -rf ../var/cache/");
}
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
require dirname(__DIR__).'/public/parametres.php';
return new Kernel($context['APP_ENV'], APP_DEBUG);
};
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/Statement.php
::
new
(line 136)
}
try {
$this->stmt->execute($params);
} catch (PDOException $exception) {
throw Exception::new($exception);
}
return new Result($this->stmt);
}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/**
* {@inheritdoc}
*/
public function execute($params = null): Result
{
return $this->wrappedStatement->execute($params);
}
}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 65)
$this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query);
$query->start();
try {
$result = parent::execute($params);
} finally {
$query->stop();
}
return $result;
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1062)
$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/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 750)
{
$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/lib/Doctrine/ORM/EntityRepository.php
->
load
(line 241)
*/
public function findOneBy(array $criteria, ?array $orderBy = null)
{
$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
return $persister->load($criteria, null, null, [], null, 1, $orderBy);
}
/**
* Counts entities by a set of criteria.
*
EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1))
in
src/Service/BootService.php
(line 189)
$configSite = $this->getConfigurationSite();
$this->assign('config', $configSite);
$this->assign("device", MobileDetectService::getDevice(["twig"=>$this->twig,"site"=>$configSite]));
$this->assign("rappelForm", $this->formFactory->create(RappelsType::class)->createView());
$this->assign("sentences", $this->entityManager->getRepository(CfgBlocs::class)->findBy(["isActive"=>true],["rank"=>"ASC"]));
$this->assign("pag_contact", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_contact"],"isActive"=>1]));
$this->assign("pag_avis", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_avis"],"isActive"=>1]));
$this->loadDefaultModules();
break;
}
}
"site_offline"=>$informations
]);exit;
}
$this->setContentCfgConstants();
$this->setContentCfgTranslations();
$this->loadTwigVars();
$this->setContentLangues();
$this->getParamMod();
if(defined('TARTEAUCITRON_ACTIVE') && TARTEAUCITRON_ACTIVE===true && TARTEAUCITRON_SERVICES['recaptcha']===true){
$this->AddJS("https://www.google.com/recaptcha/api.js");
in
var/cache/dev/Container8xNohng/getBootServiceService.php
->
__construct
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Service/BootService.php';
$container->services['App\\Service\\BootService'] = $instance = new \App\Service\BootService(($container->services['kernel'] ?? $container->get('kernel', 1)), ($container->privates['form.factory'] ?? $container->load('getForm_FactoryService')), ($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService()), ($container->privates['twig'] ?? $container->getTwigService()), ($container->services['router'] ?? $container->getRouterService()));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Service\\BootService', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
var/cache/dev/Container8xNohng/getBootControllerService.php
->
load
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Controller/BootController.php';
$container->services['App\\Controller\\BootController'] = $instance = new \App\Controller\BootController(($container->services['App\\Service\\BootService'] ?? $container->load('getBootServiceService')));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Controller\\BootController', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 215)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 197)
*/
public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE): ?object
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? $this->make(...))($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 43)
protected function instantiateController(string $class): object
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 109)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 77)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request): callable|false
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
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;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
exec("rm -rf ../var/cache/");
}
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
require dirname(__DIR__).'/public/parametres.php';
return new Kernel($context['APP_ENV'], APP_DEBUG);
};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
(line 134)
. ' Statement::bindParam() or Statement::bindValue() instead.',
);
}
try {
$this->stmt->execute($params);
} catch (PDOException $exception) {
throw Exception::new($exception);
}
return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 134)
. ' Statement::bindParam() or Statement::bindValue() instead.',
);
}
try {
$this->stmt->execute($params);
} catch (PDOException $exception) {
throw Exception::new($exception);
}
return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/**
* {@inheritdoc}
*/
public function execute($params = null): Result
{
return $this->wrappedStatement->execute($params);
}
}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 65)
$this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query);
$query->start();
try {
$result = parent::execute($params);
} finally {
$query->stop();
}
return $result;
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1062)
$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/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 750)
{
$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/lib/Doctrine/ORM/EntityRepository.php
->
load
(line 241)
*/
public function findOneBy(array $criteria, ?array $orderBy = null)
{
$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
return $persister->load($criteria, null, null, [], null, 1, $orderBy);
}
/**
* Counts entities by a set of criteria.
*
EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1))
in
src/Service/BootService.php
(line 189)
$configSite = $this->getConfigurationSite();
$this->assign('config', $configSite);
$this->assign("device", MobileDetectService::getDevice(["twig"=>$this->twig,"site"=>$configSite]));
$this->assign("rappelForm", $this->formFactory->create(RappelsType::class)->createView());
$this->assign("sentences", $this->entityManager->getRepository(CfgBlocs::class)->findBy(["isActive"=>true],["rank"=>"ASC"]));
$this->assign("pag_contact", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_contact"],"isActive"=>1]));
$this->assign("pag_avis", $this->entityManager->getRepository(Pages::class)->findOneBy(["id"=>$_ENV["pag_avis"],"isActive"=>1]));
$this->loadDefaultModules();
break;
}
}
"site_offline"=>$informations
]);exit;
}
$this->setContentCfgConstants();
$this->setContentCfgTranslations();
$this->loadTwigVars();
$this->setContentLangues();
$this->getParamMod();
if(defined('TARTEAUCITRON_ACTIVE') && TARTEAUCITRON_ACTIVE===true && TARTEAUCITRON_SERVICES['recaptcha']===true){
$this->AddJS("https://www.google.com/recaptcha/api.js");
in
var/cache/dev/Container8xNohng/getBootServiceService.php
->
__construct
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Service/BootService.php';
$container->services['App\\Service\\BootService'] = $instance = new \App\Service\BootService(($container->services['kernel'] ?? $container->get('kernel', 1)), ($container->privates['form.factory'] ?? $container->load('getForm_FactoryService')), ($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService()), ($container->privates['twig'] ?? $container->getTwigService()), ($container->services['router'] ?? $container->getRouterService()));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Service\\BootService', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
var/cache/dev/Container8xNohng/getBootControllerService.php
->
load
(line 23)
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/framework-bundle/Controller/AbstractController.php';
include_once \dirname(__DIR__, 4).'/src/Controller/BootController.php';
$container->services['App\\Controller\\BootController'] = $instance = new \App\Controller\BootController(($container->services['App\\Service\\BootService'] ?? $container->load('getBootServiceService')));
$instance->setContainer(($container->privates['.service_locator.jIxfAsi'] ?? $container->load('get_ServiceLocator_JIxfAsiService'))->withContext('App\\Controller\\BootController', $container));
return $instance;
}
in
var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php
::
do
(line 357)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 215)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 197)
*/
public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE): ?object
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? $this->make(...))($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 43)
protected function instantiateController(string $class): object
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 109)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 77)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request): callable|false
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
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;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
exec("rm -rf ../var/cache/");
}
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
require dirname(__DIR__).'/public/parametres.php';
return new Kernel($context['APP_ENV'], APP_DEBUG);
};
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.rank' in 'field list' at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:67 at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query)) (vendor/doctrine/dbal/src/Connection.php:1907) at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query)) (vendor/doctrine/dbal/src/Connection.php:1850) at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), 'SELECT t0.id AS id_1, t0.name AS name_2, t0.catch_phrase AS catch_phrase_3, t0.content AS content_4, t0.image AS image_5, t0.image_detail AS image_detail_6, t0.rank AS rank_7, t0.is_active AS is_active_8, t0.meta_title AS meta_title_9, t0.meta_content AS meta_content_10, t0.meta_og_title AS meta_og_title_11, t0.meta_og_image AS meta_og_image_12, t0.meta_twitter_title AS meta_twitter_title_13, t0.meta_twitter_image AS meta_twitter_image_14, t0.rewrite AS rewrite_15, t0.date_update AS date_update_16, t0.call_to_action_label AS call_to_action_label_17, t0.vertical_phrase AS vertical_phrase_18, t0.ref_cfg_langues_id AS ref_cfg_langues_id_19, t0.ref_cfg_themes_id AS ref_cfg_themes_id_20, t0.ref_pages_id AS ref_pages_id_21 FROM pages t0 WHERE t0.id = ? AND t0.is_active = ? LIMIT 1', array('44', 1), array('integer', 'boolean')) (vendor/doctrine/dbal/src/Connection.php:1069) at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.name AS name_2, t0.catch_phrase AS catch_phrase_3, t0.content AS content_4, t0.image AS image_5, t0.image_detail AS image_detail_6, t0.rank AS rank_7, t0.is_active AS is_active_8, t0.meta_title AS meta_title_9, t0.meta_content AS meta_content_10, t0.meta_og_title AS meta_og_title_11, t0.meta_og_image AS meta_og_image_12, t0.meta_twitter_title AS meta_twitter_title_13, t0.meta_twitter_image AS meta_twitter_image_14, t0.rewrite AS rewrite_15, t0.date_update AS date_update_16, t0.call_to_action_label AS call_to_action_label_17, t0.vertical_phrase AS vertical_phrase_18, t0.ref_cfg_langues_id AS ref_cfg_langues_id_19, t0.ref_cfg_themes_id AS ref_cfg_themes_id_20, t0.ref_pages_id AS ref_pages_id_21 FROM pages t0 WHERE t0.id = ? AND t0.is_active = ? LIMIT 1', array('44', 1), array('integer', 'boolean')) (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:750) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array('id' => '44', 'isActive' => 1), null, null, array(), null, 1, null) (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:241) at Doctrine\ORM\EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1)) (src/Service/BootService.php:189) at App\Service\BootService->loadTwigVars() (src/Service/BootService.php:67) at App\Service\BootService->__construct(object(Kernel), object(FormFactory), object(EntityManager_9a5be93), object(Environment), object(Router)) (var/cache/dev/Container8xNohng/getBootServiceService.php:23) at Container8xNohng\getBootServiceService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootServiceService.php') (var/cache/dev/Container8xNohng/getBootControllerService.php:23) at Container8xNohng\getBootControllerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootControllerService.php') (vendor/symfony/dependency-injection/Container.php:215) at Symfony\Component\DependencyInjection\Container->make('App\\Controller\\BootController', 1) (vendor/symfony/dependency-injection/Container.php:197) at Symfony\Component\DependencyInjection\Container->get('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:43) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:109) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('App\\Controller\\BootController::index') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:77) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:146) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php') (public/index.php:11) |
[2/3]
Exception
|
---|
Doctrine\DBAL\Driver\PDO\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.rank' in 'field list' at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28 at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException)) (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:136) at Doctrine\DBAL\Driver\PDO\Statement->execute(null) (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69) at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute(null) (vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:65) at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute() (vendor/doctrine/dbal/src/Connection.php:1062) at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.name AS name_2, t0.catch_phrase AS catch_phrase_3, t0.content AS content_4, t0.image AS image_5, t0.image_detail AS image_detail_6, t0.rank AS rank_7, t0.is_active AS is_active_8, t0.meta_title AS meta_title_9, t0.meta_content AS meta_content_10, t0.meta_og_title AS meta_og_title_11, t0.meta_og_image AS meta_og_image_12, t0.meta_twitter_title AS meta_twitter_title_13, t0.meta_twitter_image AS meta_twitter_image_14, t0.rewrite AS rewrite_15, t0.date_update AS date_update_16, t0.call_to_action_label AS call_to_action_label_17, t0.vertical_phrase AS vertical_phrase_18, t0.ref_cfg_langues_id AS ref_cfg_langues_id_19, t0.ref_cfg_themes_id AS ref_cfg_themes_id_20, t0.ref_pages_id AS ref_pages_id_21 FROM pages t0 WHERE t0.id = ? AND t0.is_active = ? LIMIT 1', array('44', 1), array('integer', 'boolean')) (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:750) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array('id' => '44', 'isActive' => 1), null, null, array(), null, 1, null) (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:241) at Doctrine\ORM\EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1)) (src/Service/BootService.php:189) at App\Service\BootService->loadTwigVars() (src/Service/BootService.php:67) at App\Service\BootService->__construct(object(Kernel), object(FormFactory), object(EntityManager_9a5be93), object(Environment), object(Router)) (var/cache/dev/Container8xNohng/getBootServiceService.php:23) at Container8xNohng\getBootServiceService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootServiceService.php') (var/cache/dev/Container8xNohng/getBootControllerService.php:23) at Container8xNohng\getBootControllerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootControllerService.php') (vendor/symfony/dependency-injection/Container.php:215) at Symfony\Component\DependencyInjection\Container->make('App\\Controller\\BootController', 1) (vendor/symfony/dependency-injection/Container.php:197) at Symfony\Component\DependencyInjection\Container->get('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:43) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:109) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('App\\Controller\\BootController::index') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:77) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:146) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php') (public/index.php:11) |
[1/3]
PDOException
|
---|
PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.rank' in 'field list' at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:134 at PDOStatement->execute(null) (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:134) at Doctrine\DBAL\Driver\PDO\Statement->execute(null) (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69) at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute(null) (vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:65) at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute() (vendor/doctrine/dbal/src/Connection.php:1062) at Doctrine\DBAL\Connection->executeQuery('SELECT t0.id AS id_1, t0.name AS name_2, t0.catch_phrase AS catch_phrase_3, t0.content AS content_4, t0.image AS image_5, t0.image_detail AS image_detail_6, t0.rank AS rank_7, t0.is_active AS is_active_8, t0.meta_title AS meta_title_9, t0.meta_content AS meta_content_10, t0.meta_og_title AS meta_og_title_11, t0.meta_og_image AS meta_og_image_12, t0.meta_twitter_title AS meta_twitter_title_13, t0.meta_twitter_image AS meta_twitter_image_14, t0.rewrite AS rewrite_15, t0.date_update AS date_update_16, t0.call_to_action_label AS call_to_action_label_17, t0.vertical_phrase AS vertical_phrase_18, t0.ref_cfg_langues_id AS ref_cfg_langues_id_19, t0.ref_cfg_themes_id AS ref_cfg_themes_id_20, t0.ref_pages_id AS ref_pages_id_21 FROM pages t0 WHERE t0.id = ? AND t0.is_active = ? LIMIT 1', array('44', 1), array('integer', 'boolean')) (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:750) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array('id' => '44', 'isActive' => 1), null, null, array(), null, 1, null) (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:241) at Doctrine\ORM\EntityRepository->findOneBy(array('id' => '44', 'isActive' => 1)) (src/Service/BootService.php:189) at App\Service\BootService->loadTwigVars() (src/Service/BootService.php:67) at App\Service\BootService->__construct(object(Kernel), object(FormFactory), object(EntityManager_9a5be93), object(Environment), object(Router)) (var/cache/dev/Container8xNohng/getBootServiceService.php:23) at Container8xNohng\getBootServiceService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootServiceService.php') (var/cache/dev/Container8xNohng/getBootControllerService.php:23) at Container8xNohng\getBootControllerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/Container8xNohng/App_KernelDevDebugContainer.php:357) at Container8xNohng\App_KernelDevDebugContainer->load('getBootControllerService.php') (vendor/symfony/dependency-injection/Container.php:215) at Symfony\Component\DependencyInjection\Container->make('App\\Controller\\BootController', 1) (vendor/symfony/dependency-injection/Container.php:197) at Symfony\Component\DependencyInjection\Container->get('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:43) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('App\\Controller\\BootController') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:109) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('App\\Controller\\BootController::index') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:77) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:146) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/captusa/s61.captusite.cloud/vendor/autoload_runtime.php') (public/index.php:11) |