Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
Uncaught Error: Call to undefined function Whoops\Exception\xdebug_is_enabled() in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254 Stack trace: #0 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php(175): Whoops\Exception\Inspector->getTrace(Object(Symfony\Component\Debug\Exception\FatalThrowableError)) #1 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(280): Whoops\Exception\Inspector->getFrames() #2 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(197): Whoops\Handler\PrettyPageHandler->getExceptionFrames() #3 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Run.php(296): Whoops\Handler\PrettyPageHandler->handle(Object(Symfony\Component\Debug\Exception\FatalThrowableError)) #4 /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(339): Whoops\Run->handleException(Object(Symfony\Component\Debug\E Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Uncaught Error: Call to undefined function Whoops\Exception\xdebug_is_enabled() in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254 Stack trace: #0 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php(175): Whoops\Exception\Inspector->getTrace(Object(Symfony\Component\Debug\Exception\FatalThrowableError)) #1 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(280): Whoops\Exception\Inspector->getFrames() #2 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(197): Whoops\Handler\PrettyPageHandler->getExceptionFrames() #3 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Run.php(296): Whoops\Handler\PrettyPageHandler->handle(Object(Symfony\Component\Debug\Exception\FatalThrowableError)) #4 /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(339): Whoops\Run->handleException(Object(Symfony\Component\Debug\E" Stacktrace: #3 Symfony\Component\Debug\Exception\FatalErrorException in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254 #2 Symfony\Component\Debug\Exception\FatalErrorException:__construct in /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:137 #1 Illuminate\Foundation\Bootstrap\HandleExceptions:fatalExceptionFromError in /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:123 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleShutdown in /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:0
3
Symfony\Component\Debug\Exception\FatalErrorException
/vendor/filp/whoops/src/Whoops/Exception/Inspector.php254
2
Symfony\Component\Debug\Exception\FatalErrorException __construct
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php137
1
Illuminate\Foundation\Bootstrap\HandleExceptions fatalExceptionFromError
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php123
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleShutdown
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php0
/home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php
     *
     * If xdebug is installed
     *
     * @param \Throwable $e
     * @return array
     */
    protected function getTrace($e)
    {
        $traces = $e->getTrace();
 
        // Get trace from xdebug if enabled, failure exceptions only trace to the shutdown handler by default
        if (!$e instanceof \ErrorException) {
            return $traces;
        }
 
        if (!Misc::isLevelFatal($e->getSeverity())) {
            return $traces;
        }
 
        if (!extension_loaded('xdebug') || !xdebug_is_enabled()) {
            return $traces;
        }
 
        // Use xdebug to get the full stack trace and remove the shutdown handler stack trace
        $stack = array_reverse(xdebug_get_function_stack());
        $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
        $traces = array_diff_key($stack, $trace);
 
        return $traces;
    }
 
    /**
     * Given an exception, generates an array in the format
     * generated by Exception::getTrace()
     * @param  \Throwable $exception
     * @return array
     */
    protected function getFrameFromException($exception)
    {
        return [
Arguments
  1. """
    Uncaught Error: Call to undefined function Whoops\Exception\xdebug_is_enabled() in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254\n
    Stack trace:\n
    #0 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php(175): Whoops\Exception\Inspector->getTrace(Object(Symfony\Component\Debug\Exception\FatalThrowableError))\n
    #1 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(280): Whoops\Exception\Inspector->getFrames()\n
    #2 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(197): Whoops\Handler\PrettyPageHandler->getExceptionFrames()\n
    #3 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Run.php(296): Whoops\Handler\PrettyPageHandler->handle(Object(Symfony\Component\Debug\Exception\FatalThrowableError))\n
    #4 /home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(339): Whoops\Run->handleException(Object(Symfony\Component\Debug\E
    """
    
/home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
     * @return void
     */
    public function handleShutdown()
    {
        if (! is_null($error = error_get_last()) && $this->isFatal($error['type'])) {
            $this->handleException($this->fatalExceptionFromError($error, 0));
        }
    }
 
    /**
     * Create a new fatal exception instance from an error array.
     *
     * @param  array  $error
     * @param  int|null  $traceOffset
     * @return \Symfony\Component\Debug\Exception\FatalErrorException
     */
    protected function fatalExceptionFromError(array $error, $traceOffset = null)
    {
        return new FatalErrorException(
            $error['message'], $error['type'], 0, $error['file'], $error['line'], $traceOffset
        );
    }
 
    /**
     * Determine if the error type is fatal.
     *
     * @param  int  $type
     * @return bool
     */
    protected function isFatal($type)
    {
        return in_array($type, [E_COMPILE_ERROR, E_CORE_ERROR, E_ERROR, E_PARSE]);
    }
 
    /**
     * Get an instance of the exception handler.
     *
     * @return \Illuminate\Contracts\Debug\ExceptionHandler
     */
    protected function getExceptionHandler()
Arguments
  1. "'Uncaught Error: Call to undefined function Whoops\\Exception\\xdebug_is_enabled() in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254\nStack trace:\n#0 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php(175): Whoops\\Exception\\Inspector->getTrace(Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#1 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(280): Whoops\\Exception\\Inspec'"
    
  2. "1"
    
  3. "0"
    
  4. "'/home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php'"
    
  5. "254"
    
  6. "0"
    
  7. "???"
    
  8. "???"
    
  9. "???"
    
/home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
    /**
     * Render an exception as an HTTP response and send it.
     *
     * @param  \Exception  $e
     * @return void
     */
    protected function renderHttpResponse(Exception $e)
    {
        $this->getExceptionHandler()->render($this->app['request'], $e)->send();
    }
 
    /**
     * Handle the PHP shutdown event.
     *
     * @return void
     */
    public function handleShutdown()
    {
        if (! is_null($error = error_get_last()) && $this->isFatal($error['type'])) {
            $this->handleException($this->fatalExceptionFromError($error, 0));
        }
    }
 
    /**
     * Create a new fatal exception instance from an error array.
     *
     * @param  array  $error
     * @param  int|null  $traceOffset
     * @return \Symfony\Component\Debug\Exception\FatalErrorException
     */
    protected function fatalExceptionFromError(array $error, $traceOffset = null)
    {
        return new FatalErrorException(
            $error['message'], $error['type'], 0, $error['file'], $error['line'], $traceOffset
        );
    }
 
    /**
     * Determine if the error type is fatal.
     *
Arguments
  1. "['type' => 1, 'message' => 'Uncaught Error: Call to undefined function Whoops\\Exception\\xdebug_is_enabled() in /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php:254\nStack trace:\n#0 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php(175): Whoops\\Exception\\Inspector->getTrace(Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#1 /home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php(280): Whoops\\Exception\\Inspec', 'file' => '/home/gasholadmin/public_html/vendor/filp/whoops/src/Whoops/Exception/Inspector.php', 'line' => 254]"
    
  2. "0"
    
/home/gasholadmin/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
<?php
 
namespace Illuminate\Foundation\Bootstrap;
 
use Exception;
use ErrorException;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Contracts\Foundation\Application;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Debug\Exception\FatalErrorException;
use Symfony\Component\Debug\Exception\FatalThrowableError;
 
class HandleExceptions
{
    /**
     * The application instance.
     *
     * @var \Illuminate\Contracts\Foundation\Application
     */
    protected $app;
 
    /**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $this->app = $app;
 
        error_reporting(-1);
 
        set_error_handler([$this, 'handleError']);
 
        set_exception_handler([$this, 'handleException']);
 
        register_shutdown_function([$this, 'handleShutdown']);
 
        if (! $app->environment('testing')) {

Environment & details:

empty
empty
empty
empty
empty
Key Value
USER
"gasholadmin"
HOME
"/home/gasholadmin"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/ka/full/NEW/%25E1%2583%2594%25E1%2583%259C%25E1%2583%259D%25E1%2583%2591%25E1%2583%25A0%25E1%2583%2598%25E1%2583%2595%25E1%2583%2598_%25E1%2583%2597%25E1%2583%2590%25E1%2583%259B%25E1%2583%2590%25E1%2583%25A8%25E1%2583%2594%25E1%2583%2591%25E1%2583%2598%25E1%2583%25A1_%25E1%2583%2590%25E1%2583%25AE%25E1%2583%2590%25E1%2583%259A%25E1%2583%2598_%25E1%2583%259E%25E1%2583%25A0%25E1%2583%259D%25E1%2583%2594%25E1%2583%25A5%25E1%2583%25A2%25E1%2583%2598_%25E1%2583%2593%25E1%2583%2590/78"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/ka/full/NEW/%E1%83%94%E1%83%9C%E1%83%9D%E1%83%91%E1%83%A0%E1%83%98%E1%83%95%E1%83%98_%E1%83%97%E1%83%90%E1%83%9B%E1%83%90%E1%83%A8%E1%83%94%E1%83%91%E1%83%98%E1%83%A1_%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%9E%E1%83%A0%E1%83%9D%E1%83%94%E1%83%A5%E1%83%A2%E1%83%98_%E1%83%93%E1%83%90/78"
REMOTE_PORT
"53870"
SCRIPT_FILENAME
"/home/gasholadmin/public_html/index.php"
SERVER_ADMIN
"webmaster@gashol.ge"
CONTEXT_DOCUMENT_ROOT
"/home/gasholadmin/public_html"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"http"
DOCUMENT_ROOT
"/home/gasholadmin/public_html"
REMOTE_ADDR
"3.239.119.159"
SERVER_PORT
"80"
SERVER_ADDR
"192.168.140.7"
SERVER_NAME
"gashol.ge"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
HTTP_HOST
"gashol.ge"
HTTP_USER_AGENT
"claudebot"
HTTP_ACCEPT
"*/*"
proxy-nokeepalive
"1"
SCRIPT_URI
"http://gashol.ge/ka/full/NEW/%E1%83%94%E1%83%9C%E1%83%9D%E1%83%91%E1%83%A0%E1%83%98%E1%83%95%E1%83%98_%E1%83%97%E1%83%90%E1%83%9B%E1%83%90%E1%83%A8%E1%83%94%E1%83%91%E1%83%98%E1%83%A1_%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%9E%E1%83%A0%E1%83%9D%E1%83%94%E1%83%A5%E1%83%A2%E1%83%98_%E1%83%93%E1%83%90/78"
SCRIPT_URL
"/ka/full/NEW/%E1%83%94%E1%83%9C%E1%83%9D%E1%83%91%E1%83%A0%E1%83%98%E1%83%95%E1%83%98_%E1%83%97%E1%83%90%E1%83%9B%E1%83%90%E1%83%A8%E1%83%94%E1%83%91%E1%83%98%E1%83%A1_%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%9E%E1%83%A0%E1%83%9D%E1%83%94%E1%83%A5%E1%83%A2%E1%83%98_%E1%83%93%E1%83%90/78"
UNIQUE_ID
"ZgV7Mtb66wiGAyEMOGOwjgAAABA"
REDIRECT_STATUS
"200"
REDIRECT_SCRIPT_URI
"http://gashol.ge/ka/full/NEW/%E1%83%94%E1%83%9C%E1%83%9D%E1%83%91%E1%83%A0%E1%83%98%E1%83%95%E1%83%98_%E1%83%97%E1%83%90%E1%83%9B%E1%83%90%E1%83%A8%E1%83%94%E1%83%91%E1%83%98%E1%83%A1_%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%9E%E1%83%A0%E1%83%9D%E1%83%94%E1%83%A5%E1%83%A2%E1%83%98_%E1%83%93%E1%83%90/78"
REDIRECT_SCRIPT_URL
"/ka/full/NEW/%E1%83%94%E1%83%9C%E1%83%9D%E1%83%91%E1%83%A0%E1%83%98%E1%83%95%E1%83%98_%E1%83%97%E1%83%90%E1%83%9B%E1%83%90%E1%83%A8%E1%83%94%E1%83%91%E1%83%98%E1%83%A1_%E1%83%90%E1%83%AE%E1%83%90%E1%83%9A%E1%83%98_%E1%83%9E%E1%83%A0%E1%83%9D%E1%83%94%E1%83%A5%E1%83%A2%E1%83%98_%E1%83%93%E1%83%90/78"
REDIRECT_UNIQUE_ID
"ZgV7Mtb66wiGAyEMOGOwjgAAABA"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711635250.7832
REQUEST_TIME
1711635250
argv
[]
argc
0
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:OTdDPqJrhBfFarOsIh7k6tKbTbMa/+jw+x5Ct8rO1xU="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"gasholge"
DB_USERNAME
"gasholadmin1"
DB_PASSWORD
";g[SZyN2FJ9!"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"imap.gmail.com"
MAIL_PORT
"993"
MAIL_USERNAME
"ljgarkava@gmail.com"
MAIL_PASSWORD
"Tbilisi_1983"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_NAME
"ljgarkava@gmail.com"
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"
SENTRY_LARAVEL_DSN
"https://267671154c3742e5a5421dec05ffbcdf@sentry.io/2290093"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:OTdDPqJrhBfFarOsIh7k6tKbTbMa/+jw+x5Ct8rO1xU="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"gasholge"
DB_USERNAME
"gasholadmin1"
DB_PASSWORD
";g[SZyN2FJ9!"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"imap.gmail.com"
MAIL_PORT
"993"
MAIL_USERNAME
"ljgarkava@gmail.com"
MAIL_PASSWORD
"Tbilisi_1983"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_NAME
"ljgarkava@gmail.com"
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"
SENTRY_LARAVEL_DSN
"https://267671154c3742e5a5421dec05ffbcdf@sentry.io/2290093"
0. Whoops\Handler\PrettyPageHandler