Grav \ Framework \ Session \ Exceptions \ SessionException (500)
Failed to start session: session_start(): Failed to read session data: files (path: /var/cpanel/php/sessions/ea-php73) Grav\Framework\Session\Exceptions\SessionException thrown with message "Failed to start session: session_start(): Failed to read session data: files (path: /var/cpanel/php/sessions/ea-php73)" Stacktrace: #7 Grav\Framework\Session\Exceptions\SessionException in /home/kertajaya/public_html/system/src/Grav/Framework/Session/Session.php:247 #6 Grav\Framework\Session\Session:start in /home/kertajaya/public_html/system/src/Grav/Common/Session.php:48 #5 Grav\Common\Session:init in /home/kertajaya/public_html/system/src/Grav/Common/Processors/InitializeProcessor.php:451 #4 Grav\Common\Processors\InitializeProcessor:initializeSession in /home/kertajaya/public_html/system/src/Grav/Common/Processors/InitializeProcessor.php:112 #3 Grav\Common\Processors\InitializeProcessor:process in /home/kertajaya/public_html/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php:50 #2 Grav\Framework\RequestHandler\RequestHandler:handle in /home/kertajaya/public_html/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php:62 #1 Grav\Framework\RequestHandler\RequestHandler:handle in /home/kertajaya/public_html/system/src/Grav/Common/Grav.php:303 #0 Grav\Common\Grav:process in /home/kertajaya/public_html/index.php:58
Stack frames (8)
7
Grav\Framework\Session\Exceptions\SessionException
/system/src/Grav/Framework/Session/Session.php247
6
Grav\Framework\Session\Session start
/system/src/Grav/Common/Session.php48
5
Grav\Common\Session init
/system/src/Grav/Common/Processors/InitializeProcessor.php451
4
Grav\Common\Processors\InitializeProcessor initializeSession
/system/src/Grav/Common/Processors/InitializeProcessor.php112
3
Grav\Common\Processors\InitializeProcessor process
/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php50
2
Grav\Framework\RequestHandler\RequestHandler handle
/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php62
1
Grav\Framework\RequestHandler\RequestHandler handle
/system/src/Grav/Common/Grav.php303
0
Grav\Common\Grav process
/index.php58
/home/kertajaya/public_html/system/src/Grav/Framework/Session/Session.php
                // Start session with new session id.
                $useStrictMode = $options['use_strict_mode'] ?? 0;
                if ($useStrictMode) {
                    ini_set('session.use_strict_mode', '0');
                }
                session_id($newId);
                if ($useStrictMode) {
                    ini_set('session.use_strict_mode', '1');
                }
 
                $success = @session_start($options);
                if (!$success) {
                    $last = error_get_last();
                    $error = $last ? $last['message'] : 'Unknown error';
 
                    throw new RuntimeException($error);
                }
            }
        } catch (Exception $e) {
            throw new SessionException('Failed to start session: ' . $e->getMessage(), 500);
        }
 
        $this->started = true;
        $this->onSessionStart();
 
        $user = $this->__get('user');
        if ($user && (!$user instanceof UserInterface || (method_exists($user, 'isValid') && !$user->isValid()))) {
            $this->invalidate();
 
            throw new SessionException('Invalid User object, session destroyed.', 500);
        }
 
        // Extend the lifetime of the session.
        if ($sessionExists) {
            $this->setCookie();
        }
 
        return $this;
    }
 
Arguments
  1. "Failed to start session: session_start(): Failed to read session data: files (path: /var/cpanel/php/sessions/ea-php73)"
    
/home/kertajaya/public_html/system/src/Grav/Common/Session.php
     * @deprecated 1.5 Use ->getInstance() method instead.
     */
    public static function instance()
    {
        user_error(__CLASS__ . '::' . __FUNCTION__ . '() is deprecated since Grav 1.5, use ->getInstance() method instead', E_USER_DEPRECATED);
 
        return static::getInstance();
    }
 
    /**
     * Initialize session.
     *
     * Code in this function has been moved into SessionServiceProvider class.
     *
     * @return void
     */
    public function init()
    {
        if ($this->autoStart && !$this->isStarted()) {
            $this->start();
 
            $this->autoStart = false;
        }
    }
 
    /**
     * @param bool $auto
     * @return $this
     */
    public function setAutoStart($auto)
    {
        $this->autoStart = (bool)$auto;
 
        return $this;
    }
 
    /**
     * Returns attributes.
     *
     * @return array Attributes
/home/kertajaya/public_html/system/src/Grav/Common/Processors/InitializeProcessor.php
 
        return null;
    }
 
    /**
     * @param Config $config
     */
    protected function initializeSession(Config $config): void
    {
        // FIXME: Initialize session should happen later after plugins have been loaded. This is a workaround to fix session issues in AWS.
        if (isset($this->container['session']) && $config->get('system.session.initialize', true)) {
            $this->startTimer('_init_session', 'Start Session');
 
            /** @var Session $session */
            $session = $this->container['session'];
 
            try {
                $session->init();
            } catch (SessionException $e) {
                $session->init();
                $message = 'Session corruption detected, restarting session...';
                $this->addMessage($message);
                $this->container['messages']->add($message, 'error');
            }
 
            $this->stopTimer('_init_session');
        }
    }
}
 
/home/kertajaya/public_html/system/src/Grav/Common/Processors/InitializeProcessor.php
        $this->initializeOutputBuffering($config);
 
        // Set timezone, locale.
        $this->initializeLocale($config);
 
        // Load plugins.
        $this->initializePlugins();
 
        // Load pages.
        $this->initializePages($config);
 
        // Load accounts (decides class to be used).
        // TODO: remove in 2.0.
        $this->container['accounts'];
 
        // Initialize URI (uses session, see issue #3269).
        $this->initializeUri($config);
 
        // Initialize session.
        $this->initializeSession($config);
 
        // Grav may return redirect response right away.
        $redirectCode = (int)$config->get('system.pages.redirect_trailing_slash', 1);
        if ($redirectCode) {
            $response = $this->handleRedirectRequest($request, $redirectCode > 300 ? $redirectCode : null);
            if ($response) {
                $this->stopTimer('_init');
 
                return $response;
            }
        }
 
        $this->stopTimer('_init');
 
        // Wrap call to next handler so that debugger can profile it.
        /** @var Response $response */
        $response = $debugger->profile(static function () use ($handler, $request) {
            return $handler->handle($request);
        });
 
Arguments
  1. Grav\Common\Config\Config {#88}
    
/home/kertajaya/public_html/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php
    private $handler;
 
    /** @var ContainerInterface|null */
    private $container;
 
    /**
     * {@inheritdoc}
     * @throws InvalidArgumentException
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        $middleware = array_shift($this->middleware);
 
        // Use default callable if there is no middleware.
        if ($middleware === null) {
            return call_user_func($this->handler, $request);
        }
 
        if ($middleware instanceof MiddlewareInterface) {
            return $middleware->process($request, clone $this);
        }
 
        if (null === $this->container || !$this->container->has($middleware)) {
            throw new InvalidArgumentException(
                sprintf('The middleware is not a valid %s and is not passed in the Container', MiddlewareInterface::class),
                $middleware
            );
        }
 
        array_unshift($this->middleware, $this->container->get($middleware));
 
        return $this->handle($request);
    }
}
 
Arguments
  1. Nyholm\Psr7\ServerRequest {#64}
    
  2. Grav\Framework\RequestHandler\RequestHandler {#85}
    
/home/kertajaya/public_html/system/src/Grav/Framework/RequestHandler/Traits/RequestHandlerTrait.php
 
        // Use default callable if there is no middleware.
        if ($middleware === null) {
            return call_user_func($this->handler, $request);
        }
 
        if ($middleware instanceof MiddlewareInterface) {
            return $middleware->process($request, clone $this);
        }
 
        if (null === $this->container || !$this->container->has($middleware)) {
            throw new InvalidArgumentException(
                sprintf('The middleware is not a valid %s and is not passed in the Container', MiddlewareInterface::class),
                $middleware
            );
        }
 
        array_unshift($this->middleware, $this->container->get($middleware));
 
        return $this->handle($request);
    }
}
 
Arguments
  1. Nyholm\Psr7\ServerRequest {#64}
    
/home/kertajaya/public_html/system/src/Grav/Common/Grav.php
                },
                'pagesProcessor' => function () {
                    return new PagesProcessor($this);
                },
                'debuggerAssetsProcessor' => function () {
                    return new DebuggerAssetsProcessor($this);
                },
                'renderProcessor' => function () {
                    return new RenderProcessor($this);
                },
            ]
        );
 
        $default = static function () {
            return new Response(404, ['Expires' => 0, 'Cache-Control' => 'no-store, max-age=0'], 'Not Found');
        };
 
        $collection = new RequestHandler($this->middleware, $default, $container);
 
        $response = $collection->handle($this['request']);
        $body = $response->getBody();
 
        /** @var Messages $messages */
        $messages = $this['messages'];
 
        // Prevent caching if session messages were displayed in the page.
        $noCache = $messages->isCleared();
        if ($noCache) {
            $response = $response->withHeader('Cache-Control', 'no-store, max-age=0');
        }
 
        // Handle ETag and If-None-Match headers.
        if ($response->getHeaderLine('ETag') === '1') {
            $etag = md5($body);
            $response = $response->withHeader('ETag', '"' . $etag . '"');
 
            $search = trim($this['request']->getHeaderLine('If-None-Match'), '"');
            if ($noCache === false && $search === $etag) {
                $response = $response->withStatus(304);
                $body = '';
Arguments
  1. Nyholm\Psr7\ServerRequest {#64}
    
/home/kertajaya/public_html/index.php
if (!is_file($autoload)) {
    die('Please run: <i>bin/grav install</i>');
}
 
// Register the auto-loader.
$loader = require $autoload;
 
use Grav\Common\Grav;
use RocketTheme\Toolbox\Event\Event;
 
// Get the Grav instance
$grav = Grav::instance(
    array(
        'loader' => $loader
    )
);
 
// Process the page
try {
    $grav->process();
} catch (\Error $e) {
    $grav->fireEvent('onFatalException', new Event(array('exception' => $e)));
    throw $e;
} catch (\Exception $e) {
    $grav->fireEvent('onFatalException', new Event(array('exception' => $e)));
    throw $e;
}
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
TZ
"Asia/Jakarta"
REDIRECT_UNIQUE_ID
"ZgVKOqGqk7eD4Sl2p6pC7wAAAAc"
REDIRECT_SCRIPT_URL
"/index.php/blog"
REDIRECT_SCRIPT_URI
"http://mail.kertajaya.com/index.php/blog"
REDIRECT_HANDLER
"application/x-httpd-ea-php73"
REDIRECT_STATUS
"200"
UNIQUE_ID
"ZgVKOqGqk7eD4Sl2p6pC7wAAAAc"
SCRIPT_URL
"/index.php/blog"
SCRIPT_URI
"http://mail.kertajaya.com/index.php/blog"
HTTP_HOST
"mail.kertajaya.com"
HTTP_CONNECTION
"Keep-Alive"
HTTP_ACCEPT_ENCODING
"gzip"
HTTP_X_FORWARDED_FOR
"34.228.168.200"
HTTP_CF_RAY
"86b7078aafdc59d9-SIN"
HTTP_X_FORWARDED_PROTO
"http"
HTTP_CF_VISITOR
"{"scheme":"http"}"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"claudebot"
HTTP_CF_CONNECTING_IP
"34.228.168.200"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
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"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"mail.kertajaya.com"
SERVER_ADDR
"165.22.242.113"
SERVER_PORT
"80"
REMOTE_ADDR
"172.70.93.3"
DOCUMENT_ROOT
"/home/kertajaya/public_html"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
"/cgi-sys"
CONTEXT_DOCUMENT_ROOT
"/usr/local/cpanel/cgi-sys/"
SERVER_ADMIN
"[email protected]"
SCRIPT_FILENAME
"/home/kertajaya/public_html/index.php"
REMOTE_PORT
"23698"
REDIRECT_URL
"/index.php/blog"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/index.php/blog"
SCRIPT_NAME
"/index.php"
PATH_INFO
"/blog"
PATH_TRANSLATED
"/home/kertajaya/public_html/blog"
ORIG_PATH_INFO
"/index.php/blog"
ORIG_SCRIPT_NAME
"/cgi-sys/ea-php73"
ORIG_SCRIPT_FILENAME
"/usr/local/cpanel/cgi-sys/ea-php73"
ORIG_PATH_TRANSLATED
"/home/kertajaya/public_html/index.php/blog"
PHP_SELF
"/index.php/blog"
REQUEST_TIME_FLOAT
1711622714.204
REQUEST_TIME
1711622714
argv
[]
argc
0
empty
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\CallbackHandler