Whoops! There was an error.
ErrorException (E_NOTICE)
fwrite(): write of 1830 bytes failed with errno=28 No space left on device ErrorException thrown with message "fwrite(): write of 1830 bytes failed with errno=28 No space left on device" Stacktrace: #13 ErrorException in /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:139 #12 fwrite in /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:139 #11 Monolog\Handler\StreamHandler:streamWrite in /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:125 #10 Monolog\Handler\StreamHandler:write in /var/www/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:120 #9 Monolog\Handler\RotatingFileHandler:write in /var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:39 #8 Monolog\Handler\AbstractProcessingHandler:handle in /var/www/vendor/monolog/monolog/src/Monolog/Logger.php:344 #7 Monolog\Logger:addRecord in /var/www/vendor/monolog/monolog/src/Monolog/Logger.php:712 #6 Monolog\Logger:error in /var/www/vendor/laravel/framework/src/Illuminate/Log/Logger.php:176 #5 Illuminate\Log\Logger:writeLog in /var/www/vendor/laravel/framework/src/Illuminate/Log/Logger.php:87 #4 Illuminate\Log\Logger:error in /var/www/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:498 #3 Illuminate\Log\LogManager:error in /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:114 #2 Illuminate\Foundation\Exceptions\Handler:report in /var/www/app/Exceptions/Handler.php:41 #1 App\Exceptions\Handler:report in /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
13
ErrorException
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:139
12
fwrite
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:139
11
Monolog\Handler\StreamHandler streamWrite
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:125
10
Monolog\Handler\StreamHandler write
/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:120
9
Monolog\Handler\RotatingFileHandler write
/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:39
8
Monolog\Handler\AbstractProcessingHandler handle
/vendor/monolog/monolog/src/Monolog/Logger.php:344
7
Monolog\Logger addRecord
/vendor/monolog/monolog/src/Monolog/Logger.php:712
6
Monolog\Logger error
/vendor/laravel/framework/src/Illuminate/Log/Logger.php:176
5
Illuminate\Log\Logger writeLog
/vendor/laravel/framework/src/Illuminate/Log/Logger.php:87
4
Illuminate\Log\Logger error
/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:498
3
Illuminate\Log\LogManager error
/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:114
2
Illuminate\Foundation\Exceptions\Handler report
/app/Exceptions/Handler.php:41
1
App\Exceptions\Handler report
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]:0
/var/www/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)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    protected function streamSetChunkSize()
    {
        if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
            return stream_set_chunk_size($this->stream, self::CHUNK_SIZE);
        }
 
        return false;
    }
 
    private function customErrorHandler($code, $msg)
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
    }
 
    /**
     * @param string $stream
     *
     * @return null|string
Arguments
  1. "fwrite(): write of 1830 bytes failed with errno=28 No space left on device"
    
/var/www/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)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    protected function streamSetChunkSize()
    {
        if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
            return stream_set_chunk_size($this->stream, self::CHUNK_SIZE);
        }
 
        return false;
    }
 
    private function customErrorHandler($code, $msg)
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
    }
 
    /**
     * @param string $stream
     *
     * @return null|string
Arguments
  1. stream resource @8
      timed_out: false
      blocked: true
      eof: false
      wrapper_type: "plainfile"
      stream_type: "STDIO"
      mode: "a"
      unread_bytes: 0
      seekable: true
      uri: "/var/www/storage/logs/laravel-2025-09-25.log"
      options: []
    }
    
  2. """
    [2025-09-25 21:40:44] .ERROR: file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device at /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
    [stacktrace]\n
    #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/vendor...', 122, Array)\n
    #1 /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/storag...', 'a:5:{s:6:\"_toke...', 2)\n
    #2 /var/www/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/var/www/storag...', 'a:5:{s:6:\"_toke...', true)\n
    #3 /var/www/vendor/laravel/framework/src/Illuminate/Session/Store.php(129): Illuminate\\Session\\FileSessionHandler->write('FqpeGzAdIxlTRh3...', 'a:5:{s:6:\"_toke...')\n
    #4 /var/www/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
    #5 /var/www/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 /var/www/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 /var/www/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
    #8 {main}\n
    "} \n
    """
    
/var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
            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 in append mode: '.$this->errorMessage, $this->url));
            }
            $this->streamSetChunkSize();
        }
 
        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)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    protected function streamSetChunkSize()
    {
        if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
            return stream_set_chunk_size($this->stream, self::CHUNK_SIZE);
Arguments
  1. stream resource @8
      timed_out: false
      blocked: true
      eof: false
      wrapper_type: "plainfile"
      stream_type: "STDIO"
      mode: "a"
      unread_bytes: 0
      seekable: true
      uri: "/var/www/storage/logs/laravel-2025-09-25.log"
      options: []
    }
    
  2. array:8 [
      "message" => "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {#3748
          #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
          #code: 0
          #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => ""
      "datetime" => DateTime @1758825644 {#3752
        date: 2025-09-25 21:40:44.914954 Asia/Beirut (+03:00)
      }
      "extra" => []
      "formatted" => """
        [2025-09-25 21:40:44] .ERROR: file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device at /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/vendor...', 122, Array)\n
        #1 /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/storag...', 'a:5:{s:6:\"_toke...', 2)\n
        #2 /var/www/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/var/www/storag...', 'a:5:{s:6:\"_toke...', true)\n
        #3 /var/www/vendor/laravel/framework/src/Illuminate/Session/Store.php(129): Illuminate\\Session\\FileSessionHandler->write('FqpeGzAdIxlTRh3...', 'a:5:{s:6:\"_toke...')\n
        #4 /var/www/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /var/www/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 /var/www/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 /var/www/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/var/www/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(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {#3748
          #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
          #code: 0
          #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => ""
      "datetime" => DateTime @1758825644 {#3752
        date: 2025-09-25 21:40:44.914954 Asia/Beirut (+03:00)
      }
      "extra" => []
      "formatted" => """
        [2025-09-25 21:40:44] .ERROR: file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device at /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/vendor...', 122, Array)\n
        #1 /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/storag...', 'a:5:{s:6:\"_toke...', 2)\n
        #2 /var/www/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/var/www/storag...', 'a:5:{s:6:\"_toke...', true)\n
        #3 /var/www/vendor/laravel/framework/src/Illuminate/Session/Store.php(129): Illuminate\\Session\\FileSessionHandler->write('FqpeGzAdIxlTRh3...', 'a:5:{s:6:\"_toke...')\n
        #4 /var/www/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /var/www/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 /var/www/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 /var/www/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
 *
 * @author Jordi Boggiano <[email protected]>
 * @author Christophe Coevoet <[email protected]>
 */
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(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {#3748
          #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
          #code: 0
          #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => ""
      "datetime" => DateTime @1758825644 {#3752
        date: 2025-09-25 21:40:44.914954 Asia/Beirut (+03:00)
      }
      "extra" => []
      "formatted" => """
        [2025-09-25 21:40:44] .ERROR: file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device at /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/vendor...', 122, Array)\n
        #1 /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/storag...', 'a:5:{s:6:\"_toke...', 2)\n
        #2 /var/www/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/var/www/storag...', 'a:5:{s:6:\"_toke...', true)\n
        #3 /var/www/vendor/laravel/framework/src/Illuminate/Session/Store.php(129): Illuminate\\Session\\FileSessionHandler->write('FqpeGzAdIxlTRh3...', 'a:5:{s:6:\"_toke...')\n
        #4 /var/www/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /var/www/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 /var/www/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 /var/www/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/var/www/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(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {#3748
          #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
          #code: 0
          #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => ""
      "datetime" => DateTime @1758825644 {#3752
        date: 2025-09-25 21:40:44.914954 Asia/Beirut (+03:00)
      }
      "extra" => []
      "formatted" => """
        [2025-09-25 21:40:44] .ERROR: file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device at /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/vendor...', 122, Array)\n
        #1 /var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/storag...', 'a:5:{s:6:\"_toke...', 2)\n
        #2 /var/www/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/var/www/storag...', 'a:5:{s:6:\"_toke...', true)\n
        #3 /var/www/vendor/laravel/framework/src/Illuminate/Session/Store.php(129): Illuminate\\Session\\FileSessionHandler->write('FqpeGzAdIxlTRh3...', 'a:5:{s:6:\"_toke...')\n
        #4 /var/www/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /var/www/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 /var/www/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 /var/www/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/var/www/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(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
    
  3. array:1 [
      "exception" => ErrorException {#3748
        #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
        #code: 0
        #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/var/www/vendor/laravel/framework/src/Illuminate/Log/Logger.php
     * @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->fireLogEvent($level, $message = $this->formatMessage($message), $context);
 
        $this->logger->{$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);
    }
 
    /**
Arguments
  1. "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {#3748
        #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
        #code: 0
        #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/var/www/vendor/laravel/framework/src/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
Arguments
  1. "error"
    
  2. "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
    
  3. array:1 [
      "exception" => ErrorException {#3748
        #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
        #code: 0
        #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/var/www/vendor/laravel/framework/src/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.
Arguments
  1. "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {#3748
        #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
        #code: 0
        #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/var/www/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;
        }
 
        $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(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {#3748
        #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
        #code: 0
        #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/var/www/app/Exceptions/Handler.php
 
    /**
     * A list of the inputs that are never flashed for validation exceptions.
     *
     * @var array
     */
    protected $dontFlash = [
        'password',
        'password_confirmation',
    ];
 
    /**
     * Report or log an exception.
     *
     * @param \Exception $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        parent::report($exception);
    }
 
    /**
     * Render an exception into an HTTP response.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Exception $exception
     * @return \Illuminate\Http\Response
     */
    public function getTranslation($lo)
    {
        $files = [
            resource_path('lang/' . $lo . '/front.php'),
        ];
        $strings = [];
 
        foreach ($files as $file) {
            $name = basename($file, '.php');
            $strings[$name] = require $file;
        }
Arguments
  1. ErrorException {#3748
      #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      #code: 0
      #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
/var/www/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 {#3748
      #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      #code: 0
      #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {#3748
      #message: "file_put_contents(/var/www/storage/framework/sessions/FqpeGzAdIxlTRh3ywCXyAomiyZ3reLcPsJMH0cJe): failed to open stream: No space left on device"
      #code: 0
      #file: "/var/www/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
REDIRECT_REDIRECT_SCRIPT_URL
"/LB/en/food-drinks/detail/la-croisette-13620"
REDIRECT_REDIRECT_SCRIPT_URI
"http://guide.moovtoo.com:8443/LB/en/food-drinks/detail/la-croisette-13620"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_SCRIPT_URL
"/LB/en/food-drinks/detail/la-croisette-13620"
REDIRECT_SCRIPT_URI
"http://guide.moovtoo.com:8443/LB/en/food-drinks/detail/la-croisette-13620"
REDIRECT_STATUS
"200"
SCRIPT_URL
"/LB/en/food-drinks/detail/la-croisette-13620"
SCRIPT_URI
"http://guide.moovtoo.com:8443/LB/en/food-drinks/detail/la-croisette-13620"
HTTP_HOST
"guide.moovtoo.com"
HTTP_X_REQUEST_ID
"1234"
HTTP_X_REAL_IP
"216.73.216.83"
HTTP_X_FORWARDED_FOR
"216.73.216.83"
HTTP_X_FORWARDED_HOST
"guide.moovtoo.com"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SCHEME
"https"
HTTP_X_SCHEME
"https"
HTTP_X_ORIGINAL_FORWARDED_FOR
"216.73.216.83"
HTTP_CF_RAY
"984ca6d6cdbdb7b5-CMH"
HTTP_CF_CONNECTING_IP
"216.73.216.83"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
HTTP_ACCEPT
"*/*"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_VISITOR
"{"scheme":"https"}"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.54 (Debian) Server at guide.moovtoo.com Port 8443</address>\n"
SERVER_SOFTWARE
"Apache/2.4.54 (Debian)"
SERVER_NAME
"guide.moovtoo.com"
SERVER_ADDR
"10.20.0.11"
SERVER_PORT
"8443"
REMOTE_ADDR
"10.20.0.116"
DOCUMENT_ROOT
"/var/www"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/var/www"
SERVER_ADMIN
"webmaster@localhost"
SCRIPT_FILENAME
"/var/www/public/index.php"
REMOTE_PORT
"48804"
REDIRECT_URL
"/public/LB/en/food-drinks/detail/la-croisette-13620"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/LB/en/food-drinks/detail/la-croisette-13620"
SCRIPT_NAME
"/public/index.php"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1758825644.8498
REQUEST_TIME
1758825644
argv
[]
argc
0
APP_NAME
"MOOVTOO"
APP_KEY
"base64:Je86GVJbb3MR0QzWWjWqbMYJbEQvvzjsOPKGAhOXbCE="
APP_DEBUG
"true"
APP_URL
"https://moovtoo.com"
ASSET_URL
"https://guide.moovtoo.com/public"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mongodb"
DB_HOST
"10.20.8.4"
DB_PORT
"27017"
DB_DATABASE
"Moovtoo-prod"
DB_CONNECTION_2
"mongodb"
DB_HOST_2
"10.20.8.4"
DB_PORT_2
"27017"
DB_DATABASE_2
"datalake-prod"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
QUEUE_DRIVER
"database"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"moovtoo.com"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.ionos.fr"
MAIL_PORT
"465"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"LBPA0509%&*"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_NAME
"MOOVTOO"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
GOOGLE_APPLICATION_CREDENTIALS
"google-account.json"
ANALYTICS_VIEW_ID
"149240846"
ANALYTICS_TRACKING_ID
"UA-98295692-1"
STRIPE_KEY
"pk_live_hSk7dExYe3eyN3vH203pL2He00rHzUhDl5"
STRIPE_SECRET
"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"
HUB_SPOT_API_KEY
"ecd46845-b109-423b-989a-dcb640605dd6"
HUB_SPOT_API_BEARER
"pat-na1-d4817827-20ac-4df9-94bf-fe555002c01b"
google_client_id
"1023153775843-12akr52r5b0h06ro12kqsuv3mh1330vj.apps.googleusercontent.com"
google_client_secret
"RVsLXy1Sx2PWiwhPYPhGIBG5"
google_redirect
"https://moovtoo.fr/social-login/callback/google"
facebook_client_id
"730880087506426"
facebook_client_secret
"bb264d10f5da46495a46c83f4f1d5f70"
facebook_redirect
"https://moovtoo.fr/social-login/callback/facebook"
indexation_ai_url
"https://ai.moovtoo.com/api/"
Key Value
CMS_MOOVTOO_PROD_SVC_PORT_8443_TCP
"tcp://10.0.215.29:8443"
MEATANDWOK_SVC_PORT_8443_TCP_PROTO
"tcp"
MEATANDWOK_SVC_PORT
"tcp://10.0.148.161:8443"
OPLATFORM_BACKEND_SVC_SERVICE_PORT_HTTP
"8443"
OPLATFORM_AI_PROD_SVC_PORT_80_TCP_PROTO
"tcp"
MEATANDWOK_SVC_SERVICE_PORT
"8443"
NELCOMGROUP_PROD_SVC_SERVICE_PORT_HTTPS
"8443"
POLITICA_WEB_PROD_SVC_PORT_8080_TCP
"tcp://10.0.156.116:8080"
KUBERNETES_PORT
"tcp://10.0.0.1:443"
FORMEMO_WEB_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.98.122"
KUBERNETES_SERVICE_PORT
"443"
NELCOMGROUP_PROD_SVC_SERVICE_HOST
"10.0.214.135"
OPLATFORM_ANALYTICS_SVC_SERVICE_PORT_HTTPS
"3000"
CAMIONROUGE_OLD_SVC_SERVICE_PORT
"80"
CAMIONROUGE_OLD_SVC_PORT
"tcp://10.0.42.23:80"
APACHE_CONFDIR
"/etc/apache2"
OPLATFORM_ANALYTICS_SVC_PORT_3000_TCP
"tcp://10.0.39.234:3000"
OPLATFORM_WEB_V1_SVC_SERVICE_PORT_HTTP
"8443"
MOOVTOO_AI_PROD_SVC_PORT_80_TCP
"tcp://10.0.182.111:80"
HOSTNAME
"moovtoo-web-prod-deployment-c78b946c8-lj5w9"
PHP_INI_DIR
"/usr/local/etc/php"
FORMEMO_WEB_PROD_SVC_PORT_8443_TCP_PORT
"8443"
OPLATFORM_ANALYTICS_SVC_SERVICE_HOST
"10.0.39.234"
MOOVTOO_WEB_PROD_SVC_PORT_22_TCP
"tcp://10.0.147.112:22"
FORMEMO_WEB_PROD_SVC_SERVICE_PORT
"8443"
FORMEMO_WEB_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
NELCOMGROUP_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.214.135"
BUSINESS_MOOVTOO_WEB_PROD_SVC_SERVICE_PORT_SSH
"22"
FORMEMO_WEB_PROD_SVC_PORT
"tcp://10.0.98.122:8443"
SOEE_WEB_PROD_SVC_SERVICE_PORT_HTTP
"8443"
OPLATFORM_BACKEND_SVC_SERVICE_HOST
"10.0.212.251"
NELCOMGROUP_PROD_SVC_PORT_8443_TCP_PORT
"8443"
MEATANDWOK_SVC_PORT_8443_TCP
"tcp://10.0.148.161:8443"
OPLATFORM_AI_PROD_SVC_PORT_80_TCP
"tcp://10.0.4.81:80"
CAMIONROUGE_OLD_SVC_PORT_80_TCP_ADDR
"10.0.42.23"
NELCOMGROUP_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
NELCOMGROUP_PROD_SVC_SERVICE_PORT
"8443"
NELCOMGROUP_PROD_SVC_PORT
"tcp://10.0.214.135:8443"
PHP_LDFLAGS
"-Wl,-O1 -pie"
OPLATFORM_WEB_V1_SVC_SERVICE_HOST
"10.0.140.176"
OPLATFORM_BACKEND_SVC_PORT_8443_TCP_ADDR
"10.0.212.251"
APACHE_RUN_DIR
"/var/run/apache2"
PHP_CFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
CAMIONROUGE_OLD_SVC_PORT_80_TCP_PORT
"80"
PATRADING_WEB_PROD_SVC_SERVICE_PORT_HTTP
"8080"
OPLATFORM_ANALYTICS_SVC_PORT
"tcp://10.0.39.234:3000"
OPLATFORM_ANALYTICS_SVC_SERVICE_PORT
"3000"
PHP_VERSION
"7.4.33"
MOOVTOO_WEB_PROD_SVC_SERVICE_PORT_SSH
"22"
CAMIONROUGE_OLD_SVC_PORT_80_TCP_PROTO
"tcp"
SOEE_WEB_PROD_SVC_SERVICE_HOST
"10.0.176.108"
APACHE_PID_FILE
"/var/run/apache2/apache2.pid"
OPLATFORM_WEB_V1_SVC_PORT_8443_TCP_ADDR
"10.0.140.176"
OPLATFORM_BACKEND_SVC_PORT_8443_TCP_PORT
"8443"
FORMEMO_WEB_PROD_SVC_PORT_8443_TCP
"tcp://10.0.98.122:8443"
GPG_KEYS
"42670A7FE4D0441C8E4632349E4FDC074A4EF02D 5A52880781F755608BF815FC910DEB46F53EA312"
OPLATFORM_BACKEND_SVC_PORT
"tcp://10.0.212.251:8443"
BUSINESS_MOOVTOO_WEB_PROD_SVC_SERVICE_PORT_HTTPS
"8443"
OPLATFORM_BACKEND_SVC_PORT_8443_TCP_PROTO
"tcp"
OPLATFORM_BACKEND_SVC_SERVICE_PORT
"8443"
PHP_CPPFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
PHP_ASC_URL
"https://www.php.net/distributions/php-7.4.33.tar.xz.asc"
SOEE_WEB_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.176.108"
BUSINESS_MOOVTOO_WEB_PROD_SVC_SERVICE_HOST
"10.0.48.13"
OPLATFORM_WEB_V1_SVC_PORT_8443_TCP_PORT
"8443"
PHP_URL
"https://www.php.net/distributions/php-7.4.33.tar.xz"
NELCOMGROUP_PROD_SVC_PORT_8443_TCP
"tcp://10.0.214.135:8443"
OPLATFORM_WEB_V1_SVC_PORT
"tcp://10.0.140.176:8443"
OPLATFORM_WEB_V1_SVC_SERVICE_PORT
"8443"
OPLATFORM_WEB_V1_SVC_PORT_8443_TCP_PROTO
"tcp"
MOOVTOO_AI_PROD_SVC_SERVICE_HOST
"10.0.182.111"
PATRADING_WEB_PROD_SVC_PORT_8080_TCP_ADDR
"10.0.117.3"
SOEE_WEB_PROD_SVC_PORT_8443_TCP_PORT
"8443"
PATRADING_WEB_PROD_SVC_SERVICE_HOST
"10.0.117.3"
SOEE_WEB_PROD_SVC_SERVICE_PORT
"8443"
SOEE_WEB_PROD_SVC_PORT
"tcp://10.0.176.108:8443"
SOEE_WEB_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
KUBERNETES_PORT_443_TCP_ADDR
"10.0.0.1"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.48.13"
CAMIONROUGE_OLD_SVC_PORT_80_TCP
"tcp://10.0.42.23:80"
POLITICA_WEB_PROD_SVC_SERVICE_PORT_HTTP
"8080"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
MOOVTOO_WEB_PROD_SVC_SERVICE_PORT_HTTPS
"8443"
PATRADING_WEB_PROD_SVC_PORT_8080_TCP_PORT
"8080"
KUBERNETES_PORT_443_TCP_PORT
"443"
OPLATFORM_BACKEND_SVC_PORT_8443_TCP
"tcp://10.0.212.251:8443"
OPLATFORM_AI_PROD_SVC_SERVICE_HOST
"10.0.4.81"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_PORT
"8443"
PATRADING_WEB_PROD_SVC_PORT_8080_TCP_PROTO
"tcp"
CMS_MOOVTOO_PROD_SVC_SERVICE_PORT_HTTPS
"8443"
KUBERNETES_PORT_443_TCP_PROTO
"tcp"
BUSINESS_MOOVTOO_WEB_PROD_SVC_SERVICE_PORT
"8443"
MOOVTOO_WEB_PROD_SVC_SERVICE_HOST
"10.0.147.112"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT
"tcp://10.0.48.13:8443"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
APACHE_LOCK_DIR
"/var/lock/apache2"
MOOVTOO_AI_PROD_SVC_SERVICE_PORT
"80"
MOOVTOO_AI_PROD_SVC_PORT
"tcp://10.0.182.111:80"
CMS_MOOVTOO_PROD_SVC_SERVICE_HOST
"10.0.215.29"
LANG
"C"
MEATANDWOK_SVC_SERVICE_PORT_HTTP
"8443"
OPLATFORM_WEB_V1_SVC_PORT_8443_TCP
"tcp://10.0.140.176:8443"
PATRADING_WEB_PROD_SVC_SERVICE_PORT
"8080"
PATRADING_WEB_PROD_SVC_PORT
"tcp://10.0.117.3:8080"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_ADDR
"10.0.48.13"
MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.147.112"
CAMIONROUGE_OLD_SVC_SERVICE_PORT_HTTP
"80"
POLITICA_WEB_PROD_SVC_SERVICE_HOST
"10.0.156.116"
CMS_MOOVTOO_PROD_SVC_PORT_8443_TCP_ADDR
"10.0.215.29"
SOEE_WEB_PROD_SVC_PORT_8443_TCP
"tcp://10.0.176.108:8443"
POLITICA_WEB_PROD_SVC_PORT_8080_TCP_ADDR
"10.0.156.116"
ENTRYPOINT
"docker/entrypoint.sh"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_PORT
"22"
APACHE_RUN_USER
"www-data"
APACHE_RUN_GROUP
"www-data"
OPLATFORM_AI_PROD_SVC_PORT
"tcp://10.0.4.81:80"
MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_PORT
"8443"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_PROTO
"tcp"
OPLATFORM_AI_PROD_SVC_SERVICE_PORT
"80"
PATRADING_WEB_PROD_SVC_PORT_8080_TCP
"tcp://10.0.117.3:8080"
CMS_MOOVTOO_PROD_SVC_PORT_8443_TCP_PORT
"8443"
OPLATFORM_ANALYTICS_SVC_PORT_3000_TCP_ADDR
"10.0.39.234"
POLITICA_WEB_PROD_SVC_PORT_8080_TCP_PORT
"8080"
MOOVTOO_WEB_PROD_SVC_PORT
"tcp://10.0.147.112:8443"
MOOVTOO_AI_PROD_SVC_PORT_80_TCP_ADDR
"10.0.182.111"
MOOVTOO_WEB_PROD_SVC_SERVICE_PORT
"8443"
FORMEMO_WEB_PROD_SVC_SERVICE_PORT_HTTP
"8443"
MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
APACHE_LOG_DIR
"/var/log/apache2"
CMS_MOOVTOO_PROD_SVC_SERVICE_PORT
"8443"
CMS_MOOVTOO_PROD_SVC_PORT
"tcp://10.0.215.29:8443"
CMS_MOOVTOO_PROD_SVC_PORT_8443_TCP_PROTO
"tcp"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP
"tcp://10.0.48.13:8443"
POLITICA_WEB_PROD_SVC_PORT_8080_TCP_PROTO
"tcp"
KUBERNETES_PORT_443_TCP
"tcp://10.0.0.1:443"
KUBERNETES_SERVICE_PORT_HTTPS
"443"
MEATANDWOK_SVC_SERVICE_HOST
"10.0.148.161"
MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_ADDR
"10.0.147.112"
PHPIZE_DEPS
"autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c"
APP_ENV
""
MOOVTOO_AI_PROD_SVC_PORT_80_TCP_PORT
"80"
OPLATFORM_ANALYTICS_SVC_PORT_3000_TCP_PORT
"3000"
KUBERNETES_SERVICE_HOST
"10.0.0.1"
PWD
"/var/www"
PHP_SHA256
"924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927"
POLITICA_WEB_PROD_SVC_SERVICE_PORT
"8080"
MOOVTOO_AI_PROD_SVC_PORT_80_TCP_PROTO
"tcp"
OPLATFORM_ANALYTICS_SVC_PORT_3000_TCP_PROTO
"tcp"
POLITICA_WEB_PROD_SVC_PORT
"tcp://10.0.156.116:8080"
CAMIONROUGE_OLD_SVC_SERVICE_HOST
"10.0.42.23"
APACHE_ENVVARS
"/etc/apache2/envvars"
MEATANDWOK_SVC_PORT_8443_TCP_ADDR
"10.0.148.161"
MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_PORT
"22"
OPLATFORM_AI_PROD_SVC_PORT_80_TCP_ADDR
"10.0.4.81"
MOOVTOO_WEB_PROD_SVC_PORT_22_TCP_PROTO
"tcp"
BUSINESS_MOOVTOO_WEB_PROD_SVC_PORT_22_TCP
"tcp://10.0.48.13:22"
FORMEMO_WEB_PROD_SVC_SERVICE_HOST
"10.0.98.122"
MEATANDWOK_SVC_PORT_8443_TCP_PORT
"8443"
OPLATFORM_AI_PROD_SVC_PORT_80_TCP_PORT
"80"
MOOVTOO_WEB_PROD_SVC_PORT_8443_TCP
"tcp://10.0.147.112:8443"
APP_NAME
"MOOVTOO"
APP_KEY
"base64:Je86GVJbb3MR0QzWWjWqbMYJbEQvvzjsOPKGAhOXbCE="
APP_DEBUG
"true"
APP_URL
"https://moovtoo.com"
ASSET_URL
"https://guide.moovtoo.com/public"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mongodb"
DB_HOST
"10.20.8.4"
DB_PORT
"27017"
DB_DATABASE
"Moovtoo-prod"
DB_CONNECTION_2
"mongodb"
DB_HOST_2
"10.20.8.4"
DB_PORT_2
"27017"
DB_DATABASE_2
"datalake-prod"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
QUEUE_DRIVER
"database"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"moovtoo.com"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.ionos.fr"
MAIL_PORT
"465"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"LBPA0509%&*"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_NAME
"MOOVTOO"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
GOOGLE_APPLICATION_CREDENTIALS
"google-account.json"
ANALYTICS_VIEW_ID
"149240846"
ANALYTICS_TRACKING_ID
"UA-98295692-1"
STRIPE_KEY
"pk_live_hSk7dExYe3eyN3vH203pL2He00rHzUhDl5"
STRIPE_SECRET
"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"
HUB_SPOT_API_KEY
"ecd46845-b109-423b-989a-dcb640605dd6"
HUB_SPOT_API_BEARER
"pat-na1-d4817827-20ac-4df9-94bf-fe555002c01b"
google_client_id
"1023153775843-12akr52r5b0h06ro12kqsuv3mh1330vj.apps.googleusercontent.com"
google_client_secret
"RVsLXy1Sx2PWiwhPYPhGIBG5"
google_redirect
"https://moovtoo.fr/social-login/callback/google"
facebook_client_id
"730880087506426"
facebook_client_secret
"bb264d10f5da46495a46c83f4f1d5f70"
facebook_redirect
"https://moovtoo.fr/social-login/callback/facebook"
indexation_ai_url
"https://ai.moovtoo.com/api/"
0. Whoops\Handler\PrettyPageHandler