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 (0) ErrorException thrown with message "ob_end_flush(): failed to send buffer of zlib output compression (0)" Stacktrace: #4 ErrorException in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:1224 #3 ob_end_flush in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:1224 #2 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/techwhee/public_html/vendor/symfony/http-foundation/Response.php:386 #1 Symfony\Component\HttpFoundation\Response:send in /home/techwhee/public_html/public/index.php:55 #0 require_once in /home/techwhee/public_html/index.php:16
4
ErrorException
/vendor/symfony/http-foundation/Response.php1224
3
ob_end_flush
/vendor/symfony/http-foundation/Response.php1224
2
Symfony\Component\HttpFoundation\Response closeOutputBuffers
/vendor/symfony/http-foundation/Response.php386
1
Symfony\Component\HttpFoundation\Response send
/public/index.php55
0
require_once
/index.php16
/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 (0)"
    
/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)));
Arguments
  1. 0
    
  2. true
    
/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);
 
/home/techwhee/public_html/index.php
<?php
 
/**
 * Laravel - A PHP Framework For Web Artisans.
 *
 * @author   Taylor Otwell <taylor@laravel.com>
 */
$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
 
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}
 
require_once __DIR__.'/public/index.php';
 
Arguments
  1. "/home/techwhee/public_html/public/index.php"
    

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"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"www.techwheels.in"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
PATH
"/bin:/usr/bin:/usr/local/php/bin"
PHPRC
"/home/techwhee"
QUERY_STRING
""
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"www.techwheels.in"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aEr5gj7bnunMHpXr1VVmGAAAAsw"
REDIRECT_URL
"/singl_blog/1"
REMOTE_ADDR
"216.73.216.237"
REMOTE_PORT
"45359"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_URI
"/singl_blog/1"
SCRIPT_FILENAME
"/home/techwhee/public_html/index.php"
SCRIPT_NAME
"/index.php"
SERVER_ADDR
"216.48.190.45"
SERVER_ADMIN
"webmaster@techwheels.in"
SERVER_NAME
"www.techwheels.in"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.54 (Unix) OpenSSL/1.0.2k-fips"
SSL_TLS_SNI
"www.techwheels.in"
UNIQUE_ID
"aEr5gj7bnunMHpXr1VVmGAAAAsw"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1749744002.7228
REQUEST_TIME
1749744002
argv
[]
argc
0
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
CONTEXT_DOCUMENT_ROOT
"/home/techwhee/public_html"
CONTEXT_PREFIX
""
DOCUMENT_ROOT
"/home/techwhee/public_html"
GATEWAY_INTERFACE
"CGI/1.1"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"www.techwheels.in"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
PATH
"/bin:/usr/bin:/usr/local/php/bin"
PHPRC
"/home/techwhee"
QUERY_STRING
""
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"www.techwheels.in"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aEr5gj7bnunMHpXr1VVmGAAAAsw"
REDIRECT_URL
"/singl_blog/1"
REMOTE_ADDR
"216.73.216.237"
REMOTE_PORT
"45359"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_URI
"/singl_blog/1"
SCRIPT_FILENAME
"/home/techwhee/public_html/index.php"
SCRIPT_NAME
"/index.php"
SERVER_ADDR
"216.48.190.45"
SERVER_ADMIN
"webmaster@techwheels.in"
SERVER_NAME
"www.techwheels.in"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.54 (Unix) OpenSSL/1.0.2k-fips"
SSL_TLS_SNI
"www.techwheels.in"
UNIQUE_ID
"aEr5gj7bnunMHpXr1VVmGAAAAsw"
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