Symfony Exception

ErrorException

HTTP 500 Internal Server Error

fwrite(): Write of 3756 bytes failed with errno=28 No space left on device

Exception

ErrorException

Show exception properties
ErrorException {#2960
  #severity: E_NOTICE
}
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $record): void
  5.     {
  6.         fwrite($stream, (string) $record->formatted);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.      * @return callable
  2.      */
  3.     protected function forwardsTo($method)
  4.     {
  5.         return fn (...$arguments) => static::$app
  6.             $this->{$method}(...$arguments)
  7.             : false;
  8.     }
  9.     /**
  10.      * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(8, 'fwrite(): Write of 3756 bytes failed with errno=28 No space left on device', '/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 162)
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $record): void
  5.     {
  6.         fwrite($stream, (string) $record->formatted);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.         if ($this->useLocking) {
  2.             // ignoring errors here, there's not much we can do about them
  3.             flock($streamLOCK_EX);
  4.         }
  5.         $this->streamWrite($stream$record);
  6.         if ($this->useLocking) {
  7.             flock($streamLOCK_UN);
  8.         }
  9.     }
  1.             $record $this->processRecord($record);
  2.         }
  3.         $record->formatted $this->getFormatter()->format($record);
  4.         $this->write($record);
  5.         return false === $this->bubble;
  6.     }
  7.     /**
  1.                 }
  2.                 // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3.                 try {
  4.                     $handled true;
  5.                     if (true === $handler->handle(clone $record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function error(string|\Stringable $message, array $context = []): void
  5.     {
  6.         $this->addRecord(Level::Error, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the CRITICAL level.
  10.      *
  1.      */
  2.     protected function writeLog($level$message$context): void
  3.     {
  4.         $this->logger->{$level}(
  5.             $message $this->formatMessage($message),
  6.             $context array_merge($this->context$context)
  7.         );
  8.         $this->fireLogEvent($level$message$context);
  9.     }
  1.      * @param  array  $context
  2.      * @return void
  3.      */
  4.     public function error($message, array $context = []): void
  5.     {
  6.         $this->writeLog(__FUNCTION__$message$context);
  7.     }
  8.     /**
  9.      * Log a warning message to the logs.
  10.      *
  1.      * @param  array  $context
  2.      * @return void
  3.      */
  4.     public function error($message, array $context = []): void
  5.     {
  6.         $this->driver()->error($message$context);
  7.     }
  8.     /**
  9.      * Exceptional occurrences that are not errors.
  10.      *
  1.         );
  2.         $context $this->buildExceptionContext($e);
  3.         method_exists($logger$level)
  4.             ? $logger->{$level}($e->getMessage(), $context)
  5.             : $logger->log($level$e->getMessage(), $context);
  6.     }
  7.     /**
  8.      * Determine if the exception should be reported.
  1.         if ($this->shouldntReport($e)) {
  2.             return;
  3.         }
  4.         $this->reportThrowable($e);
  5.     }
  6.     /**
  7.      * Reports error based on report method on exception or to logger.
  8.      *
Handler->report(object(ErrorException)) in /home/livebolaterkini/public_html/app/Exceptions/Handler.php (line 39)
  1.      * @param  \Exception  $exception
  2.      * @return void
  3.      */
  4.     public function report(Throwable $exception)
  5.     {
  6.         parent::report($exception);
  7.     }
  8.     /**
  9.      * Render an exception into an HTTP response.
  10.      *
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function reportException(Throwable $e)
  5.     {
  6.         $this->app[ExceptionHandler::class]->report($e);
  7.     }
  8.     /**
  9.      * Render the exception to a response.
  10.      *
  1.         try {
  2.             $request->enableHttpMethodParameterOverride();
  3.             $response $this->sendRequestThroughRouter($request);
  4.         } catch (Throwable $e) {
  5.             $this->reportException($e);
  6.             $response $this->renderException($request$e);
  7.         }
  8.         $this->app['events']->dispatch(
Kernel->handle(object(Request)) in /home/livebolaterkini/public_html/public/index.php (line 52)
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ErrorException
ErrorException:
fwrite(): Write of 3756 bytes failed with errno=28 No space left on device

  at /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:162
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'fwrite(): Write of 3756 bytes failed with errno=28 No space left on device', '/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 162)
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:255)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(8, 'fwrite(): Write of 3756 bytes failed with errno=28 No space left on device', '/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 162)
  at fwrite(resource, '[2026-03-04 03:11:38] production.ERROR: fwrite(): Write of 4243 bytes failed with errno=28 No space left on device {"exception":"[object] (ErrorException(code: 0): fwrite(): Write of 4243 bytes failed with errno=28 No space left on device at /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:162)[stacktrace]#0 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(255): Illuminate\\\\Foundation\\\\Bootstrap\\\\HandleExceptions->handleError(8, \'fwrite(): Write...\', \'/home/livebolat...\', 162)#1 [internal function]: Illuminate\\\\Foundation\\\\Bootstrap\\\\HandleExceptions->Illuminate\\\\Foundation\\\\Bootstrap\\\\{closure}(8, \'fwrite(): Write...\', \'/home/livebolat...\', 162)#2 /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php(162): fwrite(Resource id #868, \'[2026-03-04 03:...\')#3 /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php(149): Monolog\\\\Handler\\\\StreamHandler->streamWrite(Resource id #868, Object(Monolog\\\\LogRecord))#4 /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\\\\Handler\\\\StreamHandler->write(Object(Monolog\\\\LogRecord))#5 /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(389): Monolog\\\\Handler\\\\AbstractProcessingHandler->handle(Object(Monolog\\\\LogRecord))#6 /home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Logger.php(644): Monolog\\\\Logger->addRecord(Object(Monolog\\\\Level), \'fwrite(): Write...\', Array)#7 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(186): Monolog\\\\Logger->error(\'fwrite(): Write...\', Array)#8 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php(97): Illuminate\\\\Log\\\\Logger->writeLog(\'error\', \'fwrite(): Write...\', Array)#9 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(681): Illuminate\\\\Log\\\\Logger->error(\'fwrite(): Write...\', Array)#10 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(317): Illuminate\\\\Log\\\\LogManager->error(\'fwrite(): Write...\', Array)#11 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(278): Illuminate\\\\Foundation\\\\Exceptions\\\\Handler->reportThrowable(Object(ErrorException))#12 /home/livebolaterkini/public_html/app/Exceptions/Handler.php(39): Illuminate\\\\Foundation\\\\Exceptions\\\\Handler->report(Object(ErrorException))#13 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): App\\\\Exceptions\\\\Handler->report(Object(ErrorException))#14 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(188): Illuminate\\\\Routing\\\\Pipeline->handleException(Object(Illuminate\\\\Http\\\\Request), Object(ErrorException))#15 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))#16 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\\\Pipeline\\\\Pipeline->then(Object(Closure))#17 /home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\\\Foundation\\\\Http\\\\Kernel->sendRequestThroughRouter(Object(Illuminate\\\\Http\\\\Request))#18 /home/livebolaterkini/public_html/public/index.php(52): Illuminate\\\\Foundation\\\\Http\\\\Kernel->handle(Object(Illuminate\\\\Http\\\\Request))#19 {main}"} ')
     (/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:162)
  at Monolog\Handler\StreamHandler->streamWrite(resource, object(LogRecord))
     (/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:149)
  at Monolog\Handler\StreamHandler->write(object(LogRecord))
     (/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:44)
  at Monolog\Handler\AbstractProcessingHandler->handle(object(LogRecord))
     (/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:389)
  at Monolog\Logger->addRecord(object(Level), 'fwrite(): Write of 4243 bytes failed with errno=28 No space left on device', array('exception' => object(ErrorException)))
     (/home/livebolaterkini/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:644)
  at Monolog\Logger->error('fwrite(): Write of 4243 bytes failed with errno=28 No space left on device', array('exception' => object(ErrorException)))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:186)
  at Illuminate\Log\Logger->writeLog('error', 'fwrite(): Write of 4243 bytes failed with errno=28 No space left on device', array('exception' => object(ErrorException)))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:97)
  at Illuminate\Log\Logger->error('fwrite(): Write of 4243 bytes failed with errno=28 No space left on device', array('exception' => object(ErrorException)))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:681)
  at Illuminate\Log\LogManager->error('fwrite(): Write of 4243 bytes failed with errno=28 No space left on device', array('exception' => object(ErrorException)))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:317)
  at Illuminate\Foundation\Exceptions\Handler->reportThrowable(object(ErrorException))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:278)
  at Illuminate\Foundation\Exceptions\Handler->report(object(ErrorException))
     (/home/livebolaterkini/public_html/app/Exceptions/Handler.php:39)
  at App\Exceptions\Handler->report(object(ErrorException))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:497)
  at Illuminate\Foundation\Http\Kernel->reportException(object(ErrorException))
     (/home/livebolaterkini/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:146)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/livebolaterkini/public_html/public/index.php:52)