Whoops! There was an error.
ErrorException (E_NOTICE)
ob_end_flush(): failed to send buffer of zlib output compression (0) ErrorException thrown with message "ob_end_flush(): failed to send buffer of zlib output compression (0)" Stacktrace: #3 ErrorException in /home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php:1224 #2 ob_end_flush in /home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php:1224 #1 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php:386 #0 Symfony\Component\HttpFoundation\Response:send in /home/infonika/public_html/eindeks/public/index.php:60
3
ErrorException
/vendor/symfony/http-foundation/Response.php1224
2
ob_end_flush
/vendor/symfony/http-foundation/Response.php1224
1
Symfony\Component\HttpFoundation\Response closeOutputBuffers
/vendor/symfony/http-foundation/Response.php386
0
Symfony\Component\HttpFoundation\Response send
/public/index.php60
/home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php
    {
        return \in_array($this->statusCode, [204, 304]);
    }
 
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @final
     */
    public static function closeOutputBuffers(int $targetLevel, bool $flush): void
    {
        $status = ob_get_status(true);
        $level = \count($status);
        $flags = PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? PHP_OUTPUT_HANDLER_FLUSHABLE : PHP_OUTPUT_HANDLER_CLEANABLE);
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final
     */
    protected function ensureIEOverSSLCompatibility(Request $request): void
    {
        if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
Arguments
  1. "ob_end_flush(): failed to send buffer of zlib output compression (0)"
    
/home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php
    {
        return \in_array($this->statusCode, [204, 304]);
    }
 
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @final
     */
    public static function closeOutputBuffers(int $targetLevel, bool $flush): void
    {
        $status = ob_get_status(true);
        $level = \count($status);
        $flags = PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? PHP_OUTPUT_HANDLER_FLUSHABLE : PHP_OUTPUT_HANDLER_CLEANABLE);
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final
     */
    protected function ensureIEOverSSLCompatibility(Request $request): void
    {
        if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
/home/infonika/public_html/eindeks/vendor/symfony/http-foundation/Response.php
    {
        echo $this->content;
 
        return $this;
    }
 
    /**
     * Sends HTTP headers and content.
     *
     * @return $this
     */
    public function send()
    {
        $this->sendHeaders();
        $this->sendContent();
 
        if (\function_exists('fastcgi_finish_request')) {
            fastcgi_finish_request();
        } elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
            static::closeOutputBuffers(0, true);
        }
 
        return $this;
    }
 
    /**
     * Sets the response content.
     *
     * Valid types are strings, numbers, null, and objects that implement a __toString() method.
     *
     * @param mixed $content Content that can be cast to string
     *
     * @return $this
     *
     * @throws \UnexpectedValueException
     */
    public function setContent($content)
    {
        if (null !== $content && !\is_string($content) && !is_numeric($content) && !\is_callable([$content, '__toString'])) {
            throw new \UnexpectedValueException(sprintf('The Response content must be a string or object implementing __toString(), "%s" given.', \gettype($content)));
Arguments
  1. 0
    
  2. true
    
/home/infonika/public_html/eindeks/public/index.php
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);

Environment & details:

empty
empty
empty
empty
empty
Key Value
PHPRC
"/home/php-fastcgi/infonika/php7.2.ini"
PHP_VHOST
"api.metconcept.infotronika.eu"
PHP_DIR
"/home/infonika/public_html/api.metconcept/public/"
PATH
"/usr/local/bin:/bin:/usr/bin"
PWD
"/"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_CONNECTION
"close"
HTTP_HOST
"www.eindeks.infotronika.eu"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_FORWARDED_FOR
"216.73.217.58"
HTTP_VIA
"2.0 Caddy"
HTTP_X_REAL_IP
"216.73.217.58"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_JA4H
"ge20nn030000_bf247abe65c0_000000000000_000000000000"
HTTP_WHITELISTED
"true"
HTTP_X_FORWARDED_HOST
"www.eindeks.infotronika.eu"
DOCUMENT_ROOT
"/home/infonika/public_html/eindeks/public"
REMOTE_ADDR
"216.73.217.58"
REMOTE_PORT
"54404"
SERVER_ADDR
"192.168.100.116"
SERVER_NAME
"www.eindeks.infotronika.eu"
SERVER_ADMIN
"webmaster@eindeks.infotronika.eu"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/password/reset"
REDIRECT_URL
"/password/reset"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
REDIRECT_STATUS
"200"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/infonika/public_html/eindeks/public/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://www.eindeks.infotronika.eu/password/reset"
SCRIPT_URL
"/password/reset"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1789756829.3567
REQUEST_TIME
1789756829
APP_NAME
"eindeks.infotronika"
APP_ENV
"production"
APP_KEY
"base64:pcgrFzK97mvAeVDxXJ5CxAlFwC+ECpWYSWgQTcGVuoQ="
APP_DEBUG
"true"
APP_URL
"http://eindeks.infotronika.eu"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"infonika_eindeks"
DB_USERNAME
"infonika_eindeks"
DB_PASSWORD
"BZe-z6fWk(@b"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"lOBDKGPnd79CkoHo"
REDIS_PORT
"1613"
MAIL_DRIVER
"smtp"
MAIL_HOST
"hosting1991074.online.pro"
MAIL_PORT
"465"
MAIL_USERNAME
"testy@e-indeks.infotronika.eu"
MAIL_PASSWORD
"ioB3PEAX"
MAIL_ENCRYPTION
"tls"
MAIL_NO_REPLY
"testy@e-indeks.infotronika.eu"
MAIL_FROM_ADDRESS
"no-reply@e-indeks.infotronika.eu"
MAIL_FROM_NAME
"e-indeks.infotronika.eu"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_NAME
"eindeks.infotronika"
APP_ENV
"production"
APP_KEY
"base64:pcgrFzK97mvAeVDxXJ5CxAlFwC+ECpWYSWgQTcGVuoQ="
APP_DEBUG
"true"
APP_URL
"http://eindeks.infotronika.eu"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"infonika_eindeks"
DB_USERNAME
"infonika_eindeks"
DB_PASSWORD
"BZe-z6fWk(@b"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"lOBDKGPnd79CkoHo"
REDIS_PORT
"1613"
MAIL_DRIVER
"smtp"
MAIL_HOST
"hosting1991074.online.pro"
MAIL_PORT
"465"
MAIL_USERNAME
"testy@e-indeks.infotronika.eu"
MAIL_PASSWORD
"ioB3PEAX"
MAIL_ENCRYPTION
"tls"
MAIL_NO_REPLY
"testy@e-indeks.infotronika.eu"
MAIL_FROM_ADDRESS
"no-reply@e-indeks.infotronika.eu"
MAIL_FROM_NAME
"e-indeks.infotronika.eu"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler