Sporting Events   |   Horse Racing

Cheltenham Festival

4-day festival of horse racing including the famous Gold Cup day. National Hunt race meet in Gloucestershire which takes place every year in March.

2024-03-12 - 2024-03-15  
Cheltenham Racecourse

The Cheltenham Festival is recognised worldwide as the pinnacle of the jump race calendar – it is quite simply the Olympic Games of National Hunt racing. Each day of the festival offers spectacular jump racing, building up to the grand finale, the Gold Cup, on Friday. As official hospitality providers at Cheltenham Racecourse we guarantee you the finest facilities at the very best prices.

Across each of its four race days, the Cheltenham Festival produces a special atmosphere. The ‘Cheltenham Roar’, which refers to the huge amount of noise generated for the start of the first race of the festival, is something not to be missed.

PACKAGES

Official Hospitality at Cheltenham

View the racing from the comfort of a balcony box, overlooking the final two fences and down towards the finishing straight.  The boxes provide panoramic views of the stunning countryside surrounding the racecourse.  

Private boxes are available for 40 guests. Smaller bookings can be made for a minimum of 2 people with private tables available for 10 guests.   

YOUR PACKAGE INCLUDES:

  • Club Enclosure Admission Badge
  • Morning coffee and biscuits
  • Champagne Reception
  • Four course luncheon
  • Complimentary bar
  • Full afternoon tea
  • Car park labels (1 per 2 guests)
  • Souvenir race card
  • Racing newspapers
  • Live coverage on Flat screen TV’s
  • Tote betting facilities
  • Celebrity tipster
  • Individual guest documentation
  • VIP hostess service

Bookings

For more information, pricing, and availability, please contact your Eclipse sales representative directly by telephone.

Whoops! There was an error.
UnexpectedValueException
The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-05-10.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-10.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-10.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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
        "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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 @1746862459 {
        date: 2025-05-10 07:34:19.227921 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-10 07:34:19] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/cheltenham-festival","identifier":"60806478-6827-4589-a11c-31c5335cddd8","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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('Qk5aocrKCXNg5Pt...', '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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
        "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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 @1746862459 {
        date: 2025-05-10 07:34:19.227921 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-10 07:34:19] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/cheltenham-festival","identifier":"60806478-6827-4589-a11c-31c5335cddd8","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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('Qk5aocrKCXNg5Pt...', '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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
        "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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 @1746862459 {
        date: 2025-05-10 07:34:19.227921 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-10 07:34:19] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/cheltenham-festival","identifier":"60806478-6827-4589-a11c-31c5335cddd8","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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('Qk5aocrKCXNg5Pt...', '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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
      "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
      "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
      "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/cheltenham-festival"
      "identifier" => "60806478-6827-4589-a11c-31c5335cddd8"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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/Qk5aocrKCXNg5PtUOPc5huzG9SqYPPaxscibuZHF): 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
Key Value
laravel_session
"eyJpdiI6IklmSW53YjlSWlpPVnZvVXVGcjg2OHc9PSIsInZhbHVlIjoic0RJVmY5ZWZDaVlHRVlcL3BtRjlpdlZ6V2NvOXo2dGMxa2c0elpTeU1UWFFiUjM1cmlIcFl3elBDdkI3NVpzS1hHSjhYQ05Vc3BcL3R3ZEhKSXN0VE1hQT09IiwibWFjIjoiMTUyMTk0NzAwNTY0ODk5M2UxYWZkMGEwOWJjMTI1MDYzNGMyNzMzYjU1ZjEwYTdkMThhMDkzNzRjMzAwZjExMiJ9"
XSRF-TOKEN
"eyJpdiI6IjVBYnBTTEMwRGRwS2o2akZ4T0VWTnc9PSIsInZhbHVlIjoiUXdCRW9oR3N0WXRPOWlsUWo5cG9ESHpvWTZtM1JcL09PWTJ0aG9pMUdpTTFoM2dZUWVVdWRIREpGUlV1UjZka01Od3VcL2xqb1hCOTJMbWxDTnNPZGlPZz09IiwibWFjIjoiOWRhZmExM2ZiNTFkMGQwNjAxYmRkOWNhOTlhMzc3MGY2YmJlYTc1NTQ1MzQzOTY2NGRhZGNjOTA1YTA0YzlkOSJ9"
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_COOKIE
"laravel_session=eyJpdiI6IklmSW53YjlSWlpPVnZvVXVGcjg2OHc9PSIsInZhbHVlIjoic0RJVmY5ZWZDaVlHRVlcL3BtRjlpdlZ6V2NvOXo2dGMxa2c0elpTeU1UWFFiUjM1cmlIcFl3elBDdkI3NVpzS1hHSjhYQ05Vc3BcL3R3ZEhKSXN0VE1hQT09IiwibWFjIjoiMTUyMTk0NzAwNTY0ODk5M2UxYWZkMGEwOWJjMTI1MDYzNGMyNzMzYjU1ZjEwYTdkMThhMDkzNzRjMzAwZjExMiJ9; XSRF-TOKEN=eyJpdiI6IjVBYnBTTEMwRGRwS2o2akZ4T0VWTnc9PSIsInZhbHVlIjoiUXdCRW9oR3N0WXRPOWlsUWo5cG9ESHpvWTZtM1JcL09PWTJ0aG9pMUdpTTFoM2dZUWVVdWRIREpGUlV1UjZka01Od3VcL2xqb1hCOTJMbWxDTnNPZGlPZz09IiwibWFjIjoiOWRhZmExM2ZiNTFkMGQwNjAxYmRkOWNhOTlhMzc3MGY2YmJlYTc1NTQ1MzQzOTY2NGRhZGNjOTA1YTA0YzlkOSJ9"
HTTP_HOST
"eclipsesportsevents.com"
HTTP_REFERER
"https://eclipsesportsevents.com/index.php/events/cheltenham-festival"
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.147.2.112"
REMOTE_PORT
"37764"
SERVER_ADDR
"193.35.59.50"
SERVER_NAME
"eclipsesportsevents.com"
SERVER_ADMIN
"webmaster@eclipsesportsevents.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/events/cheltenham-festival"
REDIRECT_URL
"/events/cheltenham-festival"
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/events/cheltenham-festival"
SCRIPT_URL
"/events/cheltenham-festival"
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
1746862458.4985
REQUEST_TIME
1746862458
ORIGINAL_REQUEST_URI
"/events/cheltenham-festival"
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