Whoops, looks like something went wrong.

(1/2) Doctrine\DBAL\Exception\DriverException

An exception occurred in driver: Too many connections

in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 106
            case '1566':
                return new Exception\NotNullConstraintViolationException($message, $exception);
        }

        return new Exception\DriverException($message, $exception);
    }

    /**
     * {@inheritdoc}
at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException('An exception occurred in driver: Too many connections', object(Doctrine\DBAL\Driver\Mysqli\MysqliException))
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 166
        if ($driverEx instanceof DriverException) {
            return $driverEx;
        }
        if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DriverExceptionInterface) {
            return $driver->convertException($msg, $driverEx);
        }

        return new self($msg, 0, $driverEx);
    }
at Doctrine\DBAL\DBALException::wrapException(object(Doctrine\DBAL\Driver\Mysqli\Driver), object(Doctrine\DBAL\Driver\Mysqli\MysqliException), 'An exception occurred in driver: Too many connections')
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 154
     * @return self
     */
    public static function driverException(Driver $driver, Throwable $driverEx)
    {
        return static::wrapException($driver, $driverEx, 'An exception occurred in driver: ' . $driverEx->getMessage());
    }

    /**
     * @return self
at Doctrine\DBAL\DBALException::driverException(object(Doctrine\DBAL\Driver\Mysqli\Driver), object(Doctrine\DBAL\Driver\Mysqli\MysqliException))
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/Driver.php line 18
    {
        try {
            return new MysqliConnection($params, (string) $username, (string) $password, $driverOptions);
        } catch (MysqliException $e) {
            throw DBALException::driverException($this, $e);
        }
    }

    /**
at Doctrine\DBAL\Driver\Mysqli\Driver->connect(array('charset' => 'utf8', 'dbname' => 'gdeunzmarkt', 'driver' => 'mysqli', 'host' => 'localhost', 'password' => 'KFFqVmVz=', 'user' => 'gdeunzmarkt', 'wrapperClass' => 'TYPO3\\CMS\\Core\\Database\\Connection'), 'gdeunzmarkt', 'KFFqVmVz=', array())
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 362
        $driverOptions = $this->params['driverOptions'] ?? [];
        $user          = $this->params['user'] ?? null;
        $password      = $this->params['password'] ?? null;

        $this->_conn       = $this->_driver->connect($this->params, $user, $password, $driverOptions);
        $this->isConnected = true;

        $this->transactionNestingLevel = 0;

at Doctrine\DBAL\Connection->connect()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/Connection.php line 98
     */
    public function connect(): bool
    {
        // Early return if the connection is already open and custom setup has been done.
        if (!parent::connect()) {
            return false;
        }

        foreach ($this->prepareConnectionCommands as $command) {
at TYPO3\CMS\Core\Database\Connection->connect()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 428

        // If not connected, we need to connect now to determine the platform version.
        if ($this->_conn === null) {
            try {
                $this->connect();
            } catch (Throwable $originalException) {
                if (empty($this->params['dbname'])) {
                    throw $originalException;
                }
at Doctrine\DBAL\Connection->getDatabasePlatformVersion()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 388
     * @throws DBALException If an invalid platform was specified for this connection.
     */
    private function detectDatabasePlatform()
    {
        $version = $this->getDatabasePlatformVersion();

        if ($version !== null) {
            assert($this->_driver instanceof VersionAwarePlatformDriver);

at Doctrine\DBAL\Connection->detectDatabasePlatform()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 330
     */
    public function getDatabasePlatform()
    {
        if ($this->platform === null) {
            $this->detectDatabasePlatform();
        }

        return $this->platform;
    }
at Doctrine\DBAL\Connection->getDatabasePlatform()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 199
        }

        // Register all custom data types in the type mapping
        foreach ($this->customDoctrineTypes as $type => $className) {
            $conn->getDatabasePlatform()->registerDoctrineTypeMapping($type, $type);
        }

        // Handler for building custom data type column definitions
        // in the SchemaManager
at TYPO3\CMS\Core\Database\ConnectionPool->getDatabaseConnection(array('charset' => 'utf8', 'dbname' => 'gdeunzmarkt', 'driver' => 'mysqli', 'host' => 'localhost', 'password' => 'KFFqVmVz=', 'user' => 'gdeunzmarkt', 'wrapperClass' => 'TYPO3\\CMS\\Core\\Database\\Connection'))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 149
                1459422968
            );
        }

        static::$connections[$connectionName] = $this->getDatabaseConnection($connectionParams);

        return static::$connections[$connectionName];
    }

at TYPO3\CMS\Core\Database\ConnectionPool->getConnectionByName('Default')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 103
        if (!empty($GLOBALS['TYPO3_CONF_VARS']['DB']['TableMapping'][$tableName])) {
            $connectionName = (string)$GLOBALS['TYPO3_CONF_VARS']['DB']['TableMapping'][$tableName];
        }

        return $this->getConnectionByName($connectionName);
    }

    /**
     * Creates a connection object based on the specified identifier.
at TYPO3\CMS\Core\Database\ConnectionPool->getConnectionForTable('fe_users')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 241
                1459423448
            );
        }

        return $this->getConnectionForTable($tableName)->createQueryBuilder();
    }

    /**
     * Returns an array containing the names of all currently configured connections.
at TYPO3\CMS\Core\Database\ConnectionPool->getQueryBuilderForTable('fe_users')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 1319
     * @internal
     */
    public function getAuthInfoArray()
    {
        $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($this->user_table);
        $expressionBuilder = $queryBuilder->expr();
        $authInfo = [];
        $authInfo['loginType'] = $this->loginType;
        $authInfo['refInfo'] = parse_url(GeneralUtility::getIndpEnv('HTTP_REFERER'));
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->getAuthInfoArray()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 574
        // Indicates if an active authentication failed (not auto login)
        $this->loginFailure = false;
        $this->logger->debug('Login type: ' . $this->loginType);
        // The info array provide additional information for auth services
        $authInfo = $this->getAuthInfoArray();
        // Get Login/Logout data submitted by a form or params
        $loginData = $this->getLoginFormData();
        $this->logger->debug('Login data', $loginData);
        // Active logout (eg. with "logout" button)
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->checkAuthentication()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 374
        // Set all possible headers that could ensure that the script is not cached on the client-side
        $this->sendHttpHeaders();
        // Load user session, check to see if anyone has submitted login-information and if so authenticate
        // the user with the session. $this->user[uid] may be used to write log...
        $this->checkAuthentication();
        // Setting cookies
        if (!$this->dontSetCookie) {
            $this->setSessionCookie();
        }
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->start()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 70
            $request = $this->transferFrontendUserSession($frontendUser, $request, $frontendSessionKey);
        }

        // Authenticate now
        $frontendUser->start();
        $frontendUser->unpack_uc();

        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Http/Application.php line 64
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /home/staff/typo3/typo3_src-10.4.6/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /home/staff/typo3/typo3_src-10.4.6/index.php line 26
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});

(2/2) Doctrine\DBAL\Driver\Mysqli\MysqliException

Too many connections

in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php line 71
        set_error_handler(static function () {
        });
        try {
            if (! $this->conn->real_connect($params['host'], $username, $password, $dbname, $port, $socket, $flags)) {
                throw new MysqliException($this->conn->connect_error, $this->conn->sqlstate ?? 'HY000', $this->conn->connect_errno);
            }
        } finally {
            restore_error_handler();
        }
at Doctrine\DBAL\Driver\Mysqli\MysqliConnection->__construct(array('charset' => 'utf8', 'dbname' => 'gdeunzmarkt', 'driver' => 'mysqli', 'host' => 'localhost', 'password' => 'KFFqVmVz=', 'user' => 'gdeunzmarkt', 'wrapperClass' => 'TYPO3\\CMS\\Core\\Database\\Connection'), 'gdeunzmarkt', 'KFFqVmVz=', array())
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/Driver.php line 16
     */
    public function connect(array $params, $username = null, $password = null, array $driverOptions = [])
    {
        try {
            return new MysqliConnection($params, (string) $username, (string) $password, $driverOptions);
        } catch (MysqliException $e) {
            throw DBALException::driverException($this, $e);
        }
    }
at Doctrine\DBAL\Driver\Mysqli\Driver->connect(array('charset' => 'utf8', 'dbname' => 'gdeunzmarkt', 'driver' => 'mysqli', 'host' => 'localhost', 'password' => 'KFFqVmVz=', 'user' => 'gdeunzmarkt', 'wrapperClass' => 'TYPO3\\CMS\\Core\\Database\\Connection'), 'gdeunzmarkt', 'KFFqVmVz=', array())
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 362
        $driverOptions = $this->params['driverOptions'] ?? [];
        $user          = $this->params['user'] ?? null;
        $password      = $this->params['password'] ?? null;

        $this->_conn       = $this->_driver->connect($this->params, $user, $password, $driverOptions);
        $this->isConnected = true;

        $this->transactionNestingLevel = 0;

at Doctrine\DBAL\Connection->connect()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/Connection.php line 98
     */
    public function connect(): bool
    {
        // Early return if the connection is already open and custom setup has been done.
        if (!parent::connect()) {
            return false;
        }

        foreach ($this->prepareConnectionCommands as $command) {
at TYPO3\CMS\Core\Database\Connection->connect()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 428

        // If not connected, we need to connect now to determine the platform version.
        if ($this->_conn === null) {
            try {
                $this->connect();
            } catch (Throwable $originalException) {
                if (empty($this->params['dbname'])) {
                    throw $originalException;
                }
at Doctrine\DBAL\Connection->getDatabasePlatformVersion()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 388
     * @throws DBALException If an invalid platform was specified for this connection.
     */
    private function detectDatabasePlatform()
    {
        $version = $this->getDatabasePlatformVersion();

        if ($version !== null) {
            assert($this->_driver instanceof VersionAwarePlatformDriver);

at Doctrine\DBAL\Connection->detectDatabasePlatform()
in /home/staff/typo3/typo3_src-10.4.6/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 330
     */
    public function getDatabasePlatform()
    {
        if ($this->platform === null) {
            $this->detectDatabasePlatform();
        }

        return $this->platform;
    }
at Doctrine\DBAL\Connection->getDatabasePlatform()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 199
        }

        // Register all custom data types in the type mapping
        foreach ($this->customDoctrineTypes as $type => $className) {
            $conn->getDatabasePlatform()->registerDoctrineTypeMapping($type, $type);
        }

        // Handler for building custom data type column definitions
        // in the SchemaManager
at TYPO3\CMS\Core\Database\ConnectionPool->getDatabaseConnection(array('charset' => 'utf8', 'dbname' => 'gdeunzmarkt', 'driver' => 'mysqli', 'host' => 'localhost', 'password' => 'KFFqVmVz=', 'user' => 'gdeunzmarkt', 'wrapperClass' => 'TYPO3\\CMS\\Core\\Database\\Connection'))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 149
                1459422968
            );
        }

        static::$connections[$connectionName] = $this->getDatabaseConnection($connectionParams);

        return static::$connections[$connectionName];
    }

at TYPO3\CMS\Core\Database\ConnectionPool->getConnectionByName('Default')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 103
        if (!empty($GLOBALS['TYPO3_CONF_VARS']['DB']['TableMapping'][$tableName])) {
            $connectionName = (string)$GLOBALS['TYPO3_CONF_VARS']['DB']['TableMapping'][$tableName];
        }

        return $this->getConnectionByName($connectionName);
    }

    /**
     * Creates a connection object based on the specified identifier.
at TYPO3\CMS\Core\Database\ConnectionPool->getConnectionForTable('fe_users')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Database/ConnectionPool.php line 241
                1459423448
            );
        }

        return $this->getConnectionForTable($tableName)->createQueryBuilder();
    }

    /**
     * Returns an array containing the names of all currently configured connections.
at TYPO3\CMS\Core\Database\ConnectionPool->getQueryBuilderForTable('fe_users')
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 1319
     * @internal
     */
    public function getAuthInfoArray()
    {
        $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($this->user_table);
        $expressionBuilder = $queryBuilder->expr();
        $authInfo = [];
        $authInfo['loginType'] = $this->loginType;
        $authInfo['refInfo'] = parse_url(GeneralUtility::getIndpEnv('HTTP_REFERER'));
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->getAuthInfoArray()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 574
        // Indicates if an active authentication failed (not auto login)
        $this->loginFailure = false;
        $this->logger->debug('Login type: ' . $this->loginType);
        // The info array provide additional information for auth services
        $authInfo = $this->getAuthInfoArray();
        // Get Login/Logout data submitted by a form or params
        $loginData = $this->getLoginFormData();
        $this->logger->debug('Login data', $loginData);
        // Active logout (eg. with "logout" button)
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->checkAuthentication()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 374
        // Set all possible headers that could ensure that the script is not cached on the client-side
        $this->sendHttpHeaders();
        // Load user session, check to see if anyone has submitted login-information and if so authenticate
        // the user with the session. $this->user[uid] may be used to write log...
        $this->checkAuthentication();
        // Setting cookies
        if (!$this->dontSetCookie) {
            $this->setSessionCookie();
        }
at TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->start()
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 70
            $request = $this->transferFrontendUserSession($frontendUser, $request, $frontendSessionKey);
        }

        // Authenticate now
        $frontendUser->start();
        $frontendUser->unpack_uc();

        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fe8883fc41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/frontend/Classes/Http/Application.php line 64
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/staff/typo3/typo3_src-10.4.6/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /home/staff/typo3/typo3_src-10.4.6/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /home/staff/typo3/typo3_src-10.4.6/index.php line 26
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});