Whoops! There was an error.
ErrorException (E_NOTICE)
fwrite(): Write of 2802 bytes failed with errno=28 No space left on device ErrorException thrown with message "fwrite(): Write of 2802 bytes failed with errno=28 No space left on device" Stacktrace: #12 ErrorException in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:134 #11 fwrite in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:134 #10 Monolog\Handler\StreamHandler:streamWrite in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:120 #9 Monolog\Handler\StreamHandler:write in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:121 #8 Monolog\Handler\RotatingFileHandler:write in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:42 #7 Monolog\Handler\AbstractProcessingHandler:handle in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Logger.php:317 #6 Monolog\Logger:addRecord in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Logger.php:539 #5 Monolog\Logger:error in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/Logger.php:174 #4 Illuminate\Log\Logger:writeLog in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/Logger.php:87 #3 Illuminate\Log\Logger:error in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/LogManager.php:555 #2 Illuminate\Log\LogManager:error in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/roots/acorn/src/Illuminate/Foundation/Exceptions/Handler.php:241 #1 Illuminate\Foundation\Exceptions\Handler:report in /home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/roots/acorn/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:88 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
12
ErrorException
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php134
11
fwrite
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php134
10
Monolog\Handler\StreamHandler streamWrite
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php120
9
Monolog\Handler\StreamHandler write
/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php121
8
Monolog\Handler\RotatingFileHandler write
/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php42
7
Monolog\Handler\AbstractProcessingHandler handle
/vendor/monolog/monolog/src/Monolog/Logger.php317
6
Monolog\Logger addRecord
/vendor/monolog/monolog/src/Monolog/Logger.php539
5
Monolog\Logger error
/vendor/illuminate/log/Logger.php174
4
Illuminate\Log\Logger writeLog
/vendor/illuminate/log/Logger.php87
3
Illuminate\Log\Logger error
/vendor/illuminate/log/LogManager.php555
2
Illuminate\Log\LogManager error
/vendor/roots/acorn/src/Illuminate/Foundation/Exceptions/Handler.php241
1
Illuminate\Foundation\Exceptions\Handler report
/vendor/roots/acorn/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php88
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array    $record
     */
    protected function streamWrite($stream, array $record): void
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg): bool
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
 
        return true;
    }
 
    private function getDirFromStream(string $stream): ?string
    {
        $pos = strpos($stream, '://');
        if ($pos === false) {
            return dirname($stream);
        }
 
        if ('file://' === substr($stream, 0, 7)) {
            return dirname(substr($stream, 7));
        }
 
Arguments
  1. "fwrite(): Write of 2802 bytes failed with errno=28 No space left on device"
    
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array    $record
     */
    protected function streamWrite($stream, array $record): void
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg): bool
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
 
        return true;
    }
 
    private function getDirFromStream(string $stream): ?string
    {
        $pos = strpos($stream, '://');
        if ($pos === false) {
            return dirname($stream);
        }
 
        if ('file://' === substr($stream, 0, 7)) {
            return dirname(substr($stream, 7));
        }
 
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
            $this->errorMessage = null;
            set_error_handler([$this, 'customErrorHandler']);
            $this->stream = fopen($this->url, 'a');
            if ($this->filePermission !== null) {
                @chmod($this->url, $this->filePermission);
            }
            restore_error_handler();
            if (!is_resource($this->stream)) {
                $this->stream = null;
 
                throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage, $this->url));
            }
        }
 
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array    $record
     */
    protected function streamWrite($stream, array $record): void
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg): bool
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
 
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php
 
        return $this;
    }
 
    /**
     * {@inheritdoc}
     */
    protected function write(array $record): void
    {
        // on the first record written, if the log is new, we should rotate (once per day)
        if (null === $this->mustRotate) {
            $this->mustRotate = !file_exists($this->url);
        }
 
        if ($this->nextRotation <= $record['datetime']) {
            $this->mustRotate = true;
            $this->close();
        }
 
        parent::write($record);
    }
 
    /**
     * Rotates the files.
     */
    protected function rotate(): void
    {
        // update filename
        $this->url = $this->getTimedFilename();
        $this->nextRotation = new \DateTimeImmutable('tomorrow');
 
        // skip GC of old logs if files are unlimited
        if (0 === $this->maxFiles) {
            return;
        }
 
        $logFiles = glob($this->getGlobPattern());
        if ($this->maxFiles >= count($logFiles)) {
            // no files to remove
            return;
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
{
    use ProcessableHandlerTrait;
    use FormattableHandlerTrait;
 
    /**
     * {@inheritdoc}
     */
    public function handle(array $record): bool
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        if ($this->processors) {
            $record = $this->processRecord($record);
        }
 
        $record['formatted'] = $this->getFormatter()->format($record);
 
        $this->write($record);
 
        return false === $this->bubble;
    }
 
    /**
     * Writes the record down to the log of the implementing handler
     */
    abstract protected function write(array $record): void;
 
    public function reset()
    {
        parent::reset();
 
        $this->resetProcessors();
    }
}
 
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Logger.php
                    'level_name' => $levelName,
                    'channel' => $this->name,
                    'datetime' => new DateTimeImmutable($this->microsecondTimestamps, $this->timezone),
                    'extra' => [],
                ];
 
                try {
                    foreach ($this->processors as $processor) {
                        $record = $processor($record);
                    }
                } catch (Throwable $e) {
                    $this->handleException($e, $record);
 
                    return true;
                }
            }
 
            // once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
            try {
                if (true === $handler->handle($record)) {
                    break;
                }
            } catch (Throwable $e) {
                $this->handleException($e, $record);
 
                return true;
            }
        }
 
        return null !== $record;
    }
 
    /**
     * Ends a log cycle and frees all resources used by handlers.
     *
     * Closing a Handler means flushing all buffers and freeing any open resources/handles.
     * Handlers that have been closed should be able to accept log records again and re-open
     * themselves on demand, but this may not always be possible depending on implementation.
     *
     * This is useful at the end of a request and will be called automatically on every handler
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/monolog/monolog/src/Monolog/Logger.php
     *
     * @param string  $message The log message
     * @param mixed[] $context The log context
     */
    public function warning($message, array $context = []): void
    {
        $this->addRecord(static::WARNING, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the ERROR level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param string  $message The log message
     * @param mixed[] $context The log context
     */
    public function error($message, array $context = []): void
    {
        $this->addRecord(static::ERROR, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param string  $message The log message
     * @param mixed[] $context The log context
     */
    public function critical($message, array $context = []): void
    {
        $this->addRecord(static::CRITICAL, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the ALERT level.
     *
     * This method allows for compatibility with common interfaces.
     *
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/Logger.php
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to the log.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    protected function writeLog($level, $message, $context)
    {
        $this->logger->{$level}($message = $this->formatMessage($message), $context);
 
        $this->fireLogEvent($level, $message, $context);
    }
 
    /**
     * Register a new callback handler for when a log event is triggered.
     *
     * @param  \Closure  $callback
     * @return void
     *
     * @throws \RuntimeException
     */
    public function listen(Closure $callback)
    {
        if (! isset($this->dispatcher)) {
            throw new RuntimeException('Events dispatcher has not been set.');
        }
 
        $this->dispatcher->listen(MessageLogged::class, $callback);
    }
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/Logger.php
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function critical($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log an error message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function error($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a warning message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function warning($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a notice to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/illuminate/log/LogManager.php
     *
     * @return void
     */
    public function critical($message, array $context = [])
    {
        $this->driver()->critical($message, $context);
    }
 
    /**
     * Runtime errors that do not require immediate action but should typically
     * be logged and monitored.
     *
     * @param  string  $message
     * @param  array  $context
     *
     * @return void
     */
    public function error($message, array $context = [])
    {
        $this->driver()->error($message, $context);
    }
 
    /**
     * Exceptional occurrences that are not errors.
     *
     * Example: Use of deprecated APIs, poor use of an API, undesirable things
     * that are not necessarily wrong.
     *
     * @param  string  $message
     * @param  array  $context
     *
     * @return void
     */
    public function warning($message, array $context = [])
    {
        $this->driver()->warning($message, $context);
    }
 
    /**
     * Normal but significant events.
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/roots/acorn/src/Illuminate/Foundation/Exceptions/Handler.php
        foreach ($this->reportCallbacks as $reportCallback) {
            if ($reportCallback->handles($e)) {
                if ($reportCallback($e) === false) {
                    return;
                }
            }
        }
 
        try {
            $logger = $this->container->make(LoggerInterface::class);
        } catch (Exception $ex) {
            throw $e;
        }
 
        $logger->error(
            $e->getMessage(),
            array_merge(
                $this->exceptionContext($e),
                $this->context(),
                ['exception' => $e]
            )
        );
    }
 
    /**
     * Determine if the exception should be reported.
     *
     * @param  \Throwable  $e
     * @return bool
     */
    public function shouldReport(Throwable $e)
    {
        return ! $this->shouldntReport($e);
    }
 
    /**
     * Determine if the exception is in the "do not report" list.
     *
     * @param  \Throwable  $e
     * @return bool
/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/wp-content/themes/changewire/vendor/roots/acorn/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
            throw new ErrorException($message, 0, $level, $file, $line);
        }
    }
 
    /**
     * Handle an uncaught exception from the application.
     *
     * Note: Most exceptions can be handled via the try / catch block in
     * the HTTP and Console kernels. But, fatal error exceptions must
     * be handled differently since they are not normal exceptions.
     *
     * @param  \Throwable  $e
     * @return void
     */
    public function handleException(Throwable $e)
    {
        try {
            self::$reservedMemory = null;
 
            $this->getExceptionHandler()->report($e);
        } catch (Exception $e) {
            //
        }
 
        if ($this->app->runningInConsole()) {
            $this->renderForConsole($e);
        } else {
            $this->renderHttpResponse($e);
        }
    }
 
    /**
     * Render an exception to the console.
     *
     * @param  \Throwable  $e
     * @return void
     */
    protected function renderForConsole(Throwable $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
[internal]

Environment & details:

empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache/2.4.63 (Debian)"
REQUEST_URI
"/tag/lawmakers/"
WP_REDIS_DISABLED
"0"
USER
"yewbkgbtgu"
HOME
"/home/414970.cloudwaysapps.com/yewbkgbtgu"
SCRIPT_NAME
"/index.php"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.0"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/tag/lawmakers/"
REMOTE_PORT
"34840"
SCRIPT_FILENAME
"/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/index.php"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"http"
DOCUMENT_ROOT
"/home/414970.cloudwaysapps.com/yewbkgbtgu/public_html/"
REMOTE_ADDR
"18.97.14.84"
SERVER_PORT
"80"
SERVER_ADDR
"127.0.0.1"
SERVER_NAME
"changewire.org"
SERVER_SIGNATURE
"<address>Apache/2.4.63 (Debian) Server at changewire.org Port 80</address>\n"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_VISITOR
"{\"scheme\":\"https\"}"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_CF_CONNECTING_IP
"18.97.14.84"
HTTP_IF_MODIFIED_SINCE
"Fri, 08 Nov 2024 22:18:10 GMT"
HTTP_CF_RAY
"925eb640af62e6ec-EWR"
HTTP_CONNECTION
"close"
HTTP_X_VERSION
"57"
HTTP_X_APP_USER
"yewbkgbtgu"
HTTP_X_APPLICATION
"varnishpass"
HTTP_X_FORWARDED_HOST
"changewire.org"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_HOST
"changewire.org"
HTTP_X_FORWARDED_FOR
"18.97.14.84"
HTTP_X_REAL_IP
"18.97.14.84"
IMUNIFY360_WEAKPASS_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
IMUNIFY360_COMPROMISED_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
HTTP_AUTHORIZATION
""
HTTPS
"on"
cw_allowed_ip
"0"
UNIQUE_ID
"Z-Kt3K2kRvNcTsgUJWyUhwAABak"
REDIRECT_STATUS
"200"
REDIRECT_IMUNIFY360_WEAKPASS_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
REDIRECT_IMUNIFY360_COMPROMISED_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_HTTPS
"on"
REDIRECT_cw_allowed_ip
"0"
REDIRECT_UNIQUE_ID
"Z-Kt3K2kRvNcTsgUJWyUhwAABak"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1742908892.32
REQUEST_TIME
1742908892
empty
0. Whoops\Handler\PrettyPageHandler