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 /home1/sevninwa/vouchers.79wallet.com/application/vendor/symfony/http-foundation/Response.php:1201 #2 ob_end_flush in /home1/sevninwa/vouchers.79wallet.com/application/vendor/symfony/http-foundation/Response.php:1201 #1 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home1/sevninwa/vouchers.79wallet.com/application/vendor/symfony/http-foundation/Response.php:364 #0 Symfony\Component\HttpFoundation\Response:send in /home1/sevninwa/vouchers.79wallet.com/index.php:59
3
ErrorException
/
vendor
/
symfony
/
http-foundation
/
Response.php
1201
2
ob_end_flush
/
vendor
/
symfony
/
http-foundation
/
Response.php
1201
1
Symfony
\
Component
\
HttpFoundation
\
Response
closeOutputBuffers
/
vendor
/
symfony
/
http-foundation
/
Response.php
364
0
Symfony
\
Component
\
HttpFoundation
\
Response
send
/
home1
/
sevninwa
/
vouchers.79wallet.com
/
index.php
59
/
home1
/
sevninwa
/
vouchers.79wallet.com
/
application
/
vendor
/
symfony
/
http-foundation
/
Response.php
    {
        return in_array($this->statusCode, array(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)
    {
        $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)
    {
        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)"
    
/
home1
/
sevninwa
/
vouchers.79wallet.com
/
application
/
vendor
/
symfony
/
http-foundation
/
Response.php
    {
        return in_array($this->statusCode, array(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)
    {
        $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)
    {
        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');
            }
        }
/
home1
/
sevninwa
/
vouchers.79wallet.com
/
application
/
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, array('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(array($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
    
/
home1
/
sevninwa
/
vouchers.79wallet.com
/
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
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
CONTENT_LENGTH
"0"
HTTP_HOST
"www.vouchers.79wallet.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
REDIRECT_UNIQUE_ID
"aiaQvYK-tfEKhUxu3ioyewAAXFA"
REDIRECT_QS_ConnectionId
"178091231792804632879369"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"www.vouchers.79wallet.com"
REDIRECT_HTTP2
"on"
REDIRECT_H2PUSH
"off"
REDIRECT_H2_PUSH
"off"
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_STREAM_ID
"1"
REDIRECT_H2_STREAM_TAG
"879369-988-1"
REDIRECT_STATUS
"200"
UNIQUE_ID
"aiaQvYK-tfEKhUxu3ioyewAAXFA"
QS_ConnectionId
"178091231792804632879369"
HTTPS
"on"
SSL_TLS_SNI
"www.vouchers.79wallet.com"
HTTP2
"on"
H2PUSH
"off"
H2_PUSH
"off"
H2_PUSHED
""
H2_PUSHED_ON
""
H2_STREAM_ID
"1"
H2_STREAM_TAG
"879369-988-1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"www.vouchers.79wallet.com"
SERVER_ADDR
"10.36.115.45"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.216.208"
DOCUMENT_ROOT
"/home1/sevninwa/vouchers.79wallet.com"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home1/sevninwa/vouchers.79wallet.com"
SERVER_ADMIN
"webmaster@vouchers.79wallet.com"
SCRIPT_FILENAME
"/home1/sevninwa/vouchers.79wallet.com/index.php"
REMOTE_PORT
"29661"
REDIRECT_URL
"/sitemap.xml/register"
SERVER_PROTOCOL
"HTTP/2.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/sitemap.xml/register"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1780912318.0218
REQUEST_TIME
1780912318
argv
[]
argc
0
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:tQJ0a2rohOh8go3lFD8RFy9D/q0z8wtEn4ovvsvl+/s="
APP_DEBUG
"true"
APP_URL
"https://vouchers.79wallet.com/"
APP_DEMO
"true"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"sevninwa_newplatform"
DB_USERNAME
"sevninwa_newplatformuser"
DB_PASSWORD
"AkikwMZ99bJ;"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"rsj17.rhostjh.com"
MAIL_PORT
"465"
MAIL_USERNAME
"support@79wallet.com"
MAIL_PASSWORD
"Joshua@#2022"
MAIL_ENCRYPTION
"SSL"
MAIL_FROM_ADDRESS
"support@79wallet.com"
MAIL_FROM_NAME
"79WALLET"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
STRIPE_PUBLISHABLE_KEY
""
STRIPE_SECRET_KEY
""
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STRO_WALLET_API_URL
"https://vouchers.79wallet.com"
STRO_PUBLIC_KEY
"Y9V"
SHELL_VERBOSITY
0
Key Value
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:tQJ0a2rohOh8go3lFD8RFy9D/q0z8wtEn4ovvsvl+/s="
APP_DEBUG
"true"
APP_URL
"https://vouchers.79wallet.com/"
APP_DEMO
"true"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"sevninwa_newplatform"
DB_USERNAME
"sevninwa_newplatformuser"
DB_PASSWORD
"AkikwMZ99bJ;"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"rsj17.rhostjh.com"
MAIL_PORT
"465"
MAIL_USERNAME
"support@79wallet.com"
MAIL_PASSWORD
"Joshua@#2022"
MAIL_ENCRYPTION
"SSL"
MAIL_FROM_ADDRESS
"support@79wallet.com"
MAIL_FROM_NAME
"79WALLET"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
STRIPE_PUBLISHABLE_KEY
""
STRIPE_SECRET_KEY
""
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STRO_WALLET_API_URL
"https://vouchers.79wallet.com"
STRO_PUBLIC_KEY
"Y9V"
SHELL_VERBOSITY
0
0. Whoops\Handler\PrettyPageHandler