Prihlásenie
Zabudnuté heslo
+421 944 078 245
v prac. dňoch 9:00 - 17:00
v prac. dňoch 9:00 - 17:00
"The stream or file "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Read-only file system ◀"
*
* @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)
{
0 of 0array:8 [▶ "message" => "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" "context" => array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ] "level" => 400 "level_name" => "ERROR" "channel" => "production" "datetime" => DateTime @1743681974 {▶ : 2025-04-03 14:06:14.439324 Europe/Bratislava (+02:00) } "extra" => [] "formatted" => """ [2025-04-03 14:06:14] production.ERROR: file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system {"exception":"[object] (ErrorException(code: 0): file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system at /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n ◀ [stacktrace]\n #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/data/6/0/60816...', 122, Array)\n #1 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/data/6/0/60816...', 'a:4:{s:6:\"_toke...', 2)\n ◀ #2 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/data/6/0/60816...', 'a:4:{s:6:\"_toke...', true)\n ◀ #3 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('MEX8DJFLcwKHr2l...', 'a:4:{s:6:\"_toke...')\n ◀ #4 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n ◀ #5 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/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 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/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 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n ◀ #8 {main}\n "} \n """ ]
}
$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
0 of 0array:8 [▶ "message" => "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" "context" => array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ] "level" => 400 "level_name" => "ERROR" "channel" => "production" "datetime" => DateTime @1743681974 {▶ : 2025-04-03 14:06:14.439324 Europe/Bratislava (+02:00) } "extra" => [] "formatted" => """ [2025-04-03 14:06:14] production.ERROR: file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system {"exception":"[object] (ErrorException(code: 0): file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system at /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n ◀ [stacktrace]\n #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/data/6/0/60816...', 122, Array)\n #1 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/data/6/0/60816...', 'a:4:{s:6:\"_toke...', 2)\n ◀ #2 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/data/6/0/60816...', 'a:4:{s:6:\"_toke...', true)\n ◀ #3 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('MEX8DJFLcwKHr2l...', 'a:4:{s:6:\"_toke...')\n ◀ #4 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n ◀ #5 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/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 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/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 /data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n ◀ #8 {main}\n "} \n """ ]
* @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.
400
"file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀"
0 of 0array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ]
* @return void
*/
public function write($level, $message, array $context = [])
{
$this->writeLog($level, $message, $context);
}
/**
* Write a message to Monolog.
*
* @param string $level
* @param string $message
* @param array $context
* @return void
*/
protected function writeLog($level, $message, $context)
{
$this->fireLogEvent($level, $message = $this->formatMessage($message), $context);
$this->monolog->{$level}($message, $context);
}
/**
* Register a file log handler.
*
* @param string $path
* @param string $level
* @return void
*/
public function useFiles($path, $level = 'debug')
{
$this->monolog->pushHandler($handler = new StreamHandler($path, $this->parseLevel($level)));
$handler->setFormatter($this->getDefaultFormatter());
}
/**
* Register a daily file log handler.
*
* @param string $path
"file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀"
0 of 0array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ]
*
* @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
"error"
"file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀"
0 of 0array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ]
*/
public function report(Exception $e)
{
if ($this->shouldntReport($e)) {
return;
}
if (method_exists($e, 'report')) {
return $e->report();
}
try {
$logger = $this->container->make(LoggerInterface::class);
} catch (Exception $ex) {
throw $e; // throw the original exception
}
$logger->error(
$e->getMessage(),
array_merge($this->context(), ['exception' => $e]
));
}
/**
* Determine if the exception should be reported.
*
* @param \Exception $e
* @return bool
*/
public function shouldReport(Exception $e)
{
return ! $this->shouldntReport($e);
}
/**
* Determine if the exception is in the "do not report" list.
*
* @param \Exception $e
* @return bool
*/
"file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀"
0 of 0array:1 [▶ "exception" => ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING } ]
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* 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)
{
return parent::render($request, $exception);
}
}
0 of 0ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING }
}
/**
* 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);
0 of 0ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING }
0 of 0ErrorException {▶ #message: "file_put_contents(/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/storage/framework/sessions/MEX8DJFLcwKHr2l2sp0k4Woh2SFK9L5JXQ9uvyNx): failed to open stream: Read-only file system ◀" #code: 0 #file: "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php" #line: 122 #severity: E_WARNING }
Key | Value |
page | "6"
|
Key | Value |
REDIRECT_REDIRECT_HTTPS | "on"
|
REDIRECT_REDIRECT_GEOIP_COUNTRY_CODE | "US"
|
REDIRECT_REDIRECT_UNIQUE_ID | "Z-55tjdjOtTesHrGY2R-4AAAAAY"
|
REDIRECT_REDIRECT_DOCROOT | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/"
|
REDIRECT_REDIRECT_filter-errordocs | "" |
REDIRECT_REDIRECT_STATUS | "200"
|
REDIRECT_HTTPS | "on"
|
REDIRECT_GEOIP_COUNTRY_CODE | "US"
|
REDIRECT_UNIQUE_ID | "Z-55tjdjOtTesHrGY2R-4AAAAAY"
|
REDIRECT_DOCROOT | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/"
|
REDIRECT_filter-errordocs | "" |
REDIRECT_STATUS | "200"
|
HTTPS | "on"
|
GEOIP_COUNTRY_CODE | "US"
|
UNIQUE_ID | "Z-55tjdjOtTesHrGY2R-4AAAAAY"
|
DOCROOT | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/"
|
filter-errordocs | "" |
HTTP_HOST | "adina.sk"
|
HTTP_X_REAL_IP | "18.191.4.164"
|
HTTP_X_FORWARDED_FOR | "18.191.4.164, 18.191.4.164"
|
HTTP_X_FORWARDED_PROTO | "https"
|
HTTP_HTTPS | "1"
|
HTTP_X_PROXY_IP | "10.20.6.1"
|
HTTP_PRAGMA | "no-cache"
|
HTTP_CACHE_CONTROL | "no-cache"
|
HTTP_SEC_CH_UA | ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129""
|
HTTP_SEC_CH_UA_MOBILE | "?0"
|
HTTP_SEC_CH_UA_PLATFORM | ""Windows""
|
HTTP_UPGRADE_INSECURE_REQUESTS | "1"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
|
HTTP_SEC_FETCH_SITE | "none"
|
HTTP_SEC_FETCH_MODE | "navigate"
|
HTTP_SEC_FETCH_USER | "?1"
|
HTTP_SEC_FETCH_DEST | "document"
|
HTTP_ACCEPT_ENCODING | "gzip, deflate, br, zstd"
|
HTTP_PRIORITY | "u=0, i"
|
HTTP_WS_GEO_COUNTRY | "US"
|
HTTP_MAX_FORWARDS | "7"
|
HTTP_X_FORWARDED_HOST | "adina.sk"
|
HTTP_X_FORWARDED_SERVER | "adina.sk"
|
HTTP_CONNECTION | "close"
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
SERVER_SIGNATURE | "" |
SERVER_SOFTWARE | "Apache"
|
SERVER_NAME | "adina.sk"
|
SERVER_ADDR | "127.0.0.1"
|
SERVER_PORT | "443"
|
REMOTE_ADDR | "18.191.4.164"
|
DOCUMENT_ROOT | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/"
|
REQUEST_SCHEME | "https"
|
CONTEXT_PREFIX | "" |
CONTEXT_DOCUMENT_ROOT | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/"
|
SERVER_ADMIN | "admin@websupport.sk"
|
SCRIPT_FILENAME | "/data/6/0/60816456-a385-48bd-907d-982bcfcba090/adina.sk/web/public/index.php"
|
REMOTE_PORT | "45756"
|
REDIRECT_URL | "/public/kategoria/prakticke-zazitky"
|
REDIRECT_QUERY_STRING | "page=6"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
REQUEST_METHOD | "GET"
|
QUERY_STRING | "page=6"
|
REQUEST_URI | "/kategoria/prakticke-zazitky?page=6"
|
SCRIPT_NAME | "/public/index.php"
|
PHP_SELF | "/public/index.php"
|
REQUEST_TIME_FLOAT | 1743681974.1
|
REQUEST_TIME | 1743681974
|
argv |
|
argc | 1
|
APP_NAME | "Adina"
|
APP_ENV | "production"
|
APP_KEY | "base64:UcUtxN4YRzKDlEREQUdi5KT889+QfjAb8BHlr6Vro60="
|
APP_DEBUG | "true"
|
APP_LOG_LEVEL | "debug"
|
APP_URL | "https://www.adina.sk"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "mysql57.websupport.sk"
|
DB_PORT | "3311"
|
DB_DATABASE | "adina_db"
|
DB_USERNAME | "adina_db"
|
DB_PASSWORD | "Qh43@C$@Pi"
|
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.websupport.sk"
|
MAIL_PORT | "465"
|
MAIL_USERNAME | "smtp@adina.sk"
|
MAIL_PASSWORD | "Mf0wI&]~J7"
|
MAIL_ENCRYPTION | "ssl"
|
MAIL_FROM_ADDRESS | "no-reply@adina.sk"
|
MAIL_OWNER_INFO | "vouchers@adina.sk"
|
MAIL_RESERVATION_INFO | "rezervacie@adina.sk"
|
MAIL_ORDER_INFO | "objednavky@adina.sk"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |
Key | Value |
APP_NAME | "Adina"
|
APP_ENV | "production"
|
APP_KEY | "base64:UcUtxN4YRzKDlEREQUdi5KT889+QfjAb8BHlr6Vro60="
|
APP_DEBUG | "true"
|
APP_LOG_LEVEL | "debug"
|
APP_URL | "https://www.adina.sk"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "mysql57.websupport.sk"
|
DB_PORT | "3311"
|
DB_DATABASE | "adina_db"
|
DB_USERNAME | "adina_db"
|
DB_PASSWORD | "Qh43@C$@Pi"
|
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.websupport.sk"
|
MAIL_PORT | "465"
|
MAIL_USERNAME | "smtp@adina.sk"
|
MAIL_PASSWORD | "Mf0wI&]~J7"
|
MAIL_ENCRYPTION | "ssl"
|
MAIL_FROM_ADDRESS | "no-reply@adina.sk"
|
MAIL_OWNER_INFO | "vouchers@adina.sk"
|
MAIL_RESERVATION_INFO | "rezervacie@adina.sk"
|
MAIL_ORDER_INFO | "objednavky@adina.sk"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |