Click to call Contact Us

News Feeds

Magic will have no boundaries when ALTROZ, #TheGoldStandard of Hatchbacks meets IPL, #TheGoldStandard of Cricket. ALTROZ - Proud Official Partner of Dream 11 IPL 2020.

Magic will have no boundaries when ALTROZ, #TheGoldStandard of Hatchbacks meets IPL,  #TheG

Magic will have no boundaries when ALTROZ, #TheGoldStandard of Hatchbacks meets IPL, #TheGoldStandard of Cricket. ALTROZ - Proud Official Partner of Dream 11 IPL 2020.

2020-09-16

Magic will have no boundaries when ALTROZ, #TheGoldStandard of Hatchbacks meets IPL,  #TheGoldStandard of Cricket.  ALTROZ - Proud Official Partner of Dream 11 IPL 2020

Tata Axa

 

...

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: #3 ErrorException in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:1224 #2 ob_end_flush in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:1224 #1 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:386 #0 Symfony\Component\HttpFoundation\Response:send in /home/techwhee/public_html/public/index.php:55
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.php55
/home/techwhee/public_html/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 (1)"
    
/home/techwhee/public_html/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/techwhee/public_html/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)));
/home/techwhee/public_html/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
CONTEXT_DOCUMENT_ROOT
"/home/techwhee/public_html"
CONTEXT_PREFIX
""
DOCUMENT_ROOT
"/home/techwhee/public_html"
GATEWAY_INTERFACE
"CGI/1.1"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_CACHE_CONTROL
"max-age=259200"
HTTP_CONNECTION
"keep-alive"
HTTP_HOST
"www.techwheels.in"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_VIA
"1.1 squid-proxy-5b5d847c96-47l7w (squid/6.10)"
HTTP_X_FORWARDED_FOR
"10.1.55.103"
PATH
"/bin:/usr/bin:/usr/local/php/bin"
PHPRC
"/home/techwhee"
QUERY_STRING
""
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aEb2K8aiRhfLh9-obsCiEQAAARA"
REDIRECT_URL
"/public/singl_blog/1"
REMOTE_ADDR
"216.73.216.233"
REMOTE_PORT
"34785"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"http"
REQUEST_URI
"/public/singl_blog/1"
SCRIPT_FILENAME
"/home/techwhee/public_html/public/index.php"
SCRIPT_NAME
"/public/index.php"
SERVER_ADDR
"216.48.190.45"
SERVER_ADMIN
"webmaster@techwheels.in"
SERVER_NAME
"www.techwheels.in"
SERVER_PORT
"80"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.54 (Unix) OpenSSL/1.0.2k-fips"
UNIQUE_ID
"aEb2K8aiRhfLh9-obsCiEQAAARA"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1749481003.2862
REQUEST_TIME
1749481003
APP_NAME
"TechWheels"
APP_SHORT_NAME
"TechWheels"
APP_ENV
"local"
APP_KEY
"base64:ef8EvaGV/yOcpkPea8fI7/ohYehgtLQngs8k5zLYnVc="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://techwheels.in/"
DEBUGBAR_ENABLED
"false"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"techwhee_twh_main_site"
DB_USERNAME
"techwhee"
DB_PASSWORD
"sfuwU#ZHf4@2BP"
ENABLE_REGISTRATION
"true"
REQUIRES_APPROVAL
"false"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
SESSION_TIMEOUT_STATUS
"true"
SESSION_TIMEOUT
"600"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_FROM_ADDRESS
"admin@techwheels.in"
MAIL_USERNAME
"admin@techwheels.in"
MAIL_PASSWORD
"Y00786@techwheels"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
JWT_SECRET
"flUMRJC8fkeqS6GffdfgsdfgdpPdnXZ5Tp7TYAXcB"
Key Value
APP_NAME
"TechWheels"
APP_SHORT_NAME
"TechWheels"
APP_ENV
"local"
APP_KEY
"base64:ef8EvaGV/yOcpkPea8fI7/ohYehgtLQngs8k5zLYnVc="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://techwheels.in/"
DEBUGBAR_ENABLED
"false"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"techwhee_twh_main_site"
DB_USERNAME
"techwhee"
DB_PASSWORD
"sfuwU#ZHf4@2BP"
ENABLE_REGISTRATION
"true"
REQUIRES_APPROVAL
"false"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
SESSION_TIMEOUT_STATUS
"true"
SESSION_TIMEOUT
"600"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_FROM_ADDRESS
"admin@techwheels.in"
MAIL_USERNAME
"admin@techwheels.in"
MAIL_PASSWORD
"Y00786@techwheels"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
JWT_SECRET
"flUMRJC8fkeqS6GffdfgsdfgdpPdnXZ5Tp7TYAXcB"
0. Whoops\Handler\PrettyPageHandler