Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\storage\framework/sessions/9AzB5mFy9abPRUB52OknigcqqcktaBYIK8bMDHdG): failed to open stream: Permission denied ErrorException thrown with message "file_put_contents(E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\storage\framework/sessions/9AzB5mFy9abPRUB52OknigcqqcktaBYIK8bMDHdG): failed to open stream: Permission denied" Stacktrace: #7 ErrorException in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php:122 #6 file_put_contents in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php:122 #5 Illuminate\Filesystem\Filesystem:put in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Session\FileSessionHandler.php:83 #4 Illuminate\Session\FileSessionHandler:write in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Session\Store.php:128 #3 Illuminate\Session\Store:save in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php:87 #2 Illuminate\Session\Middleware\StartSession:terminate in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:218 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:189 #0 Illuminate\Foundation\Http\Kernel:terminate in E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\index.php:60
7
ErrorException
…\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php
122
6
file_put_contents
…\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php
122
5
Illuminate
\
Filesystem
\
Filesystem
put
…\vendor\laravel\framework\src\Illuminate\Session\FileSessionHandler.php
83
4
Illuminate
\
Session
\
FileSessionHandler
write
…\vendor\laravel\framework\src\Illuminate\Session\Store.php
128
3
Illuminate
\
Session
\
Store
save
…\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php
87
2
Illuminate
\
Session
\
Middleware
\
StartSession
terminate
…\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
218
1
Illuminate
\
Foundation
\
Http
\
Kernel
terminateMiddleware
…\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
189
0
Illuminate
\
Foundation
\
Http
\
Kernel
terminate
…\index.php
60
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\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
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "file_put_contents(E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\storage\framework/sessions/9AzB5mFy9abPRUB52OknigcqqcktaBYIK8bMDHdG): failed to open stream: Permission denied"
    
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\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
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Session\FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->exists($path = $this->path.'/'.$sessionId)) {
            if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->get($path, true);
            }
        }
 
        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()
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\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
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * 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();
        });
    }
 
    /**
     * Get the session implementation from the manager.
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            list($name) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
    }
 
    /**
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\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);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
_FCGI_X_PIPE_
"\\.\pipe\IISFCGI-0b4a4fe5-af6c-4d4d-9e25-ba5d14ace9d5"
ALLUSERSPROFILE
"C:\ProgramData"
APPDATA
"C:\Windows\system32\config\systemprofile\AppData\Roaming"
APP_POOL_CONFIG
"C:\inetpub\temp\apppools\apply.himhaldia.edu.in(domain)(4.0)(pool)\apply.himhaldia.edu.in(domain)(4.0)(pool).config"
APP_POOL_ID
"apply.himhaldia.edu.in(domain)(4.0)(pool)"
ChocolateyInstall
"C:\ProgramData\chocolatey"
ChocolateyLastPathUpdate
"133359711984072096"
CommonProgramFiles
"C:\Program Files\Common Files"
CommonProgramFiles(x86)
"C:\Program Files (x86)\Common Files"
CommonProgramW6432
"C:\Program Files\Common Files"
COMPUTERNAME
"MI3-WTS1"
ComSpec
"C:\Windows\system32\cmd.exe"
DriverData
"C:\Windows\System32\Drivers\DriverData"
LOCALAPPDATA
"C:\Windows\system32\config\systemprofile\AppData\Local"
MAILENABLE_PATH
"C:\PROGRA~2\MAILEN~1"
NUMBER_OF_PROCESSORS
"12"
OS
"Windows_NT"
Path
"C:\Program Files (x86)\Mail Enable\BIN;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Mail Enable\BIN64;C:\Program Files\dotnet\;C:\Program Files (x86)\dotnet\;C:\Program Files\Puppet Labs\Puppet\bin;C:\ProgramData\chocolatey\bin;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft Network Monitor 3\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files (x86)\Plesk\ctl;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Nmap;C:\Windows\system32\config\systemprofile\AppData\Roaming\npm"
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
plesk_bin
"C:\Program Files (x86)\Plesk\admin\bin"
plesk_bin64
"C:\Program Files (x86)\Plesk\admin\bin64"
plesk_cli
"C:\Program Files (x86)\Plesk\bin"
plesk_data
"C:\Program Files (x86)\Plesk\"
plesk_dir
"C:\Program Files (x86)\Plesk\"
plesk_vhosts
"E:\vhosts\"
PROCESSOR_ARCHITECTURE
"AMD64"
PROCESSOR_IDENTIFIER
"Intel64 Family 6 Model 85 Stepping 7, GenuineIntel"
PROCESSOR_LEVEL
"6"
PROCESSOR_REVISION
"5507"
ProgramData
"C:\ProgramData"
ProgramFiles
"C:\Program Files"
ProgramFiles(x86)
"C:\Program Files (x86)"
ProgramW6432
"C:\Program Files"
PSModulePath
"C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules"
PUBLIC
"C:\Users\Public"
SystemDrive
"C:"
SystemRoot
"C:\Windows"
TEMP
"C:\Windows\TEMP"
TMP
"C:\Windows\TEMP"
USERDOMAIN
"WORKGROUP"
USERNAME
"MI3-WTS1$"
USERPROFILE
"C:\Windows\system32\config\systemprofile"
windir
"C:\Windows"
ORIG_PATH_INFO
"/Index.php"
URL
"/Index.php"
SERVER_SOFTWARE
"Microsoft-IIS/10.0"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_PORT_SECURE
"1"
SERVER_PORT
"443"
SERVER_NAME
"apply.himhaldia.edu.in"
SCRIPT_NAME
"/Index.php"
SCRIPT_FILENAME
"E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\Index.php"
REQUEST_URI
"/"
REQUEST_METHOD
"GET"
REMOTE_USER
""
REMOTE_PORT
"43128"
REMOTE_HOST
"44.221.83.121"
REMOTE_ADDR
"44.221.83.121"
QUERY_STRING
""
PATH_TRANSLATED
"E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\Index.php"
LOGON_USER
""
LOCAL_ADDR
"50.31.147.249"
INSTANCE_META_PATH
"/LM/W3SVC/124"
INSTANCE_NAME
"APPLY.HIMHALDIA.EDU.IN"
INSTANCE_ID
"124"
HTTPS_SERVER_SUBJECT
"CN=apply.himhaldia.edu.in"
HTTPS_SERVER_ISSUER
"C=US, O=Let's Encrypt, CN=R3"
HTTPS_SECRETKEYSIZE
"2048"
HTTPS_KEYSIZE
"256"
HTTPS
"on"
GATEWAY_INTERFACE
"CGI/1.1"
DOCUMENT_ROOT
"E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in"
CONTENT_TYPE
""
CONTENT_LENGTH
"0"
CERT_SUBJECT
""
CERT_SERIALNUMBER
""
CERT_ISSUER
""
CERT_FLAGS
""
CERT_COOKIE
""
AUTH_USER
""
AUTH_PASSWORD
""
AUTH_TYPE
""
APPL_PHYSICAL_PATH
"E:\vhosts\amehaldia.co.in\apply.himhaldia.edu.in\"
APPL_MD_PATH
"/LM/W3SVC/124/ROOT"
IIS_UrlRewriteModule
"7,1,1993,2336"
WEBSOCKET_VERSION
"13"
HTTP_USER_AGENT
"claudebot"
HTTP_HOST
"apply.himhaldia.edu.in"
HTTP_ACCEPT
"*/*"
HTTP_CONTENT_LENGTH
"0"
HTTP_CONNECTION
"close"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/Index.php"
REQUEST_TIME_FLOAT
1711700945.2126
REQUEST_TIME
1711700945
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:kCaqC1tLLT908VDCIxB8qDMvEGTZ9tRDl32qdU8vuH4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://apply.himhaldia.edu.in/"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"amehaldi_apply_him_db"
DB_USERNAME
"ameha_applyhim"
DB_PASSWORD
"Devant@1610"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.googlemail.com"
MAIL_PORT
"465"
MAIL_USERNAME
"payment.hihs@gmail.com"
MAIL_PASSWORD
"chankbnwzxwdvrtx"
MAIL_ENCRYPTION
"ssl"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
IM_API_KEY
"0db5c52f022146e518942e6ce4db86ec"
IM_AUTH_TOKEN
"786cb8bb17be15de0dee1bf4b1f8aa55"
IM_URL
"https://www.instamojo.com/api/1.1/"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:kCaqC1tLLT908VDCIxB8qDMvEGTZ9tRDl32qdU8vuH4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://apply.himhaldia.edu.in/"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"amehaldi_apply_him_db"
DB_USERNAME
"ameha_applyhim"
DB_PASSWORD
"Devant@1610"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.googlemail.com"
MAIL_PORT
"465"
MAIL_USERNAME
"payment.hihs@gmail.com"
MAIL_PASSWORD
"chankbnwzxwdvrtx"
MAIL_ENCRYPTION
"ssl"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
IM_API_KEY
"0db5c52f022146e518942e6ce4db86ec"
IM_AUTH_TOKEN
"786cb8bb17be15de0dee1bf4b1f8aa55"
IM_URL
"https://www.instamojo.com/api/1.1/"
0. Whoops\Handler\PrettyPageHandler