Oct9

  • 9 Oct 2025 - 20 Oct 2025
  • Event Area , G FL., Thaniya Shopping Center
Whoops! There was an error.
ErrorException (E_NOTICE)
ob_end_flush(): failed to send buffer of zlib output compression (1) ErrorException thrown with message "ob_end_flush(): failed to send buffer of zlib output compression (1)" Stacktrace: #5 ErrorException in /home/zwfgpszw/public_html/thaniya.co.th/vendor/symfony/http-foundation/Response.php:1235 #4 ob_end_flush in /home/zwfgpszw/public_html/thaniya.co.th/vendor/symfony/http-foundation/Response.php:1235 #3 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/zwfgpszw/public_html/thaniya.co.th/vendor/symfony/http-foundation/Response.php:399 #2 Symfony\Component\HttpFoundation\Response:send in /home/zwfgpszw/public_html/thaniya.co.th/vendor/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php:34 #1 Illuminate\Support\HigherOrderTapProxy:__call in /home/zwfgpszw/public_html/thaniya.co.th/public/index.php:53 #0 require_once in /home/zwfgpszw/public_html/thaniya.co.th/server.php:21
5
ErrorException
/vendor/symfony/http-foundation/Response.php1235
4
ob_end_flush
/vendor/symfony/http-foundation/Response.php1235
3
Symfony\Component\HttpFoundation\Response closeOutputBuffers
/vendor/symfony/http-foundation/Response.php399
2
Symfony\Component\HttpFoundation\Response send
/vendor/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php34
1
Illuminate\Support\HigherOrderTapProxy __call
/public/index.php53
0
require_once
/server.php21
/home/zwfgpszw/public_html/thaniya.co.th/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();
            }
        }
    }
 
    /**
     * Marks a response as safe according to RFC8674.
     *
     * @see https://tools.ietf.org/html/rfc8674
     */
    public function setContentSafe(bool $safe = true): void
    {
        if ($safe) {
            $this->headers->set('Preference-Applied', 'safe');
        } elseif ('safe' === $this->headers->get('Preference-Applied')) {
            $this->headers->remove('Preference-Applied');
        }
 
        $this->setVary('Prefer', false);
Arguments
  1. "ob_end_flush(): failed to send buffer of zlib output compression (1)"
    
/home/zwfgpszw/public_html/thaniya.co.th/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();
            }
        }
    }
 
    /**
     * Marks a response as safe according to RFC8674.
     *
     * @see https://tools.ietf.org/html/rfc8674
     */
    public function setContentSafe(bool $safe = true): void
    {
        if ($safe) {
            $this->headers->set('Preference-Applied', 'safe');
        } elseif ('safe' === $this->headers->get('Preference-Applied')) {
            $this->headers->remove('Preference-Applied');
        }
 
        $this->setVary('Prefer', false);
/home/zwfgpszw/public_html/thaniya.co.th/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.
     *
     * @return $this
     *
     * @throws \UnexpectedValueException
     */
    public function setContent(?string $content)
    {
        $this->content = $content ?? '';
 
        return $this;
    }
 
    /**
Arguments
  1. 0
    
  2. true
    
/home/zwfgpszw/public_html/thaniya.co.th/vendor/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php
     * Create a new tap proxy instance.
     *
     * @param  mixed  $target
     * @return void
     */
    public function __construct($target)
    {
        $this->target = $target;
    }
 
    /**
     * Dynamically pass method calls to the target.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        $this->target->{$method}(...$parameters);
 
        return $this->target;
    }
}
 
/home/zwfgpszw/public_html/thaniya.co.th/public/index.php
require __DIR__.'/../vendor/autoload.php';
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
 
$app = require_once __DIR__.'/../bootstrap/app.php';
 
$kernel = $app->make(Kernel::class);
 
$response = tap($kernel->handle(
    $request = Request::capture()
))->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. "send"
    
  2. []
    
/home/zwfgpszw/public_html/thaniya.co.th/server.php
 
/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <taylor@laravel.com>
 */
 
$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
 
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}
 
require_once __DIR__.'/public/index.php';
 
Arguments
  1. "/home/zwfgpszw/public_html/thaniya.co.th/public/index.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"thaniya.co.th"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
DOCUMENT_ROOT
"/home/zwfgpszw/public_html/thaniya.co.th"
REMOTE_ADDR
"216.73.216.120"
REMOTE_PORT
"13450"
SERVER_ADDR
"118.27.130.238"
SERVER_NAME
"thaniya.co.th"
SERVER_ADMIN
"webmaster@thaniya.co.th.z196500-w622fg.ps06.zwhhosting.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/th/what-happening/httpswwwfacebookcomsharep172ba21358"
REDIRECT_URL
"/th/what-happening/httpswwwfacebookcomsharep172ba21358"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/zwfgpszw/public_html/thaniya.co.th/server.php"
QUERY_STRING
""
SCRIPT_URI
"https://thaniya.co.th/th/what-happening/httpswwwfacebookcomsharep172ba21358"
SCRIPT_URL
"/th/what-happening/httpswwwfacebookcomsharep172ba21358"
SCRIPT_NAME
"/server.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/server.php"
REQUEST_TIME_FLOAT
1760227942.5699
REQUEST_TIME
1760227942
APP_NAME
"Thaniya Plaza"
APP_ENV
"local"
APP_KEY
"base64:4mgl9a+37+QU+kjiThHSm9W4g1zvFnNZ6TevVjKSn2Q="
APP_DEBUG
"true"
APP_URL
"https://www.thaniya.co.th"
APP_TIMEZONE
"Asia/Bangkok"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"zwfgpszw_thaniya"
DB_USERNAME
"zwfgpszw_thausr"
DB_PASSWORD
"pKSNfoy8k8BM"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
MEMCACHED_HOST
"127.0.0.1"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.office365.com"
MAIL_PORT
"587"
MAIL_USERNAME
"concierge@thaniyagroup.com"
MAIL_PASSWORD
"Concg602"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"concierge@thaniyagroup.com"
MAIL_FROM_NAME
"Thaniya Plaza"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
APP_NAME
"Thaniya Plaza"
APP_ENV
"local"
APP_KEY
"base64:4mgl9a+37+QU+kjiThHSm9W4g1zvFnNZ6TevVjKSn2Q="
APP_DEBUG
"true"
APP_URL
"https://www.thaniya.co.th"
APP_TIMEZONE
"Asia/Bangkok"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"zwfgpszw_thaniya"
DB_USERNAME
"zwfgpszw_thausr"
DB_PASSWORD
"pKSNfoy8k8BM"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
MEMCACHED_HOST
"127.0.0.1"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.office365.com"
MAIL_PORT
"587"
MAIL_USERNAME
"concierge@thaniyagroup.com"
MAIL_PASSWORD
"Concg602"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"concierge@thaniyagroup.com"
MAIL_FROM_NAME
"Thaniya Plaza"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
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