UnexpectedValueException
The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied UnexpectedValueException thrown with message "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied" Stacktrace: #11 UnexpectedValueException in /home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:142 #10 Monolog\Handler\StreamHandler:write in /home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:125 #9 Monolog\Handler\RotatingFileHandler:write in /home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:48 #8 Monolog\Handler\AbstractProcessingHandler:handle in /home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:327 #7 Monolog\Logger:addRecord in /home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:526 #6 Monolog\Logger:info in /home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:176 #5 Illuminate\Log\Logger:writeLog in /home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:123 #4 Illuminate\Log\Logger:info in /home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:591 #3 Illuminate\Log\LogManager:info in /home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:261 #2 Illuminate\Support\Facades\Facade:__callStatic in /home/chatnodig411/public_html/app/Exceptions/Handler.php:42 #1 App\Exceptions\Handler:report in /home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:92 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
11
UnexpectedValueException
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php142
10
Monolog\Handler\StreamHandler write
/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php125
9
Monolog\Handler\RotatingFileHandler write
/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php48
8
Monolog\Handler\AbstractProcessingHandler handle
/vendor/monolog/monolog/src/Monolog/Logger.php327
7
Monolog\Logger addRecord
/vendor/monolog/monolog/src/Monolog/Logger.php526
6
Monolog\Logger info
/vendor/laravel/framework/src/Illuminate/Log/Logger.php176
5
Illuminate\Log\Logger writeLog
/vendor/laravel/framework/src/Illuminate/Log/Logger.php123
4
Illuminate\Log\Logger info
/vendor/laravel/framework/src/Illuminate/Log/LogManager.php591
3
Illuminate\Log\LogManager info
/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php261
2
Illuminate\Support\Facades\Facade __callStatic
/app/Exceptions/Handler.php42
1
App\Exceptions\Handler report
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php92
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
     */
    protected function write(array $record): void
    {
        if (!is_resource($this->stream)) {
            $url = $this->url;
            if (null === $url || '' === $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($url);
            $this->errorMessage = null;
            set_error_handler([$this, 'customErrorHandler']);
            $stream = fopen($url, 'a');
            if ($this->filePermission !== null) {
                @chmod($url, $this->filePermission);
            }
            restore_error_handler();
            if (!is_resource($stream)) {
                $this->stream = null;
 
                throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage, $url));
            }
            stream_set_chunk_size($stream, $this->streamChunkSize);
            $this->stream = $stream;
        }
 
        $stream = $this->stream;
        if (!is_resource($stream)) {
            throw new \LogicException('No stream was opened yet');
        }
 
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($stream, LOCK_EX);
        }
 
        $this->streamWrite($stream, $record);
 
        if ($this->useLocking) {
            flock($stream, LOCK_UN);
        }
Arguments
  1. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php
 
        return $this;
    }
 
    /**
     * {@inheritDoc}
     */
    protected function write(array $record): void
    {
        // on the first record written, if the log is new, we should rotate (once per day)
        if (null === $this->mustRotate) {
            $this->mustRotate = null === $this->url || !file_exists($this->url);
        }
 
        if ($this->nextRotation <= $record['datetime']) {
            $this->mustRotate = true;
            $this->close();
        }
 
        parent::write($record);
    }
 
    /**
     * Rotates the files.
     */
    protected function rotate(): void
    {
        // update filename
        $this->url = $this->getTimedFilename();
        $this->nextRotation = new \DateTimeImmutable('tomorrow');
 
        // skip GC of old logs if files are unlimited
        if (0 === $this->maxFiles) {
            return;
        }
 
        $logFiles = glob($this->getGlobPattern());
        if (false === $logFiles) {
            // failed to glob
            return;
Arguments
  1. array:8 [
      "message" => "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      "context" => array:3 [
        "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
        "input" => []
        "user" => ""
      ]
      "level" => 200
      "level_name" => "INFO"
      "channel" => "prod"
      "datetime" => Monolog\DateTimeImmutable @1711655451 {#2042
        -useMicroseconds: true
        date: 2024-03-28 19:50:51.717117 UTC (+00:00)
      }
      "extra" => []
      "formatted" => "[2024-03-28 19:50:51] prod.INFO: The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied {"url":"https://dashboard.nodig.com/subscription/dashboard-analytics","input":[],"user":""} \n"
    ]
    
/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
    use ProcessableHandlerTrait;
    use FormattableHandlerTrait;
 
    /**
     * {@inheritDoc}
     */
    public function handle(array $record): bool
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        if ($this->processors) {
            /** @var Record $record */
            $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
     *
     * @phpstan-param FormattedRecord $record
     */
    abstract protected function write(array $record): void;
 
    /**
     * @return void
     */
    public function reset()
    {
        parent::reset();
 
        $this->resetProcessors();
    }
Arguments
  1. array:8 [
      "message" => "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      "context" => array:3 [
        "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
        "input" => []
        "user" => ""
      ]
      "level" => 200
      "level_name" => "INFO"
      "channel" => "prod"
      "datetime" => Monolog\DateTimeImmutable @1711655451 {#2042
        -useMicroseconds: true
        date: 2024-03-28 19:50:51.717117 UTC (+00:00)
      }
      "extra" => []
      "formatted" => "[2024-03-28 19:50:51] prod.INFO: The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied {"url":"https://dashboard.nodig.com/subscription/dashboard-analytics","input":[],"user":""} \n"
    ]
    
/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Logger.php
                    'level_name' => $levelName,
                    'channel' => $this->name,
                    'datetime' => new DateTimeImmutable($this->microsecondTimestamps, $this->timezone),
                    'extra' => [],
                ];
 
                try {
                    foreach ($this->processors as $processor) {
                        $record = $processor($record);
                    }
                } catch (Throwable $e) {
                    $this->handleException($e, $record);
 
                    return true;
                }
            }
 
            // once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
            try {
                if (true === $handler->handle($record)) {
                    break;
                }
            } catch (Throwable $e) {
                $this->handleException($e, $record);
 
                return true;
            }
        }
 
        return null !== $record;
    }
 
    /**
     * Ends a log cycle and frees all resources used by handlers.
     *
     * Closing a Handler means flushing all buffers and freeing any open resources/handles.
     * Handlers that have been closed should be able to accept log records again and re-open
     * themselves on demand, but this may not always be possible depending on implementation.
     *
     * This is useful at the end of a request and will be called automatically on every handler
Arguments
  1. array:8 [
      "message" => "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      "context" => array:3 [
        "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
        "input" => []
        "user" => ""
      ]
      "level" => 200
      "level_name" => "INFO"
      "channel" => "prod"
      "datetime" => Monolog\DateTimeImmutable @1711655451 {#2042
        -useMicroseconds: true
        date: 2024-03-28 19:50:51.717117 UTC (+00:00)
      }
      "extra" => []
      "formatted" => "[2024-03-28 19:50:51] prod.INFO: The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied {"url":"https://dashboard.nodig.com/subscription/dashboard-analytics","input":[],"user":""} \n"
    ]
    
/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Logger.php
     *
     * @param string|Stringable $message The log message
     * @param mixed[]           $context The log context
     */
    public function debug($message, array $context = []): void
    {
        $this->addRecord(static::DEBUG, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the INFO level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param string|Stringable $message The log message
     * @param mixed[]           $context The log context
     */
    public function info($message, array $context = []): void
    {
        $this->addRecord(static::INFO, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the NOTICE level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param string|Stringable $message The log message
     * @param mixed[]           $context The log context
     */
    public function notice($message, array $context = []): void
    {
        $this->addRecord(static::NOTICE, (string) $message, $context);
    }
 
    /**
     * Adds a log record at the WARNING level.
     *
     * This method allows for compatibility with common interfaces.
     *
Arguments
  1. 200
    
  2. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  3. array:3 [
      "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
      "input" => []
      "user" => ""
    ]
    
/home/chatnodig411/public_html/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. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:3 [
      "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
      "input" => []
      "user" => ""
    ]
    
/home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function notice($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log an informational message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function info($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a debug message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function debug($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a message to the logs.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
Arguments
  1. "info"
    
  2. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  3. array:3 [
      "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
      "input" => []
      "user" => ""
    ]
    
/home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
     * @return void
     */
    public function notice($message, array $context = [])
    {
        $this->driver()->notice($message, $context);
    }
 
    /**
     * Interesting events.
     *
     * Example: User logs in, SQL logs.
     *
     * @param  string  $message
     * @param  array  $context
     *
     * @return void
     */
    public function info($message, array $context = [])
    {
        $this->driver()->info($message, $context);
    }
 
    /**
     * Detailed debug information.
     *
     * @param  string  $message
     * @param  array  $context
     *
     * @return void
     */
    public function debug($message, array $context = [])
    {
        $this->driver()->debug($message, $context);
    }
 
    /**
     * Logs with an arbitrary level.
     *
     * @param  mixed  $level
     * @param  string  $message
Arguments
  1. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:3 [
      "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
      "input" => []
      "user" => ""
    ]
    
/home/chatnodig411/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php
    }
 
    /**
     * Handle dynamic, static calls to the object.
     *
     * @param  string  $method
     * @param  array  $args
     * @return mixed
     *
     * @throws \RuntimeException
     */
    public static function __callStatic($method, $args)
    {
        $instance = static::getFacadeRoot();
 
        if (! $instance) {
            throw new RuntimeException('A facade root has not been set.');
        }
 
        return $instance->$method(...$args);
    }
}
 
Arguments
  1. "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
    
  2. array:3 [
      "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
      "input" => []
      "user" => ""
    ]
    
/home/chatnodig411/public_html/app/Exceptions/Handler.php
     *
     * @var array
     */
    protected $dontFlash = [
        'password',
        'password_confirmation',
    ];
 
    /**
     * Report or log an exception.
     *
     * @param  \Exception  $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        Log::info($exception->getMessage(), [
          'url' => Request::url(),
          'input' => Request::all(),
          'user' => Auth::check() ? json_encode(Auth::user()) : ''
        ]);
        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)
    {
        return parent::render($request, $exception);
    }
}
 
Arguments
  1. "info"
    
  2. array:2 [
      0 => "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      1 => array:3 [
        "url" => "https://dashboard.nodig.com/subscription/dashboard-analytics"
        "input" => []
        "user" => ""
      ]
    ]
    
/home/chatnodig411/public_html/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 {
            self::$reservedMemory = null;
 
            $this->getExceptionHandler()->report($e);
        } catch (Exception $e) {
            //
        }
 
        if ($this->app->runningInConsole()) {
            $this->renderForConsole($e);
        } else {
            $this->renderHttpResponse($e);
        }
    }
 
    /**
     * Render an exception to the console.
     *
     * @param  \Exception  $e
     * @return void
     */
    protected function renderForConsole(Exception $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
Arguments
  1. UnexpectedValueException {#1718
      #message: "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      #code: 0
      #file: "/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
      #line: 142
    }
    
[internal]
Arguments
  1. UnexpectedValueException {#1718
      #message: "The stream or file "/home/chatnodig411/public_html/storage/logs/laravel-2024-03-28.log" could not be opened in append mode: failed to open stream: Permission denied"
      #code: 0
      #file: "/home/chatnodig411/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php"
      #line: 142
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
USER
"chatnodig411"
HOME
"/home/chatnodig411"
SCRIPT_NAME
"/public/index.php"
REQUEST_URI
"/subscription/dashboard-analytics"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.0"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/public/subscription/dashboard-analytics"
REMOTE_PORT
"60786"
SCRIPT_FILENAME
"/home/chatnodig411/public_html/public/index.php"
SERVER_ADMIN
"[email protected]"
CONTEXT_DOCUMENT_ROOT
"/home/chatnodig411/public_html"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/home/chatnodig411/public_html"
REMOTE_ADDR
"209.182.200.11"
SERVER_PORT
"443"
SERVER_ADDR
"209.182.200.11"
SERVER_NAME
"dashboard.nodig.com"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
HTTP_X_HTTPS
"1"
HTTP_CF_CONNECTING_IP
"3.238.195.81"
HTTP_USER_AGENT
"claudebot"
HTTP_ACCEPT
"*/*"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_RAY
"86ba26cb7963204b-IAD"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CONNECTION
"close"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_HOST
"dashboard.nodig.com"
HTTP_X_REAL_IP
"3.238.195.81"
HTTP_X_FORWARDED_FOR
"3.238.195.81, 3.238.195.81"
proxy-nokeepalive
"1"
SSL_TLS_SNI
"dashboard.nodig.com"
HTTPS
"on"
SCRIPT_URI
"https://dashboard.nodig.com/subscription/dashboard-analytics"
SCRIPT_URL
"/subscription/dashboard-analytics"
UNIQUE_ID
"ZgXKGwfWiuN_Wvq9COmLtAAAAAI"
REDIRECT_STATUS
"200"
REDIRECT_SSL_TLS_SNI
"dashboard.nodig.com"
REDIRECT_HTTPS
"on"
REDIRECT_SCRIPT_URI
"https://dashboard.nodig.com/subscription/dashboard-analytics"
REDIRECT_SCRIPT_URL
"/subscription/dashboard-analytics"
REDIRECT_UNIQUE_ID
"ZgXKGwfWiuN_Wvq9COmLtAAAAAI"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_REDIRECT_SSL_TLS_SNI
"dashboard.nodig.com"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SCRIPT_URI
"https://dashboard.nodig.com/subscription/dashboard-analytics"
REDIRECT_REDIRECT_SCRIPT_URL
"/subscription/dashboard-analytics"
REDIRECT_REDIRECT_UNIQUE_ID
"ZgXKGwfWiuN_Wvq9COmLtAAAAAI"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1711655451.6881
REQUEST_TIME
1711655451
argv
[]
argc
0
APP_NAME
"NoDig.com"
APP_ENV
"prod"
APP_KEY
"base64:NViYV/QJnmAptNDnxydOn77xQrUgSiAv82eXo7qktBA="
APP_DEBUG
"true"
APP_URL
"https://dashboard.nodig.com"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"chatnodig411_userdb"
DB_USERNAME
"chatnodig411_userdb"
DB_PASSWORD
"9ieSndXub0A5hNVo%!X"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"nodig133_NoDig"
DB_USERNAME_SECOND
"nodig133_NoDig"
DB_PASSWORD_SECOND
"zH&jZ0fZTLiu"
BROADCAST_DRIVER
"pusher"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"525600"
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"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
"978209"
PUSHER_APP_KEY
"416504b63b782c1c9bf3"
PUSHER_APP_SECRET
"e40535096229c86822d9"
PUSHER_APP_CLUSTER
"us3"
MIX_PUSHER_APP_KEY
"416504b63b782c1c9bf3"
MIX_PUSHER_APP_CLUSTER
"us3"
MIX_CONTENT_DIRECTION
"ltr"
STRIPE_KEY
"pk_live_518fEmXK5sv5zdzb54yLpIokymHEEtr0jv5Z53SZEPsRBLlE7miG7kPHxX5rPlh7th4XNlzhOaTmvBvcoJl9VnHjn00ul2phT1n"
STRIPE_SECRET
"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"
CONSTANT_APPLICATION
"Real Time Marketing"
CONSTANT_KEY
"5dyuj7s2nn64ndhhw2fv47db"
CONSTANT_SECRET
"KGm6mRcEhAgqmwm7HwGpw79J"
CONSTANT_ACCESS_TOKEN
"18acf358-7879-4165-aa7a-6915cb3b4d29"
CONSTANT_CONTACT_LIST
"1547022838"
FIREBASE_CREDENTIALS_RTR
"/home/chatnodig411/public_html/resources/keys/rtr-dash-demo-221116-24ca14ea0a07.json"
FIREBASE_CREDENTIALS_RTC
"/home/chatnodig411/public_html/resources/keys/realtimechat-72615-771938ce8a4f.json"
Key Value
APP_NAME
"NoDig.com"
APP_ENV
"prod"
APP_KEY
"base64:NViYV/QJnmAptNDnxydOn77xQrUgSiAv82eXo7qktBA="
APP_DEBUG
"true"
APP_URL
"https://dashboard.nodig.com"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"chatnodig411_userdb"
DB_USERNAME
"chatnodig411_userdb"
DB_PASSWORD
"9ieSndXub0A5hNVo%!X"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"nodig133_NoDig"
DB_USERNAME_SECOND
"nodig133_NoDig"
DB_PASSWORD_SECOND
"zH&jZ0fZTLiu"
BROADCAST_DRIVER
"pusher"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"525600"
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"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
"978209"
PUSHER_APP_KEY
"416504b63b782c1c9bf3"
PUSHER_APP_SECRET
"e40535096229c86822d9"
PUSHER_APP_CLUSTER
"us3"
MIX_PUSHER_APP_KEY
"416504b63b782c1c9bf3"
MIX_PUSHER_APP_CLUSTER
"us3"
MIX_CONTENT_DIRECTION
"ltr"
STRIPE_KEY
"pk_live_518fEmXK5sv5zdzb54yLpIokymHEEtr0jv5Z53SZEPsRBLlE7miG7kPHxX5rPlh7th4XNlzhOaTmvBvcoJl9VnHjn00ul2phT1n"
STRIPE_SECRET
"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"
CONSTANT_APPLICATION
"Real Time Marketing"
CONSTANT_KEY
"5dyuj7s2nn64ndhhw2fv47db"
CONSTANT_SECRET
"KGm6mRcEhAgqmwm7HwGpw79J"
CONSTANT_ACCESS_TOKEN
"18acf358-7879-4165-aa7a-6915cb3b4d29"
CONSTANT_CONTACT_LIST
"1547022838"
FIREBASE_CREDENTIALS_RTR
"/home/chatnodig411/public_html/resources/keys/rtr-dash-demo-221116-24ca14ea0a07.json"
FIREBASE_CREDENTIALS_RTC
"/home/chatnodig411/public_html/resources/keys/realtimechat-72615-771938ce8a4f.json"
0. Whoops\Handler\PrettyPageHandler