ErrorException (E_WARNING)
file_put_contents(/chroot/home/paygyftc/paygyft.com/html/storage/framework/sessions/ls6uhBR2Vp21yKUCiEPPxtNzHHEjqYjK38ohykCb): failed to open stream: No such file or directory ErrorException thrown with message "file_put_contents(/chroot/home/paygyftc/paygyft.com/html/storage/framework/sessions/ls6uhBR2Vp21yKUCiEPPxtNzHHEjqYjK38ohykCb): failed to open stream: No such file or directory" Stacktrace: #11 ErrorException in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #10 file_put_contents in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #9 Illuminate\Filesystem\Filesystem:put in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #8 Illuminate\Session\FileSessionHandler:write in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Session/Store.php:129 #7 Illuminate\Session\Store:save in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:170 #6 Illuminate\Session\Middleware\StartSession:saveSession in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:65 #5 Illuminate\Session\Middleware\StartSession:handle in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 #4 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 #3 Illuminate\Routing\Pipeline:Illuminate\Routing\{closure} in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 #2 Illuminate\Pipeline\Pipeline:then in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /chroot/home/paygyftc/paygyft.com/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 #0 Illuminate\Foundation\Http\Kernel:handle in /chroot/home/paygyftc/paygyft.com/html/index.php:55
11
ErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
122
10
file_put_contents
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
122
9
Illuminate
\
Filesystem
\
Filesystem
put
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
FileSessionHandler.php
83
8
Illuminate
\
Session
\
FileSessionHandler
write
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
129
7
Illuminate
\
Session
\
Store
save
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
170
6
Illuminate
\
Session
\
Middleware
\
StartSession
saveSession
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
65
5
Illuminate
\
Session
\
Middleware
\
StartSession
handle
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Pipeline
/
Pipeline.php
163
4
Illuminate
\
Pipeline
\
Pipeline
Illuminate
\
Pipeline
\
{closure}
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Pipeline.php
53
3
Illuminate
\
Routing
\
Pipeline
Illuminate
\
Routing
\
{closure}
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Pipeline
/
Pipeline.php
104
2
Illuminate
\
Pipeline
\
Pipeline
then
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
151
1
Illuminate
\
Foundation
\
Http
\
Kernel
sendRequestThroughRouter
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
116
0
Illuminate
\
Foundation
\
Http
\
Kernel
handle
/
index.php
55
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int|bool
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Write the contents of a file, replacing it atomically if it already exists.
     *
     * @param  string  $path
     * @param  string  $content
     * @return void
     */
    public function replace($path, $content)
    {
        // If the path already exists and is a symlink, get the real path...
        clearstatcache(true, $path);
 
        $path = realpath($path) ?: $path;
 
        $tempPath = tempnam(dirname($path), basename($path));
 
        // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
        chmod($tempPath, 0777 - umask());
Arguments
  1. "file_put_contents(/chroot/home/paygyftc/paygyft.com/html/storage/framework/sessions/ls6uhBR2Vp21yKUCiEPPxtNzHHEjqYjK38ohykCb): failed to open stream: No such file or directory"
    
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int|bool
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Write the contents of a file, replacing it atomically if it already exists.
     *
     * @param  string  $path
     * @param  string  $content
     * @return void
     */
    public function replace($path, $content)
    {
        // If the path already exists and is a symlink, get the real path...
        clearstatcache(true, $path);
 
        $path = realpath($path) ?: $path;
 
        $tempPath = tempnam(dirname($path), basename($path));
 
        // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
        chmod($tempPath, 0777 - umask());
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->isFile($path = $this->path.'/'.$sessionId)) {
            if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->sharedGet($path);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
    protected function addCookieToResponse(Response $response, Session $session)
    {
        if ($this->sessionIsPersistent($config = $this->manager->getSessionConfig())) {
            $response->headers->setCookie(new Cookie(
                $session->getName(), $session->getId(), $this->getCookieExpirationDate(),
                $config['path'], $config['domain'], $config['secure'] ?? false,
                $config['http_only'] ?? true, false, $config['same_site'] ?? null
            ));
        }
    }
 
    /**
     * Save the session data to storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return void
     */
    protected function saveSession($request)
    {
        $this->manager->driver()->save();
    }
 
    /**
     * Get the session lifetime in seconds.
     *
     * @return int
     */
    protected function getSessionLifetimeInSeconds()
    {
        return ($this->manager->getSessionConfig()['lifetime'] ?? null) * 60;
    }
 
    /**
     * Get the cookie lifetime in seconds.
     *
     * @return \DateTimeInterface|int
     */
    protected function getCookieExpirationDate()
    {
        $config = $this->manager->getSessionConfig();
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
 
        // If a session driver has been configured, we will need to start the session here
        // so that the data is ready for an application. Note that the Laravel sessions
        // do not make use of PHP "native" sessions in any way since they are crappy.
        $request->setLaravelSession(
            $session = $this->startSession($request)
        );
 
        $this->collectGarbage($session);
 
        $response = $next($request);
 
        $this->storeCurrentUrl($request, $session);
 
        $this->addCookieToResponse($response, $session);
 
        // Again, if the session has been configured we will need to close out the session
        // so that the attributes may be persisted to some storage medium. We will also
        // add the session identifier cookie to the application response headers now.
        $this->saveSession($request);
 
        return $response;
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Pipeline
/
Pipeline.php
                    // the appropriate method and arguments, returning the results back out.
                    return $pipe($passable, $stack);
                } elseif (! is_object($pipe)) {
                    [$name, $parameters] = $this->parsePipeString($pipe);
 
                    // If the pipe is a string we will parse the string and resolve the class out
                    // of the dependency injection container. We can then build a callable and
                    // execute the pipe function giving in the parameters that are required.
                    $pipe = $this->getContainer()->make($name);
 
                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    // If the pipe is already an object we'll just make a callable and pass it to
                    // the pipe as-is. There is no need to do any extra parsing and formatting
                    // since the object we're given was already a fully instantiated object.
                    $parameters = [$passable, $stack];
                }
 
                $response = method_exists($pipe, $this->method)
                                ? $pipe->{$this->method}(...$parameters)
                                : $pipe(...$parameters);
 
                return $response instanceof Responsable
                            ? $response->toResponse($this->getContainer()->make(Request::class))
                            : $response;
            };
        };
    }
 
    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
 
        if (is_string($parameters)) {
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Pipeline.php
                return $this->handleException($passable, new FatalThrowableError($e));
            }
        };
    }
 
    /**
     * Get a Closure that represents a slice of the application onion.
     *
     * @return \Closure
     */
    protected function carry()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                try {
                    $slice = parent::carry();
 
                    $callable = $slice($stack, $pipe);
 
                    return $callable($passable);
                } catch (Exception $e) {
                    return $this->handleException($passable, $e);
                } catch (Throwable $e) {
                    return $this->handleException($passable, new FatalThrowableError($e));
                }
            };
        };
    }
 
    /**
     * Handle the given exception.
     *
     * @param  mixed  $passable
     * @param  \Exception  $e
     * @return mixed
     *
     * @throws \Exception
     */
    protected function handleException($passable, Exception $e)
    {
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Pipeline
/
Pipeline.php
    public function via($method)
    {
        $this->method = $method;
 
        return $this;
    }
 
    /**
     * Run the pipeline with a final destination callback.
     *
     * @param  \Closure  $destination
     * @return mixed
     */
    public function then(Closure $destination)
    {
        $pipeline = array_reduce(
            array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
        );
 
        return $pipeline($this->passable);
    }
 
    /**
     * Run the pipeline and return the result.
     *
     * @return mixed
     */
    public function thenReturn()
    {
        return $this->then(function ($passable) {
            return $passable;
        });
    }
 
    /**
     * Get the final piece of the Closure onion.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
    }
 
    /**
     * 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());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
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.
     *
/
chroot
/
home
/
paygyftc
/
paygyft.com
/
html
/
index.php
*/
 
$app = require_once __DIR__.'/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/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
USER
"paygyftc"
HOME
"/home/paygyftc"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/mart//mother-baby-products"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/2.0"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/mart/mother-baby-products"
REMOTE_PORT
"37744"
SCRIPT_FILENAME
"/home/paygyftc/paygyft.com/html/index.php"
SERVER_ADMIN
"webmaster@paygyft.com"
CONTEXT_DOCUMENT_ROOT
"/home/paygyftc/paygyft.com/html"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/home/paygyftc/paygyft.com/html"
REMOTE_ADDR
"3.230.76.153"
SERVER_PORT
"443"
SERVER_ADDR
"72.52.134.86"
SERVER_NAME
"paygyft.com"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
HTTP_HOST
"paygyft.com"
HTTP_USER_AGENT
"claudebot"
HTTP_ACCEPT
"*/*"
H2_STREAM_TAG
"10908-1229-3"
H2_STREAM_ID
"3"
H2_PUSHED_ON
""
H2_PUSHED
""
H2_PUSH
"off"
H2PUSH
"off"
HTTP2
"on"
SSL_CLIENT_CERT
""
SSL_SERVER_CERT
"""
-----BEGIN CERTIFICATE-----\n
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\n
-----END CERTIFICATE-----\n
"""
SSL_TLS_SNI
"paygyft.com"
HTTPS
"on"
SCRIPT_URI
"https://paygyft.com/mart/mother-baby-products"
SCRIPT_URL
"/mart/mother-baby-products"
UNIQUE_ID
"ZgU3R7pv_F5Ko1s3spH7oAAAxQ8"
REDIRECT_STATUS
"200"
REDIRECT_H2_STREAM_TAG
"10908-1229-3"
REDIRECT_H2_STREAM_ID
"3"
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSH
"off"
REDIRECT_H2PUSH
"off"
REDIRECT_HTTP2
"on"
REDIRECT_SSL_CLIENT_CERT
""
REDIRECT_SSL_SERVER_CERT
"""
-----BEGIN CERTIFICATE-----\n
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\n
-----END CERTIFICATE-----\n
"""
REDIRECT_SSL_TLS_SNI
"paygyft.com"
REDIRECT_HTTPS
"on"
REDIRECT_SCRIPT_URI
"https://paygyft.com/mart/mother-baby-products"
REDIRECT_SCRIPT_URL
"/mart/mother-baby-products"
REDIRECT_UNIQUE_ID
"ZgU3R7pv_F5Ko1s3spH7oAAAxQ8"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711617863.4815
REQUEST_TIME
1711617863
empty
0. Whoops\Handler\PrettyPageHandler