Privacy Policy

This privacy policy is for this website www.eclipsesportsevents.com and governs the privacy of its users who choose to use it.

The policy sets out the different areas where user privacy is concerned and outlines the obligations & requirements of the users, the website and website owners. Furthermore the way this website processes, stores and protects user data and information will also be detailed within this policy.

The Website

This website and its owners take a proactive approach to user privacy and ensure the necessary steps are taken to protect the privacy of its users throughout their visiting experience. This website complies to all UK national laws and requirements for user privacy.

Contact & Communication

Users contacting this website and/or its owners do so at their own discretion and provide any such personal details requested at their own risk. Your personal information is kept private and stored securely until a time it is no longer required or has no use, as detailed in the Data Protection Act 1998. Every effort has been made to ensure a safe and secure form to email submission process but advise users using such form to email processes that they do so at their own risk.

This website and its owners use any information submitted to provide you with further information about the products / services they offer or to assist you in answering any questions or queries you may have submitted. This includes using your details to subscribe you to any email newsletter program the website operates but only if this was made clear to you and your express permission was granted when submitting any form to email process. Or whereby you the consumer have previously purchased from or enquired about purchasing from the company a product or service that the email newsletter relates to. This is by no means an entire list of your user rights in regard to receiving email marketing material. Your details are not passed on to any third parties.

External Links

Although this website only looks to include quality, safe and relevant external links, users are advised adopt a policy of caution before clicking any external web links mentioned throughout this website. (External links are clickable text / banner / image links to other websites)

The owners of this website cannot guarantee or verify the contents of any externally linked website despite their best efforts. Users should therefore note they click on external links at their own risk and this website and its owners cannot be held liable for any damages or implications caused by visiting any external links mentioned.

Social Media Platforms

Communication, engagement and actions taken through external social media platforms that this website and its owners participate on are custom to the terms and conditions as well as the privacy policies held with each social media platform respectively.

Users are advised to use social media platforms wisely and communicate / engage upon them with due care and caution in regard to their own privacy and personal details. This website nor its owners will ever ask for personal or sensitive information through social media platforms and encourage users wishing to discuss sensitive details to contact them through primary communication channels such as by telephone or email.

This website may use social sharing buttons which help share web content directly from web pages to the social media platform in question. Users are advised before using such social sharing buttons that they do so at their own discretion and note that the social media platform may track and save your request to share a web page respectively through your social media platform account.

Whoops! There was an error.
UnexpectedValueException
The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-05-09.log" could not be opened: failed to open stream: Disk quota exceeded UnexpectedValueException thrown with message "The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-05-09.log" could not be opened: failed to open stream: Disk quota exceeded" Stacktrace: #10 UnexpectedValueException in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:107 #9 Monolog\Handler\StreamHandler:write in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:119 #8 Monolog\Handler\RotatingFileHandler:write in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:39 #7 Monolog\Handler\AbstractProcessingHandler:handle in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php:344 #6 Monolog\Logger:addRecord in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php:707 #5 Monolog\Logger:error in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php:203 #4 Illuminate\Log\Writer:writeLog in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php:114 #3 Illuminate\Log\Writer:error in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php:135 #1 Anomaly\Streams\Platform\Exception\ExceptionHandler:report in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
10
UnexpectedValueException
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php107
9
Monolog\Handler\StreamHandler write
/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php119
8
Monolog\Handler\RotatingFileHandler write
/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php39
7
Monolog\Handler\AbstractProcessingHandler handle
/vendor/monolog/monolog/src/Monolog/Logger.php344
6
Monolog\Logger addRecord
/vendor/monolog/monolog/src/Monolog/Logger.php707
5
Monolog\Logger error
/vendor/laravel/framework/src/Illuminate/Log/Writer.php203
4
Illuminate\Log\Writer writeLog
/vendor/laravel/framework/src/Illuminate/Log/Writer.php114
3
Illuminate\Log\Writer error
/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php113
2
Illuminate\Foundation\Exceptions\Handler report
/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php135
1
Anomaly\Streams\Platform\Exception\ExceptionHandler report
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php81
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
    /**
     * {@inheritdoc}
     */
    protected function write(array $record)
    {
        if (!is_resource($this->stream)) {
            if (null === $this->url || '' === $this->url) {
                throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().');
            }
            $this->createDir();
            $this->errorMessage = null;
            set_error_handler(array($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: '.$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
     */
Arguments
  1. "The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-05-09.log" could not be opened: failed to open stream: Disk quota exceeded"
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php
        $this->url = $this->getTimedFilename();
        $this->close();
    }
 
    /**
     * {@inheritdoc}
     */
    protected function write(array $record)
    {
        // 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()
    {
        // update filename
        $this->url = $this->getTimedFilename();
        $this->nextRotation = new \DateTime('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;
Arguments
  1. array:8 [
      "message" => "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/privacy-policy"
        "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1746795935 {
        date: 2025-05-09 13:05:35.111025 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 13:05:35] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/privacy-policy","identifier":"ad761024-c019-4abe-98d2-a57ec6f97cb6","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('B74Kuu5Hvz81I1H...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Christophe Coevoet <stof@notk.org>
 */
abstract class AbstractProcessingHandler extends AbstractHandler
{
    /**
     * {@inheritdoc}
     */
    public function handle(array $record)
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        $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
     *
     * @param  array $record
     * @return void
     */
    abstract protected function write(array $record);
 
    /**
     * Processes a record.
     *
     * @param  array $record
     * @return array
     */
    protected function processRecord(array $record)
    {
Arguments
  1. array:8 [
      "message" => "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/privacy-policy"
        "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1746795935 {
        date: 2025-05-09 13:05:35.111025 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 13:05:35] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/privacy-policy","identifier":"ad761024-c019-4abe-98d2-a57ec6f97cb6","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('B74Kuu5Hvz81I1H...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php
        }
        $ts->setTimezone(static::$timezone);
 
        $record = array(
            'message' => (string) $message,
            'context' => $context,
            'level' => $level,
            'level_name' => $levelName,
            'channel' => $this->name,
            'datetime' => $ts,
            'extra' => array(),
        );
 
        try {
            foreach ($this->processors as $processor) {
                $record = call_user_func($processor, $record);
            }
 
            while ($handler = current($this->handlers)) {
                if (true === $handler->handle($record)) {
                    break;
                }
 
                next($this->handlers);
            }
        } catch (Exception $e) {
            $this->handleException($e, $record);
        }
 
        return true;
    }
 
    /**
     * 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
Arguments
  1. array:8 [
      "message" => "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/privacy-policy"
        "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1746795935 {
        date: 2025-05-09 13:05:35.111025 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 13:05:35] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/privacy-policy","identifier":"ad761024-c019-4abe-98d2-a57ec6f97cb6","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('B74Kuu5Hvz81I1H...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php
     * @param  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function err($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $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  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function error($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $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  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function crit($message, array $context = array())
    {
        return $this->addRecord(static::CRITICAL, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
Arguments
  1. 400
    
  2. "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/privacy-policy"
      "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to Monolog.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    protected function writeLog($level, $message, $context)
    {
        $this->fireLogEvent($level, $message = $this->formatMessage($message), $context);
 
        $this->monolog->{$level}($message, $context);
    }
 
    /**
     * Register a file log handler.
     *
     * @param  string  $path
     * @param  string  $level
     * @return void
     */
    public function useFiles($path, $level = 'debug')
    {
        $this->monolog->pushHandler($handler = new StreamHandler($path, $this->parseLevel($level)));
 
        $handler->setFormatter($this->getDefaultFormatter());
    }
 
    /**
     * Register a daily file log handler.
     *
     * @param  string  $path
Arguments
  1. "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/privacy-policy"
      "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.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
Arguments
  1. "error"
    
  2. "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/privacy-policy"
      "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php
     */
    public function report(Exception $e)
    {
        if ($this->shouldntReport($e)) {
            return;
        }
 
        if (method_exists($e, 'report')) {
            return $e->report();
        }
 
        try {
            $logger = $this->container->make(LoggerInterface::class);
        } catch (Exception $ex) {
            throw $e; // throw the original exception
        }
 
        $logger->error(
            $e->getMessage(),
            array_merge($this->context(), ['exception' => $e]
        ));
    }
 
    /**
     * Determine if the exception should be reported.
     *
     * @param  \Exception  $e
     * @return bool
     */
    public function shouldReport(Exception $e)
    {
        return ! $this->shouldntReport($e);
    }
 
    /**
     * Determine if the exception is in the "do not report" list.
     *
     * @param  \Exception  $e
     * @return bool
     */
Arguments
  1. "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/privacy-policy"
      "identifier" => "ad761024-c019-4abe-98d2-a57ec6f97cb6"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php
            'streams::errors/error',
            compact('id', 'code', 'name', 'message', 'summary'),
            $code,
            $headers
        );
    }
 
    /**
     * Report the exception.
     *
     * But first make sure it's stashed.
     *
     * @param Exception $e
     * @return mixed
     */
    public function report(Exception $e)
    {
        $this->original = $e;
 
        return parent::report($e);
    }
 
    /**
     * Get the default context variables for logging.
     *
     * @return array
     */
    protected function context()
    {
        try {
            return array_filter(
                [
                    'user'       => \Auth::id(),
                    'email'      => \Auth::user() ? \Auth::user()->email : null,
                    'url'        => request() ? request()->fullUrl() : null,
                    'identifier' => $this->container->make(ExceptionIdentifier::class)->identify($this->original),
                ]
            );
        } catch (Throwable $e) {
            return [];
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
    }
 
    /**
     * 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($e)
    {
        if (! $e instanceof Exception) {
            $e = new FatalThrowableError($e);
        }
 
        try {
            $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  \Exception  $e
     * @return void
     */
    protected function renderForConsole(Exception $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/B74Kuu5Hvz81I1HnFqvAQHRihYDjL4byeglHjZ9v): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"eclipsesportsevents.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/eclipse/public_html"
REMOTE_ADDR
"3.148.167.99"
REMOTE_PORT
"5221"
SERVER_ADDR
"193.35.59.50"
SERVER_NAME
"eclipsesportsevents.com"
SERVER_ADMIN
"webmaster@eclipsesportsevents.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/privacy-policy"
REDIRECT_URL
"/privacy-policy"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/eclipse/public_html/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://eclipsesportsevents.com/privacy-policy"
SCRIPT_URL
"/privacy-policy"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1746795934.5998
REQUEST_TIME
1746795934
ORIGINAL_REQUEST_URI
"/privacy-policy"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
APP_KEY
"base64:UkFMZrdpmNNqzYXI0P9iv5xATpaDtcI2/RRIHSwBsnA="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"eclipse_pyrocms"
DB_USERNAME
"eclipse_db"
DB_PASSWORD
"xWke3DU5BWCf8YsHhAmJZXitKf"
APPLICATION_NAME
"Default"
APPLICATION_REFERENCE
"default"
APPLICATION_DOMAIN
"eclipsesportsevents.com"
LAZY_TRANSLATIONS
"true"
DB_CACHE
"true"
LOCALE
"en"
TIMEZONE
"UTC"
INSTALLED
"true"
RECAPTCHA_SITE_KEY
"6LfbqbIUAAAAAGkx8lPCN_qMpGWaHdgMLOostvlx"
RECAPTCHA_SECRET_KEY
"6LfbqbIUAAAAAOoYaE8CVzB-rR9ww4kIaioF8AS-"
RECAPTCHA_THRESHOLD
"0.5"
RECAPTCHA_HIDE_BADGE
"false"
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
APP_KEY
"base64:UkFMZrdpmNNqzYXI0P9iv5xATpaDtcI2/RRIHSwBsnA="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"eclipse_pyrocms"
DB_USERNAME
"eclipse_db"
DB_PASSWORD
"xWke3DU5BWCf8YsHhAmJZXitKf"
APPLICATION_NAME
"Default"
APPLICATION_REFERENCE
"default"
APPLICATION_DOMAIN
"eclipsesportsevents.com"
LAZY_TRANSLATIONS
"true"
DB_CACHE
"true"
LOCALE
"en"
TIMEZONE
"UTC"
INSTALLED
"true"
RECAPTCHA_SITE_KEY
"6LfbqbIUAAAAAGkx8lPCN_qMpGWaHdgMLOostvlx"
RECAPTCHA_SECRET_KEY
"6LfbqbIUAAAAAOoYaE8CVzB-rR9ww4kIaioF8AS-"
RECAPTCHA_THRESHOLD
"0.5"
RECAPTCHA_HIDE_BADGE
"false"
0. Whoops\Handler\PrettyPageHandler