wa.sebar.info Open in urlscan Pro
2606:4700:3034::ac43:9f19  Public Scan

Submitted URL: http://wa.sebar.info/
Effective URL: http://wa.sebar.info/public/home
Submission: On October 12 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


UNEXPECTEDVALUEEXCEPTION


HTTP 500 INTERNAL SERVER ERROR


THE STREAM OR FILE "/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD
NOT BE OPENED IN APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG: THE STREAM OR FILE
"/HOME/WASEBAR/PUBLIC_HTML/STORAGE/LOGS/LARAVEL.LOG" COULD NOT BE OPENED IN
APPEND MODE: FAILED TO OPEN STREAM: PERMISSION DENIED
THE EXCEPTION OCCURRED WHILE ATTEMPTING TO LOG:
FILE_PUT_CONTENTS(/HOME/WASEBAR/PUBLIC_HTML/STORAGE/FRAMEWORK/SESSIONS/ZAKRHYVARVDCNSOAREEZKEZL6CDQAQU9IGJMF5EU):
FAILED TO OPEN STREAM: PERMISSION DENIED
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}
CONTEXT: {"EXCEPTION":{}}


 * Exception
 * Stack Trace


EXCEPTION


UNEXPECTEDVALUEEXCEPTION

in
/home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
(line 146)
 141.             }
 142.             restore_error_handler();
 143.             if (!is_resource($stream)) {
 144.                 $this->stream = null;
 145. 
 146.                 throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage, $url) . Utils::getRecordMessageForException($record));
 147.             }
 148.             stream_set_chunk_size($stream, $this->streamChunkSize);
 149.             $this->stream = $stream;
 150.         }
 151. 

in
/home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
-> write (line 48)
 43.             $record = $this->processRecord($record);
 44.         }
 45. 
 46.         $record['formatted'] = $this->getFormatter()->format($record);
 47. 
 48.         $this->write($record);
 49. 
 50.         return false === $this->bubble;
 51.     }
 52. 
 53.     /**

in /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php ->
handle (line 399)
 394.                     }
 395.                 }
 396. 
 397.                 // once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
 398.                 try {
 399.                     if (true === $handler->handle($record)) {
 400.                         break;
 401.                     }
 402.                 } catch (Throwable $e) {
 403.                     $this->handleException($e, $record);
 404. 

in /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php ->
addRecord (line 650)
 645.      * @param string|Stringable $message The log message
 646.      * @param mixed[]           $context The log context
 647.      */
 648.     public function error($message, array $context = []): void
 649.     {
 650.         $this->addRecord(static::ERROR, (string) $message, $context);
 651.     }
 652. 
 653.     /**
 654.      * Adds a log record at the CRITICAL level.
 655.      *

in
/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php
-> error (line 183)
 178.      */
 179.     protected function writeLog($level, $message, $context)
 180.     {
 181.         $this->logger->{$level}(
 182.             $message = $this->formatMessage($message),
 183.             $context = array_merge($this->context, $context)
 184.         );
 185. 
 186.         $this->fireLogEvent($level, $message, $context);
 187.     }
 188. 

in
/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php
-> writeLog (line 94)
 89.      * @param  array  $context
 90.      * @return void
 91.      */
 92.     public function error($message, array $context = [])
 93.     {
 94.         $this->writeLog(__FUNCTION__, $message, $context);
 95.     }
 96. 
 97.     /**
 98.      * Log a warning message to the logs.
 99.      *

in
/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
-> error (line 590)
 585.      * @param  array  $context
 586.      * @return void
 587.      */
 588.     public function error($message, array $context = [])
 589.     {
 590.         $this->driver()->error($message, $context);
 591.     }
 592. 
 593.     /**
 594.      * Exceptional occurrences that are not errors.
 595.      *

in
/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php
-> error (line 252)
 247.         $logger->error(
 248.             $e->getMessage(),
 249.             array_merge(
 250.                 $this->exceptionContext($e),
 251.                 $this->context(),
 252.                 ['exception' => $e]
 253.             )
 254.         );
 255.     }
 256. 
 257.     /**

in
/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
-> report (line 165)
 160.     public function handleException(Throwable $e)
 161.     {
 162.         self::$reservedMemory = null;
 163. 
 164.         try {
 165.             $this->getExceptionHandler()->report($e);
 166.         } catch (Exception $e) {
 167.             //
 168.         }
 169. 
 170.         if ($this->app->runningInConsole()) {

HandleExceptions->handleException(object(UnexpectedValueException))


STACK TRACE

UnexpectedValueException

UnexpectedValueException:
The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission denied
The exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission denied
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}

  at /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:146
  at Monolog\Handler\StreamHandler->write(array('message' => 'The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', 'context' => array('exception' => object(UnexpectedValueException)), 'level' => 400, 'level_name' => 'ERROR', 'channel' => 'production', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2023-10-13 03:09:26] production.ERROR: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}} {"exception":"[object] (UnexpectedValueException(code: 0): The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}} at /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:146)[stacktrace]#0 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(48): Monolog\\\\Handler\\\\StreamHandler->write(Array)#1 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(399): Monolog\\\\Handler\\\\AbstractProcessingHandler->handle(Array)#2 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(650): Monolog\\\\Logger->addRecord(400, \'The stream or f...\', Array)#3 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(183): Monolog\\\\Logger->error(\'The stream or f...\', Array)#4 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(94): Illuminate\\\\Log\\\\Logger->writeLog(\'error\', \'The stream or f...\', Array)#5 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(590): Illuminate\\\\Log\\\\Logger->error(\'The stream or f...\', Array)#6 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(252): Illuminate\\\\Log\\\\LogManager->error(\'The stream or f...\', Array)#7 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(415): Illuminate\\\\Foundation\\\\Exceptions\\\\Handler->report(Object(UnexpectedValueException))#8 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(113): Illuminate\\\\Foundation\\\\Http\\\\Kernel->reportException(Object(UnexpectedValueException))#9 /home/wasebar/public_html/public/index.php(51): Illuminate\\\\Foundation\\\\Http\\\\Kernel->handle(Object(Illuminate\\\\Http\\\\Request))#10 {main}"} '))
     (/home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:48)
  at Monolog\Handler\AbstractProcessingHandler->handle(array('message' => 'The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', 'context' => array('exception' => object(UnexpectedValueException)), 'level' => 400, 'level_name' => 'ERROR', 'channel' => 'production', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2023-10-13 03:09:26] production.ERROR: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}} {"exception":"[object] (UnexpectedValueException(code: 0): The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file \\"/home/wasebar/public_html/storage/logs/laravel.log\\" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}}Context: {\\"exception\\":{}} at /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:146)[stacktrace]#0 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(48): Monolog\\\\Handler\\\\StreamHandler->write(Array)#1 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(399): Monolog\\\\Handler\\\\AbstractProcessingHandler->handle(Array)#2 /home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(650): Monolog\\\\Logger->addRecord(400, \'The stream or f...\', Array)#3 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(183): Monolog\\\\Logger->error(\'The stream or f...\', Array)#4 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(94): Illuminate\\\\Log\\\\Logger->writeLog(\'error\', \'The stream or f...\', Array)#5 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(590): Illuminate\\\\Log\\\\Logger->error(\'The stream or f...\', Array)#6 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(252): Illuminate\\\\Log\\\\LogManager->error(\'The stream or f...\', Array)#7 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(415): Illuminate\\\\Foundation\\\\Exceptions\\\\Handler->report(Object(UnexpectedValueException))#8 /home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(113): Illuminate\\\\Foundation\\\\Http\\\\Kernel->reportException(Object(UnexpectedValueException))#9 /home/wasebar/public_html/public/index.php(51): Illuminate\\\\Foundation\\\\Http\\\\Kernel->handle(Object(Illuminate\\\\Http\\\\Request))#10 {main}"} '))
     (/home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:399)
  at Monolog\Logger->addRecord(400, 'The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', array('exception' => object(UnexpectedValueException)))
     (/home/wasebar/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:650)
  at Monolog\Logger->error('The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', array('exception' => object(UnexpectedValueException)))
     (/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:183)
  at Illuminate\Log\Logger->writeLog('error', 'The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', array('exception' => object(UnexpectedValueException)))
     (/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:94)
  at Illuminate\Log\Logger->error('The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', array('exception' => object(UnexpectedValueException)))
     (/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:590)
  at Illuminate\Log\LogManager->error('The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: The stream or file "/home/wasebar/public_html/storage/logs/laravel.log" could not be opened in append mode: Failed to open stream: Permission deniedThe exception occurred while attempting to log: file_put_contents(/home/wasebar/public_html/storage/framework/sessions/ZAkrHyvarvdcNSOArEEZkEzL6CdQaqU9igjmF5eu): Failed to open stream: Permission deniedContext: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}Context: {"exception":{}}', array('exception' => object(UnexpectedValueException)))
     (/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:252)
  at Illuminate\Foundation\Exceptions\Handler->report(object(UnexpectedValueException))
     (/home/wasebar/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:165)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(UnexpectedValueException))