Whoops, looks like something went wrong.

(1/1) TypeError

fseek() expects parameter 1 to be resource, int given

in /var/www/clients/client1/web99/web/typo3_src-11.5.2/vendor/guzzlehttp/psr7/src/Stream.php line 210
        }
        if (!$this->seekable) {
            throw new \RuntimeException('Stream is not seekable');
        }
        if (fseek($this->stream, $offset, $whence) === -1) {
            throw new \RuntimeException('Unable to seek to stream position '
                . $offset . ' with whence ' . var_export($whence, true));
        }
    }
at fseek()
in /var/www/clients/client1/web99/web/typo3_src-11.5.2/vendor/guzzlehttp/psr7/src/Stream.php line 210
        }
        if (!$this->seekable) {
            throw new \RuntimeException('Stream is not seekable');
        }
        if (fseek($this->stream, $offset, $whence) === -1) {
            throw new \RuntimeException('Unable to seek to stream position '
                . $offset . ' with whence ' . var_export($whence, true));
        }
    }
at GuzzleHttp\Psr7\Stream->seek()
in /var/www/clients/client1/web99/web/typo3_src-11.5.2/vendor/guzzlehttp/psr7/src/Stream.php line 81
    public function __toString(): string
    {
        try {
            if ($this->isSeekable()) {
                $this->seek(0);
            }
            return $this->getContents();
        } catch (\Throwable $e) {
            if (\PHP_VERSION_ID >= 70400) {
at GuzzleHttp\Psr7\Stream->__toString()
in /var/www/clients/client1/web99/web/typo3_src-11.5.2/typo3/sysext/core/Classes/Http/AbstractApplication.php line 75
        if ($body instanceof SelfEmittableStreamInterface) {
            // Optimization for streams that use php functions like readfile() as fastpath for serving files.
            $body->emit();
        } else {
            echo $body->__toString();
        }
    }

    /**
at TYPO3\CMS\Core\Http\AbstractApplication->sendResponse()
in /var/www/clients/client1/web99/web/typo3_src-11.5.2/typo3/sysext/core/Classes/Http/AbstractApplication.php line 107
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }

        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /var/www/clients/client1/web99/web/typo3_src-11.5.2/index.php line 20
// Set up the application for the frontend
call_user_func(static 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 /var/www/clients/client1/web99/web/typo3_src-11.5.2/index.php line 21
call_user_func(static 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();
});