Error 500 Internal Server Error

GET https://fbep.simeonestudio.it/login

Exceptions

An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

Exceptions 3

Doctrine\DBAL\Exception\ TableNotFoundException

Show exception properties
Doctrine\DBAL\Exception\TableNotFoundException {#5549
  -query: Doctrine\DBAL\Query {#1727
    -sql: "SELECT t0.id AS id_1, t0.email AS email_2, t0.password AS password_3, t0.role AS role_4, t0.is_active AS is_active_5, t0.is_admin_active AS is_admin_active_6, t0.one_time_code AS one_time_code_7, t0.expiration_one_time_code AS expiration_one_time_code_8, t0.db_name AS db_name_9, t10.id AS id_11, t10.business_name AS business_name_12, t10.phone AS phone_13, t10.vat_country AS vat_country_14, t10.vat AS vat_15, t10.fiscal_code AS fiscal_code_16, t10.address AS address_17, t10.civic AS civic_18, t10.zip AS zip_19, t10.city AS city_20, t10.province AS province_21, t10.country AS country_22, t10.sdi AS sdi_23, t10.consultant_id AS consultant_id_24, t0.license_id AS license_id_25 FROM fbep_m_consultant t0 LEFT JOIN fbep_m_profile t10 ON t10.consultant_id = t0.id WHERE t0.email = ? LIMIT 1"
    -params: array:1 [
      0 => "rporrati@rpgmultimedia.it"
    ]
    -types: array:1 [
      0 => "string"
    ]
  }
}
  1. 1008 => new DatabaseDoesNotExist($exception, $query),
  2. 1213 => new DeadlockException($exception, $query),
  3. 1205 => new LockWaitTimeoutException($exception, $query),
  4. 1050 => new TableExistsException($exception, $query),
  5. 1051,
  6. 1146 => new TableNotFoundException($exception, $query),
  7. 1216,
  8. 1217,
  9. 1451,
  10. 1452,
  11. 1701 => new ForeignKeyConstraintViolationException($exception, $query),
  1. private function handleDriverException(
  2. Driver\Exception $driverException,
  3. ?Query $query,
  4. ): DriverException {
  5. $this->exceptionConverter ??= $this->driver->getExceptionConverter();
  6. $exception = $this->exceptionConverter->convert($driverException, $query);
  7. if ($exception instanceof ConnectionLost) {
  8. $this->close();
  9. }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1396)
  1. Driver\Exception $e,
  2. string $sql,
  3. array $params = [],
  4. array $types = [],
  5. ): DriverException {
  6. return $this->handleDriverException($e, new Query($sql, $params, $types));
  7. }
  8. /** @internal */
  9. final public function convertException(Driver\Exception $e): DriverException
  10. {
in vendor/doctrine/dbal/src/Connection.php -> convertExceptionDuringQuery (line 809)
  1. $result = $connection->query($sql);
  2. }
  3. return new Result($result, $this);
  4. } catch (Driver\Exception $e) {
  5. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
  6. }
  7. }
  8. /**
  9. * Executes a caching query.
  1. ): object|null {
  2. $this->switchPersisterContext(null, $limit);
  3. $sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);
  4. [$params, $types] = $this->expandParameters($criteria);
  5. $stmt = $this->conn->executeQuery($sql, $params, $types);
  6. if ($entity !== null) {
  7. $hints[Query::HINT_REFRESH] = true;
  8. $hints[Query::HINT_REFRESH_ENTITY] = $entity;
  9. }
  1. */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. $persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5. return $persister->load($criteria, null, null, [], null, 1, $orderBy);
  6. }
  7. /**
  8. * Counts entities by a set of criteria.
  9. *
  1. /** {@inheritDoc} */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. /** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */
  5. return ($this->repository ??= $this->resolveRepository())
  6. ->findOneBy($criteria, $orderBy);
  7. }
  8. /** {@inheritDoc} */
  9. public function count(array $criteria = []): int
  10. {
  1. */
  2. public function loadUserByIdentifier(string $identifier/* , ?array $attributes = null */): UserInterface
  3. {
  4. $repository = $this->getRepository();
  5. if (null !== $this->property) {
  6. $user = $repository->findOneBy([$this->property => $identifier]);
  7. } else {
  8. if (!$repository instanceof UserLoaderInterface) {
  9. throw new \InvalidArgumentException(\sprintf('You must either make the "%s" entity Doctrine Repository ("%s") implement "Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface" or set the "property" option in the corresponding entity provider configuration.', $this->classOrAlias, get_debug_type($repository)));
  10. }
  1. try {
  2. if ($provider instanceof AttributesBasedUserProviderInterface || $provider instanceof self) {
  3. return $provider->loadUserByIdentifier($identifier, $attributes);
  4. }
  5. return $provider->loadUserByIdentifier($identifier);
  6. } catch (UserNotFoundException) {
  7. // try next one
  8. }
  9. }
  1. if (null === $this->userLoader) {
  2. throw new \LogicException(\sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));
  3. }
  4. if (null === $this->getAttributes()) {
  5. $user = ($this->userLoader)($this->getUserIdentifier());
  6. } else {
  7. $user = ($this->userLoader)($this->getUserIdentifier(), $this->getAttributes());
  8. }
  9. // No user has been found via the $this->userLoader callback
  1. if (!isset($this->user)) {
  2. if (!$this->hasBadge(UserBadge::class)) {
  3. throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');
  4. }
  5. $this->user = $this->getBadge(UserBadge::class)->getUser();
  6. }
  7. return $this->user;
  8. }
  1. $passport = $event->getPassport();
  2. if ($passport->hasBadge(PreAuthenticatedUserBadge::class)) {
  3. return;
  4. }
  5. $this->userChecker->checkPreAuth($passport->getUser());
  6. }
  7. public function postCheckCredentials(AuthenticationSuccessEvent $event): void
  8. {
  9. $user = $event->getAuthenticationToken()->getUser();
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. // get the passport from the Authenticator
  2. $passport = $authenticator->authenticate($request);
  3. // check the passport (e.g. password checking)
  4. $event = new CheckPassportEvent($authenticator, $passport);
  5. $this->eventDispatcher->dispatch($event);
  6. // check if all badges are resolved
  7. $resolvedBadges = [];
  8. foreach ($passport->getBadges() as $badge) {
  9. if (!$badge->isResolved()) {
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. return $supports;
  2. }
  3. public function authenticate(RequestEvent $event): void
  4. {
  5. $this->authenticationManagerListener->authenticate($event);
  6. }
  7. public function getAuthenticatorManagerListener(): AuthenticatorManagerListener
  8. {
  9. return $this->authenticationManagerListener;
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. }
  2. }
  3. if (!$lazy) {
  4. foreach ($listeners as $listener) {
  5. $listener($event);
  6. if ($event->hasResponse()) {
  7. return;
  8. }
  9. }
  1. foreach ($requestListeners as $listener) {
  2. if (!$listener instanceof FirewallListenerInterface) {
  3. $listener($event);
  4. } elseif (false !== $listener->supports($event->getRequest())) {
  5. $listener->authenticate($event);
  6. }
  7. if ($event->hasResponse()) {
  8. break;
  9. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 93)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php') in httpdocs/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

  1. } else {
  2. $code = $exception->getCode();
  3. $sqlState = null;
  4. }
  5. return new self($exception->getMessage(), $sqlState, $code, $exception);
  6. }
  7. }
  1. public function execute(): Result
  2. {
  3. try {
  4. $this->stmt->execute();
  5. } catch (PDOException $exception) {
  6. throw Exception::new($exception);
  7. }
  8. return new Result($this->stmt);
  9. }
  1. $this->wrappedStatement->bindValue($param, $value, $type);
  2. }
  3. public function execute(): Result
  4. {
  5. return $this->wrappedStatement->execute();
  6. }
  7. }
  1. 'sql' => $this->sql,
  2. 'params' => $this->params,
  3. 'types' => $this->types,
  4. ]);
  5. return parent::execute();
  6. }
  7. }
  1. $this->wrappedStatement->bindValue($param, $value, $type);
  2. }
  3. public function execute(): Result
  4. {
  5. return $this->wrappedStatement->execute();
  6. }
  7. }
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::execute();
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $stmt = $connection->prepare($sql);
  2. $this->bindParameters($stmt, $params, $types);
  3. $result = $stmt->execute();
  4. } else {
  5. $result = $connection->query($sql);
  6. }
  7. return new Result($result, $this);
  1. ): object|null {
  2. $this->switchPersisterContext(null, $limit);
  3. $sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);
  4. [$params, $types] = $this->expandParameters($criteria);
  5. $stmt = $this->conn->executeQuery($sql, $params, $types);
  6. if ($entity !== null) {
  7. $hints[Query::HINT_REFRESH] = true;
  8. $hints[Query::HINT_REFRESH_ENTITY] = $entity;
  9. }
  1. */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. $persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5. return $persister->load($criteria, null, null, [], null, 1, $orderBy);
  6. }
  7. /**
  8. * Counts entities by a set of criteria.
  9. *
  1. /** {@inheritDoc} */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. /** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */
  5. return ($this->repository ??= $this->resolveRepository())
  6. ->findOneBy($criteria, $orderBy);
  7. }
  8. /** {@inheritDoc} */
  9. public function count(array $criteria = []): int
  10. {
  1. */
  2. public function loadUserByIdentifier(string $identifier/* , ?array $attributes = null */): UserInterface
  3. {
  4. $repository = $this->getRepository();
  5. if (null !== $this->property) {
  6. $user = $repository->findOneBy([$this->property => $identifier]);
  7. } else {
  8. if (!$repository instanceof UserLoaderInterface) {
  9. throw new \InvalidArgumentException(\sprintf('You must either make the "%s" entity Doctrine Repository ("%s") implement "Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface" or set the "property" option in the corresponding entity provider configuration.', $this->classOrAlias, get_debug_type($repository)));
  10. }
  1. try {
  2. if ($provider instanceof AttributesBasedUserProviderInterface || $provider instanceof self) {
  3. return $provider->loadUserByIdentifier($identifier, $attributes);
  4. }
  5. return $provider->loadUserByIdentifier($identifier);
  6. } catch (UserNotFoundException) {
  7. // try next one
  8. }
  9. }
  1. if (null === $this->userLoader) {
  2. throw new \LogicException(\sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));
  3. }
  4. if (null === $this->getAttributes()) {
  5. $user = ($this->userLoader)($this->getUserIdentifier());
  6. } else {
  7. $user = ($this->userLoader)($this->getUserIdentifier(), $this->getAttributes());
  8. }
  9. // No user has been found via the $this->userLoader callback
  1. if (!isset($this->user)) {
  2. if (!$this->hasBadge(UserBadge::class)) {
  3. throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');
  4. }
  5. $this->user = $this->getBadge(UserBadge::class)->getUser();
  6. }
  7. return $this->user;
  8. }
  1. $passport = $event->getPassport();
  2. if ($passport->hasBadge(PreAuthenticatedUserBadge::class)) {
  3. return;
  4. }
  5. $this->userChecker->checkPreAuth($passport->getUser());
  6. }
  7. public function postCheckCredentials(AuthenticationSuccessEvent $event): void
  8. {
  9. $user = $event->getAuthenticationToken()->getUser();
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. // get the passport from the Authenticator
  2. $passport = $authenticator->authenticate($request);
  3. // check the passport (e.g. password checking)
  4. $event = new CheckPassportEvent($authenticator, $passport);
  5. $this->eventDispatcher->dispatch($event);
  6. // check if all badges are resolved
  7. $resolvedBadges = [];
  8. foreach ($passport->getBadges() as $badge) {
  9. if (!$badge->isResolved()) {
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. return $supports;
  2. }
  3. public function authenticate(RequestEvent $event): void
  4. {
  5. $this->authenticationManagerListener->authenticate($event);
  6. }
  7. public function getAuthenticatorManagerListener(): AuthenticatorManagerListener
  8. {
  9. return $this->authenticationManagerListener;
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. }
  2. }
  3. if (!$lazy) {
  4. foreach ($listeners as $listener) {
  5. $listener($event);
  6. if ($event->hasResponse()) {
  7. return;
  8. }
  9. }
  1. foreach ($requestListeners as $listener) {
  2. if (!$listener instanceof FirewallListenerInterface) {
  3. $listener($event);
  4. } elseif (false !== $listener->supports($event->getRequest())) {
  5. $listener->authenticate($event);
  6. }
  7. if ($event->hasResponse()) {
  8. break;
  9. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 93)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php') in httpdocs/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

PDOException

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

  1. }
  2. public function execute(): Result
  3. {
  4. try {
  5. $this->stmt->execute();
  6. } catch (PDOException $exception) {
  7. throw Exception::new($exception);
  8. }
  9. return new Result($this->stmt);
  1. }
  2. public function execute(): Result
  3. {
  4. try {
  5. $this->stmt->execute();
  6. } catch (PDOException $exception) {
  7. throw Exception::new($exception);
  8. }
  9. return new Result($this->stmt);
  1. $this->wrappedStatement->bindValue($param, $value, $type);
  2. }
  3. public function execute(): Result
  4. {
  5. return $this->wrappedStatement->execute();
  6. }
  7. }
  1. 'sql' => $this->sql,
  2. 'params' => $this->params,
  3. 'types' => $this->types,
  4. ]);
  5. return parent::execute();
  6. }
  7. }
  1. $this->wrappedStatement->bindValue($param, $value, $type);
  2. }
  3. public function execute(): Result
  4. {
  5. return $this->wrappedStatement->execute();
  6. }
  7. }
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::execute();
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $stmt = $connection->prepare($sql);
  2. $this->bindParameters($stmt, $params, $types);
  3. $result = $stmt->execute();
  4. } else {
  5. $result = $connection->query($sql);
  6. }
  7. return new Result($result, $this);
  1. ): object|null {
  2. $this->switchPersisterContext(null, $limit);
  3. $sql = $this->getSelectSQL($criteria, $assoc, $lockMode, $limit, null, $orderBy);
  4. [$params, $types] = $this->expandParameters($criteria);
  5. $stmt = $this->conn->executeQuery($sql, $params, $types);
  6. if ($entity !== null) {
  7. $hints[Query::HINT_REFRESH] = true;
  8. $hints[Query::HINT_REFRESH_ENTITY] = $entity;
  9. }
  1. */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. $persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5. return $persister->load($criteria, null, null, [], null, 1, $orderBy);
  6. }
  7. /**
  8. * Counts entities by a set of criteria.
  9. *
  1. /** {@inheritDoc} */
  2. public function findOneBy(array $criteria, array|null $orderBy = null): object|null
  3. {
  4. /** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */
  5. return ($this->repository ??= $this->resolveRepository())
  6. ->findOneBy($criteria, $orderBy);
  7. }
  8. /** {@inheritDoc} */
  9. public function count(array $criteria = []): int
  10. {
  1. */
  2. public function loadUserByIdentifier(string $identifier/* , ?array $attributes = null */): UserInterface
  3. {
  4. $repository = $this->getRepository();
  5. if (null !== $this->property) {
  6. $user = $repository->findOneBy([$this->property => $identifier]);
  7. } else {
  8. if (!$repository instanceof UserLoaderInterface) {
  9. throw new \InvalidArgumentException(\sprintf('You must either make the "%s" entity Doctrine Repository ("%s") implement "Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface" or set the "property" option in the corresponding entity provider configuration.', $this->classOrAlias, get_debug_type($repository)));
  10. }
  1. try {
  2. if ($provider instanceof AttributesBasedUserProviderInterface || $provider instanceof self) {
  3. return $provider->loadUserByIdentifier($identifier, $attributes);
  4. }
  5. return $provider->loadUserByIdentifier($identifier);
  6. } catch (UserNotFoundException) {
  7. // try next one
  8. }
  9. }
  1. if (null === $this->userLoader) {
  2. throw new \LogicException(\sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));
  3. }
  4. if (null === $this->getAttributes()) {
  5. $user = ($this->userLoader)($this->getUserIdentifier());
  6. } else {
  7. $user = ($this->userLoader)($this->getUserIdentifier(), $this->getAttributes());
  8. }
  9. // No user has been found via the $this->userLoader callback
  1. if (!isset($this->user)) {
  2. if (!$this->hasBadge(UserBadge::class)) {
  3. throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');
  4. }
  5. $this->user = $this->getBadge(UserBadge::class)->getUser();
  6. }
  7. return $this->user;
  8. }
  1. $passport = $event->getPassport();
  2. if ($passport->hasBadge(PreAuthenticatedUserBadge::class)) {
  3. return;
  4. }
  5. $this->userChecker->checkPreAuth($passport->getUser());
  6. }
  7. public function postCheckCredentials(AuthenticationSuccessEvent $event): void
  8. {
  9. $user = $event->getAuthenticationToken()->getUser();
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. // get the passport from the Authenticator
  2. $passport = $authenticator->authenticate($request);
  3. // check the passport (e.g. password checking)
  4. $event = new CheckPassportEvent($authenticator, $passport);
  5. $this->eventDispatcher->dispatch($event);
  6. // check if all badges are resolved
  7. $resolvedBadges = [];
  8. foreach ($passport->getBadges() as $badge) {
  9. if (!$badge->isResolved()) {
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. return $supports;
  2. }
  3. public function authenticate(RequestEvent $event): void
  4. {
  5. $this->authenticationManagerListener->authenticate($event);
  6. }
  7. public function getAuthenticatorManagerListener(): AuthenticatorManagerListener
  8. {
  9. return $this->authenticationManagerListener;
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. }
  2. }
  3. if (!$lazy) {
  4. foreach ($listeners as $listener) {
  5. $listener($event);
  6. if ($event->hasResponse()) {
  7. return;
  8. }
  9. }
  1. foreach ($requestListeners as $listener) {
  2. if (!$listener instanceof FirewallListenerInterface) {
  3. $listener($event);
  4. } elseif (false !== $listener->supports($event->getRequest())) {
  5. $listener->authenticate($event);
  6. }
  7. if ($event->hasResponse()) {
  8. break;
  9. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 93)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php') in httpdocs/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 10:49:19 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "20da36"
    },
    "request_uri": "https://fbep.simeonestudio.it/_profiler/20da36?panel=exception&type=request",
    "method": "GET"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 10:49:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:49:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
DEBUG 10:49:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 3

[3/3] TableNotFoundException
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1460)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1396)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
     (vendor/doctrine/dbal/src/Connection.php:809)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/src/EntityRepository.php:125)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:81)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findOneBy()
     (vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:57)
  at Symfony\Bridge\Doctrine\Security\User\EntityUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-core/User/ChainUserProvider.php:61)
  at Symfony\Component\Security\Core\User\ChainUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:97)
  at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
     (vendor/symfony/security-http/Authenticator/Passport/Passport.php:56)
  at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
     (vendor/symfony/security-http/EventListener/UserCheckerListener.php:40)
  at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:189)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-bundle/Security/LazyFirewallContext.php:70)
  at Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->authenticate()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:94)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:93)
  at Symfony\Component\Security\Http\Firewall->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php')
     (httpdocs/index.php:5)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:57)
  at Doctrine\DBAL\Driver\PDO\Statement->execute()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (vendor/doctrine/dbal/src/Logging/Statement.php:46)
  at Doctrine\DBAL\Logging\Statement->execute()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
     (vendor/doctrine/dbal/src/Connection.php:802)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/src/EntityRepository.php:125)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:81)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findOneBy()
     (vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:57)
  at Symfony\Bridge\Doctrine\Security\User\EntityUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-core/User/ChainUserProvider.php:61)
  at Symfony\Component\Security\Core\User\ChainUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:97)
  at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
     (vendor/symfony/security-http/Authenticator/Passport/Passport.php:56)
  at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
     (vendor/symfony/security-http/EventListener/UserCheckerListener.php:40)
  at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:189)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-bundle/Security/LazyFirewallContext.php:70)
  at Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->authenticate()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:94)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:93)
  at Symfony\Component\Security\Http\Firewall->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php')
     (httpdocs/index.php:5)                
[1/3] PDOException
PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fbep_db.fbep_m_consultant' doesn't exist

  at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55
  at PDOStatement->execute()
     (vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55)
  at Doctrine\DBAL\Driver\PDO\Statement->execute()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (vendor/doctrine/dbal/src/Logging/Statement.php:46)
  at Doctrine\DBAL\Logging\Statement->execute()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
     (vendor/doctrine/dbal/src/Connection.php:802)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:738)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/src/EntityRepository.php:125)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:81)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findOneBy()
     (vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:57)
  at Symfony\Bridge\Doctrine\Security\User\EntityUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-core/User/ChainUserProvider.php:61)
  at Symfony\Component\Security\Core\User\ChainUserProvider->loadUserByIdentifier()
     (vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:97)
  at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
     (vendor/symfony/security-http/Authenticator/Passport/Passport.php:56)
  at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
     (vendor/symfony/security-http/EventListener/UserCheckerListener.php:40)
  at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:189)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-bundle/Security/LazyFirewallContext.php:70)
  at Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->authenticate()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:94)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:93)
  at Symfony\Component\Security\Http\Firewall->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/fbep.simeonestudio.it/vendor/autoload_runtime.php')
     (httpdocs/index.php:5)