UnexpectedValueException
The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied UnexpectedValueException thrown with message "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied" Stacktrace: #10 UnexpectedValueException in /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php:115 #9 Monolog\Handler\StreamHandler:write in /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:39 #8 Monolog\Handler\AbstractProcessingHandler:handle in /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php:344 #7 Monolog\Logger:addRecord in /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php:712 #6 Monolog\Logger:error in /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php:176 #5 Illuminate\Log\Logger:writeLog in /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php:87 #4 Illuminate\Log\Logger:error in /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/LogManager.php:526 #3 Illuminate\Log\LogManager:error in /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in /home/equeticasite/public_html/app/Exceptions/Handler.php:41 #1 App\Exceptions\Handler:report in /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
10
UnexpectedValueException
/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php115
9
Monolog\Handler\StreamHandler write
/vendor2/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php39
8
Monolog\Handler\AbstractProcessingHandler handle
/vendor2/monolog/monolog/src/Monolog/Logger.php344
7
Monolog\Logger addRecord
/vendor2/monolog/monolog/src/Monolog/Logger.php712
6
Monolog\Logger error
/vendor2/laravel/framework/src/Illuminate/Log/Logger.php176
5
Illuminate\Log\Logger writeLog
/vendor2/laravel/framework/src/Illuminate/Log/Logger.php87
4
Illuminate\Log\Logger error
/vendor2/laravel/framework/src/Illuminate/Log/LogManager.php526
3
Illuminate\Log\LogManager error
/vendor2/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php113
2
Illuminate\Foundation\Exceptions\Handler report
/app/Exceptions/Handler.php41
1
App\Exceptions\Handler report
/vendor2/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php81
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
/home/equeticasite/public_html/vendor2/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 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
Arguments
  1. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
/home/equeticasite/public_html/vendor2/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" => "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => UnexpectedValueException {
          #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
          #code: 0
          #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
          #line: 115
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1711638360 {
        date: 2024-03-28 10:06:00.781310 America/Chicago (-05:00)
      }
      "extra" => []
      "formatted" => """
        [2024-03-28 10:06:00] production.ERROR: The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied {"exception":"[object] (UnexpectedValueException(code: 0): The stream or file \"/home/equeticasite/public_html/storage/logs/laravel.log\" could not be opened in append mode: failed to open stream: Permission denied at /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php:115)\n
        [stacktrace]\n
        #0 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(39): Monolog\\Handler\\StreamHandler->write(Array)\n
        #1 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php(344): Monolog\\Handler\\AbstractProcessingHandler->handle(Array)\n
        #2 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php(712): Monolog\\Logger->addRecord(400, 'The stream or f...', Array)\n
        #3 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php(176): Monolog\\Logger->error('The stream or f...', Array)\n
        #4 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php(87): Illuminate\\Log\\Logger->writeLog('error', 'The stream or f...', Array)\n
        #5 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/LogManager.php(526): Illuminate\\Log\\Logger->error('The stream or f...', Array)\n
        #6 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(113): Illuminate\\Log\\LogManager->error('The stream or f...', Array)\n
        #7 /home/equeticasite/public_html/app/Exceptions/Handler.php(41): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(UnexpectedValueException))\n
        #8 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(314): App\\Exceptions\\Handler->report(Object(UnexpectedValueException))\n
        #9 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(118): Illuminate\\Foundation\\Http\\Kernel->reportException(Object(UnexpectedValueException))\n
        #10 /home/equeticasite/public_html/public/index.php(56): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n
        #11 {main}\n
        "} \n
        """
    ]
    
/home/equeticasite/public_html/vendor2/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" => "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => UnexpectedValueException {
          #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
          #code: 0
          #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
          #line: 115
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1711638360 {
        date: 2024-03-28 10:06:00.781310 America/Chicago (-05:00)
      }
      "extra" => []
      "formatted" => """
        [2024-03-28 10:06:00] production.ERROR: The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied {"exception":"[object] (UnexpectedValueException(code: 0): The stream or file \"/home/equeticasite/public_html/storage/logs/laravel.log\" could not be opened in append mode: failed to open stream: Permission denied at /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php:115)\n
        [stacktrace]\n
        #0 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(39): Monolog\\Handler\\StreamHandler->write(Array)\n
        #1 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php(344): Monolog\\Handler\\AbstractProcessingHandler->handle(Array)\n
        #2 /home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Logger.php(712): Monolog\\Logger->addRecord(400, 'The stream or f...', Array)\n
        #3 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php(176): Monolog\\Logger->error('The stream or f...', Array)\n
        #4 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/Logger.php(87): Illuminate\\Log\\Logger->writeLog('error', 'The stream or f...', Array)\n
        #5 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/LogManager.php(526): Illuminate\\Log\\Logger->error('The stream or f...', Array)\n
        #6 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(113): Illuminate\\Log\\LogManager->error('The stream or f...', Array)\n
        #7 /home/equeticasite/public_html/app/Exceptions/Handler.php(41): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(UnexpectedValueException))\n
        #8 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(314): App\\Exceptions\\Handler->report(Object(UnexpectedValueException))\n
        #9 /home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(118): Illuminate\\Foundation\\Http\\Kernel->reportException(Object(UnexpectedValueException))\n
        #10 /home/equeticasite/public_html/public/index.php(56): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n
        #11 {main}\n
        "} \n
        """
    ]
    
/home/equeticasite/public_html/vendor2/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. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => UnexpectedValueException {
        #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
        #code: 0
        #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
        #line: 115
      }
    ]
    
/home/equeticasite/public_html/vendor2/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. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => UnexpectedValueException {
        #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
        #code: 0
        #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
        #line: 115
      }
    ]
    
/home/equeticasite/public_html/vendor2/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. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => UnexpectedValueException {
        #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
        #code: 0
        #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
        #line: 115
      }
    ]
    
/home/equeticasite/public_html/vendor2/laravel/framework/src/Illuminate/Log/LogManager.php
     *
     * @return void
     */
    public function critical($message, array $context = [])
    {
        return $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 = [])
    {
        return $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 = [])
    {
        return $this->driver()->warning($message, $context);
    }
 
    /**
     * Normal but significant events.
Arguments
  1. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => UnexpectedValueException {
        #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
        #code: 0
        #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
        #line: 115
      }
    ]
    
/home/equeticasite/public_html/vendor2/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. "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => UnexpectedValueException {
        #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
        #code: 0
        #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
        #line: 115
      }
    ]
    
/home/equeticasite/public_html/app/Exceptions/Handler.php
    protected $dontReport = [
        \Illuminate\Auth\AuthenticationException::class,
        \Illuminate\Auth\Access\AuthorizationException::class,
        \Symfony\Component\HttpKernel\Exception\HttpException::class,
        \Illuminate\Database\Eloquent\ModelNotFoundException::class,
        \Illuminate\Session\TokenMismatchException::class,
        \Illuminate\Validation\ValidationException::class,
    ];
 
    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @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 render($request, Exception $exception)
    {
        // Checks if a user has logged in to the system, so the error will be recorded with the user id
        $userId = 0;
        if (\Auth::user()) {
            $userId = \Auth::user()->id;
        }
 
        $data = array(
            'user_id' => $userId,
            'code' => $exception->getCode(),
Arguments
  1. UnexpectedValueException {
      #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
      #code: 0
      #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
      #line: 115
    }
    
/home/equeticasite/public_html/vendor2/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. UnexpectedValueException {
      #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
      #code: 0
      #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
      #line: 115
    }
    
[internal]
Arguments
  1. UnexpectedValueException {
      #message: "The stream or file "/home/equeticasite/public_html/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied"
      #code: 0
      #file: "/home/equeticasite/public_html/vendor2/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
      #line: 115
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SSL_TLS_SNI
"equetica.com"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"equetica.com"
REDIRECT_STATUS
"200"
HTTPS
"on"
SSL_TLS_SNI
"equetica.com"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"claudebot"
HTTP_REFERER
"http://equetica.com/shows/TFZrT0NZM1c3dzg9/trainers"
HTTP_HOST
"equetica.com"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.29 (Ubuntu) Server at equetica.com Port 443</address>\n"
SERVER_SOFTWARE
"Apache/2.4.29 (Ubuntu)"
SERVER_NAME
"equetica.com"
SERVER_ADDR
"172.31.35.158"
SERVER_PORT
"443"
REMOTE_ADDR
"44.221.46.132"
DOCUMENT_ROOT
"/home/equeticasite/public_html/"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/equeticasite/public_html/"
SERVER_ADMIN
"[no address given]"
SCRIPT_FILENAME
"/home/equeticasite/public_html/public/index.php"
REMOTE_PORT
"59230"
REDIRECT_URL
"/public/shows/TFZrT0NZM1c3dzg9/trainers"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/shows/TFZrT0NZM1c3dzg9/trainers"
SCRIPT_NAME
"/public/index.php"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1711638360.722
REQUEST_TIME
1711638360
APP_ENV
"production"
APP_KEY
"base64:fzoSDAwutf2GTMropqgo8FaLNMJk9lDMFW1t3FCkV0A="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_TIME_ZONE
"America/Chicago"
APP_URL
"http://equetica.com"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"equeticainrevo2db.coyowtmqgivl.us-east-1.rds.amazonaws.com"
DB_PORT
"3306"
DB_DATABASE
"equetica"
DB_USERNAME
"equeticasite"
DB_PASSWORD
"fgert#$^hjtyr"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.sendgrid.net"
MAIL_PORT
"587"
MAIL_USERNAME
"apikey"
MAIL_PASSWORD
"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"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_KEY
""
PUSHER_SECRET
""
STRIPE_KEY
"pk_test_LuBJbPNYgrZd7S4xY4EKwZdF00dlHSgQHX"
STRIPE_SECRET
"sk_test_RaU3dshbZ7S3kzEPYHzjykXq00lFxTxiM1"
STIPE_CLIENT_ID
"ca_HMOcKNgObmvDk6AFWCIgq40TrpqPIsfG"
PAYPAL_USERNAME
"inrevo2.pay-facilitator_api1.gmail.com"
PAYPAL_PASSWORD
"WJWNEHVR2ZT95PEA"
PAYPAL_CLIENT_ID
"ARAXbANkG5YUOZ69cdLqhFMGxU1lQIigf0ALUKXXA0O5K4g7HgJNWVq_rAZDAzwg-ATHLwdosIRrOB6F"
PAYPAL_SECRET
"ELoWiPP1m3OZpX3wmmmFzYiVtaelPVhtHBXqsv5aS4oeVM4CeeQ_QfiqBFHdWdSU1wGgMhWfc3G3fjhL"
PAYPAL_MODE
"sandbox"
app_id
"APP-80W284485P519543T"
developerAccountEmail
"inrevo2.pay-facilitator@gmail.com"
ApplicationID
"APP-80W284485P519543T"
APIUsername
"inrevo2.pay-facilitator_api1.gmail.com"
APIPassword
"WJWNEHVR2ZT95PEA"
APISignature
"AAcMH9eKedaPCqjA0TmwbkVt4lapANSUHPhHl59grCAA2mYYINLyoqEq"
JWT_SECRET
"FzE8UGiLjGTXdavUSW7602q8CQOFNQvaTjqvRBmCU25Sb6O06FWgJ36tsPq6BszF"
USEF_CLIENT_ID
"7fc2f0be58744be587c87544cd00f5ca"
USEF_CLIENT_SECRET
"30e870de4c0841168cb3c701b88085f4"
USEF_MODE
"production"
NOCAPTCHA_SECRET
"6LeVhNcZAAAAACGh423DtFiuogWjhvApDJoOv3AC"
NOCAPTCHA_SITEKEY
"6LeVhNcZAAAAAIiHbj1AMIkusWWh8qEZ8ypNiWQD"
GOOGLE_CLIENT_ID
"728237135173-c29v7r7kh1na4ttubovugh2i74dof9ul.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"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"
GOOGLE_REDIRECT_URI
"https://equetica.com/oauth/google/callback"
QUICKBOOKS_CLIENT_ID
"ABs7Gkxv1bDss7Us7PjzQCAwt0FqbRZnl4y1adl3xB6ZH1Z6gR"
QUICKBOOKS_CLIENT_SECRET
"c6LYkPk0K2kYN9DSI2JpAlbpvEGQwKzDYSRUxXv2"
QUICKBOOKS_REDIRECT_URI
"https://equetica.com/callback-res-quickbook"
QUICKBOOKS_REALM_ID
"4620816365302965610"
QUICKBOOKS_BASE_URL
"development"
Key Value
APP_ENV
"production"
APP_KEY
"base64:fzoSDAwutf2GTMropqgo8FaLNMJk9lDMFW1t3FCkV0A="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_TIME_ZONE
"America/Chicago"
APP_URL
"http://equetica.com"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"equeticainrevo2db.coyowtmqgivl.us-east-1.rds.amazonaws.com"
DB_PORT
"3306"
DB_DATABASE
"equetica"
DB_USERNAME
"equeticasite"
DB_PASSWORD
"fgert#$^hjtyr"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.sendgrid.net"
MAIL_PORT
"587"
MAIL_USERNAME
"apikey"
MAIL_PASSWORD
"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"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_KEY
""
PUSHER_SECRET
""
STRIPE_KEY
"pk_test_LuBJbPNYgrZd7S4xY4EKwZdF00dlHSgQHX"
STRIPE_SECRET
"sk_test_RaU3dshbZ7S3kzEPYHzjykXq00lFxTxiM1"
STIPE_CLIENT_ID
"ca_HMOcKNgObmvDk6AFWCIgq40TrpqPIsfG"
PAYPAL_USERNAME
"inrevo2.pay-facilitator_api1.gmail.com"
PAYPAL_PASSWORD
"WJWNEHVR2ZT95PEA"
PAYPAL_CLIENT_ID
"ARAXbANkG5YUOZ69cdLqhFMGxU1lQIigf0ALUKXXA0O5K4g7HgJNWVq_rAZDAzwg-ATHLwdosIRrOB6F"
PAYPAL_SECRET
"ELoWiPP1m3OZpX3wmmmFzYiVtaelPVhtHBXqsv5aS4oeVM4CeeQ_QfiqBFHdWdSU1wGgMhWfc3G3fjhL"
PAYPAL_MODE
"sandbox"
app_id
"APP-80W284485P519543T"
developerAccountEmail
"inrevo2.pay-facilitator@gmail.com"
ApplicationID
"APP-80W284485P519543T"
APIUsername
"inrevo2.pay-facilitator_api1.gmail.com"
APIPassword
"WJWNEHVR2ZT95PEA"
APISignature
"AAcMH9eKedaPCqjA0TmwbkVt4lapANSUHPhHl59grCAA2mYYINLyoqEq"
JWT_SECRET
"FzE8UGiLjGTXdavUSW7602q8CQOFNQvaTjqvRBmCU25Sb6O06FWgJ36tsPq6BszF"
USEF_CLIENT_ID
"7fc2f0be58744be587c87544cd00f5ca"
USEF_CLIENT_SECRET
"30e870de4c0841168cb3c701b88085f4"
USEF_MODE
"production"
NOCAPTCHA_SECRET
"6LeVhNcZAAAAACGh423DtFiuogWjhvApDJoOv3AC"
NOCAPTCHA_SITEKEY
"6LeVhNcZAAAAAIiHbj1AMIkusWWh8qEZ8ypNiWQD"
GOOGLE_CLIENT_ID
"728237135173-c29v7r7kh1na4ttubovugh2i74dof9ul.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"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"
GOOGLE_REDIRECT_URI
"https://equetica.com/oauth/google/callback"
QUICKBOOKS_CLIENT_ID
"ABs7Gkxv1bDss7Us7PjzQCAwt0FqbRZnl4y1adl3xB6ZH1Z6gR"
QUICKBOOKS_CLIENT_SECRET
"c6LYkPk0K2kYN9DSI2JpAlbpvEGQwKzDYSRUxXv2"
QUICKBOOKS_REDIRECT_URI
"https://equetica.com/callback-res-quickbook"
QUICKBOOKS_REALM_ID
"4620816365302965610"
QUICKBOOKS_BASE_URL
"development"
0. Whoops\Handler\PrettyPageHandler