Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR)
Undefined constant "none" Symfony\Component\Debug\Exception\FatalThrowableError thrown with message "Undefined constant "none"" Stacktrace: #7 Symfony\Component\Debug\Exception\FatalThrowableError in /home/minuqnuy/system_whatsweb/config/session.php:198 #6 require in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:72 #5 Illuminate\Foundation\Bootstrap\LoadConfiguration:loadConfigurationFiles in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:39 #4 Illuminate\Foundation\Bootstrap\LoadConfiguration:bootstrap in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:211 #3 Illuminate\Foundation\Application:bootstrapWith in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:162 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:146 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 #0 Illuminate\Foundation\Http\Kernel:handle in /home/minuqnuy/public_html/index.php:55
7
Symfony\Component\Debug\Exception\FatalThrowableError
/config/session.php198
6
require
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php72
5
Illuminate\Foundation\Bootstrap\LoadConfiguration loadConfigurationFiles
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php39
4
Illuminate\Foundation\Bootstrap\LoadConfiguration bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php211
3
Illuminate\Foundation\Application bootstrapWith
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php162
2
Illuminate\Foundation\Http\Kernel bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php146
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php116
0
Illuminate\Foundation\Http\Kernel handle
/home/minuqnuy/public_html/index.php55
/home/minuqnuy/system_whatsweb/config/session.php
    | the HTTP protocol. You are free to modify this option if needed.
    |
    */

    'http_only' => true,
    
    /*
    |--------------------------------------------------------------------------
    | Same-Site Cookies
    |--------------------------------------------------------------------------
    |
    | This option determines how your cookies behave when cross-site requests
    | take place, and can be used to mitigate CSRF attacks. By default, we
    | do not enable this as other CSRF protection services are in place.
    |
    | Supported: "lax", "strict"
    |
    */

    'same_site' => none,

];
 
Arguments
  1. "Undefined constant "none""
    
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
 
    /**
     * Load the configuration items from all of the files.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @param  \Illuminate\Contracts\Config\Repository  $repository
     * @return void
     *
     * @throws \Exception
     */
    protected function loadConfigurationFiles(Application $app, RepositoryContract $repository)
    {
        $files = $this->getConfigurationFiles($app);
 
        if (! isset($files['app'])) {
            throw new Exception('Unable to load the "app" configuration file.');
        }
 
        foreach ($files as $key => $path) {
            $repository->set($key, require $path);
        }
    }
 
    /**
     * Get all of the configuration files for the application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return array
     */
    protected function getConfigurationFiles(Application $app)
    {
        $files = [];
 
        $configPath = realpath($app->configPath());
 
        foreach (Finder::create()->files()->name('*.php')->in($configPath) as $file) {
            $directory = $this->getNestedDirectory($file, $configPath);
 
            $files[$directory.basename($file->getRealPath(), '.php')] = $file->getRealPath();
        }
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
    public function bootstrap(Application $app)
    {
        $items = [];
 
        // First we will see if we have a cache configuration file. If we do, we'll load
        // the configuration items from that file so that it is very quick. Otherwise
        // we will need to spin through every configuration file and load them all.
        if (file_exists($cached = $app->getCachedConfigPath())) {
            $items = require $cached;
 
            $loadedFromCache = true;
        }
 
        // Next we will spin through all of the configuration files in the configuration
        // directory and load each one into the repository. This will make all of the
        // options available to the developer for use in various parts of this app.
        $app->instance('config', $config = new Repository($items));
 
        if (! isset($loadedFromCache)) {
            $this->loadConfigurationFiles($app, $config);
        }
 
        // Finally, we will set the application's environment based on the configuration
        // values that were loaded. We will pass a callback which will be used to get
        // the environment in a web context where an "--env" switch is not present.
        $app->detectEnvironment(function () use ($config) {
            return $config->get('app.env', 'production');
        });
 
        date_default_timezone_set($config->get('app.timezone', 'UTC'));
 
        mb_internal_encoding('UTF-8');
    }
 
    /**
     * Load the configuration items from all of the files.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @param  \Illuminate\Contracts\Config\Repository  $repository
     * @return void
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $this->register(new EventServiceProvider($this));
        $this->register(new LogServiceProvider($this));
        $this->register(new RoutingServiceProvider($this));
    }
 
    /**
     * Run the given array of bootstrap classes.
     *
     * @param  string[]  $bootstrappers
     * @return void
     */
    public function bootstrapWith(array $bootstrappers)
    {
        $this->hasBeenBootstrapped = true;
 
        foreach ($bootstrappers as $bootstrapper) {
            $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 
            $this->make($bootstrapper)->bootstrap($this);
 
            $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
        }
    }
 
    /**
     * Register a callback to run after loading the environment.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public function afterLoadingEnvironment(Closure $callback)
    {
        return $this->afterBootstrapping(
            LoadEnvironmentVariables::class, $callback
        );
    }
 
    /**
     * Register a callback to run before a bootstrapper.
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app['events']->dispatch(
            new Events\RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
/home/minuqnuy/system_whatsweb/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
            $router->middlewareGroup($key, $middleware);
        }
 
        foreach ($this->routeMiddleware as $key => $middleware) {
            $router->aliasMiddleware($key, $middleware);
        }
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Exception $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        } catch (Throwable $e) {
            $this->reportException($e = new FatalThrowableError($e));
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new Events\RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
/home/minuqnuy/public_html/index.php
*/

$app = require_once __DIR__.'/../system_whatsweb/bootstrap/app.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
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_HOST
"minurl.in"
HTTP_USER_AGENT
"claudebot"
HTTP_X_FORWARDED_FOR
"34.228.7.237,172.70.35.11"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_RAY
"866b43c3ea8d5b4d-IAD"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_CONNECTING_IP
"34.228.7.237"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_HTTPS
"on"
DOCUMENT_ROOT
"/home/minuqnuy/public_html"
REMOTE_ADDR
"34.228.7.237"
REMOTE_PORT
"40612"
SERVER_ADDR
"66.29.141.5"
SERVER_NAME
"minurl.in"
SERVER_ADMIN
"[email protected]"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/WEBHOSTING"
REDIRECT_URL
"/WEBHOSTING"
REDIRECT_REQUEST_METHOD
"GET"
PROXY_REMOTE_ADDR
"66.29.141.5"
HTTPS
"on"
REDIRECT_STATUS
"200"
SCRIPT_FILENAME
"/home/minuqnuy/public_html/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://minurl.in/WEBHOSTING"
SCRIPT_URL
"/WEBHOSTING"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1710828263.249
REQUEST_TIME
1710828263
APP_NAME
"Digital Scholar"
APP_ENV
"production"
APP_KEY
"base64:29QVN+JZAHEsjdD3rZuTWkJdj+jnQ34WD6jDrQGqlUY="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost/ss/tool/whatsapp/public_html"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"minuqnuy_whatsapp"
DB_USERNAME
"minuqnuy_ds"
DB_PASSWORD
"ds@whatsapp"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"sendmail"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"Echo@smtp"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
FACEBOOK_ID
""
FACEBOOK_SECRET
""
FACEBOOK_URL
"http://localhost/ss/tool/whatsapp/public_html/auth/facebook/callback"
GOOGLE_ID
"492557369976-8tu2j8pid0521hooq80lvul0uur6inkj.apps.googleusercontent.com"
GOOGLE_SECRET
"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"
GOOGLE_URL
"https://minurl.in/auth/google/callback"
Key Value
APP_NAME
"Digital Scholar"
APP_ENV
"production"
APP_KEY
"base64:29QVN+JZAHEsjdD3rZuTWkJdj+jnQ34WD6jDrQGqlUY="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost/ss/tool/whatsapp/public_html"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"minuqnuy_whatsapp"
DB_USERNAME
"minuqnuy_ds"
DB_PASSWORD
"ds@whatsapp"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"sendmail"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"Echo@smtp"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
FACEBOOK_ID
""
FACEBOOK_SECRET
""
FACEBOOK_URL
"http://localhost/ss/tool/whatsapp/public_html/auth/facebook/callback"
GOOGLE_ID
"492557369976-8tu2j8pid0521hooq80lvul0uur6inkj.apps.googleusercontent.com"
GOOGLE_SECRET
"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"
GOOGLE_URL
"https://minurl.in/auth/google/callback"
0. Whoops\Handler\PrettyPageHandler