MedAsia Cabs

Sign into your eatontime account

Another system built by Pickleseed

Whoops! There was an error.
Predis \ Response \ ServerException
MISCONF Errors writing to the AOF file: No space left on device Predis\Response\ServerException thrown with message "MISCONF Errors writing to the AOF file: No space left on device" Stacktrace: #12 Predis\Response\ServerException in /srv/app/vendor/predis/predis/src/Client.php:370 #11 Predis\Client:onErrorResponse in /srv/app/vendor/predis/predis/src/Client.php:335 #10 Predis\Client:executeCommand in /srv/app/vendor/predis/predis/src/Client.php:314 #9 Predis\Client:__call in /srv/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/Connection.php:96 #8 Illuminate\Redis\Connections\Connection:command in /srv/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/Connection.php:108 #7 Illuminate\Redis\Connections\Connection:__call in /srv/app/vendor/laravel/framework/src/Illuminate/Cache/RedisStore.php:93 #6 Illuminate\Cache\RedisStore:put in /srv/app/vendor/laravel/framework/src/Illuminate/Cache/Repository.php:195 #5 Illuminate\Cache\Repository:put in /srv/app/vendor/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php:66 #4 Illuminate\Session\CacheBasedSessionHandler:write in /srv/app/vendor/laravel/framework/src/Illuminate/Session/Store.php:128 #3 Illuminate\Session\Store:save in /srv/app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #2 Illuminate\Session\Middleware\StartSession:terminate in /srv/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /srv/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #0 Illuminate\Foundation\Http\Kernel:terminate in /srv/app/public/index.php:60
12
Predis
\
Response
\
ServerException
/
vendor
/
predis
/
predis
/
src
/
Client.php
370
11
Predis
\
Client
onErrorResponse
/
vendor
/
predis
/
predis
/
src
/
Client.php
335
10
Predis
\
Client
executeCommand
/
vendor
/
predis
/
predis
/
src
/
Client.php
314
9
Predis
\
Client
__call
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Redis
/
Connections
/
Connection.php
96
8
Illuminate
\
Redis
\
Connections
\
Connection
command
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Redis
/
Connections
/
Connection.php
108
7
Illuminate
\
Redis
\
Connections
\
Connection
__call
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
RedisStore.php
93
6
Illuminate
\
Cache
\
RedisStore
put
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
Repository.php
195
5
Illuminate
\
Cache
\
Repository
put
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
CacheBasedSessionHandler.php
66
4
Illuminate
\
Session
\
CacheBasedSessionHandler
write
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
128
3
Illuminate
\
Session
\
Store
save
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
87
2
Illuminate
\
Session
\
Middleware
\
StartSession
terminate
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
218
1
Illuminate
\
Foundation
\
Http
\
Kernel
terminateMiddleware
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
189
0
Illuminate
\
Foundation
\
Http
\
Kernel
terminate
/
public
/
index.php
60
/
srv
/
app
/
vendor
/
predis
/
predis
/
src
/
Client.php
     *
     * @return mixed
     */
    protected function onErrorResponse(CommandInterface $command, ErrorResponseInterface $response)
    {
        if ($command instanceof ScriptCommand && $response->getErrorType() === 'NOSCRIPT') {
            $eval = $this->createCommand('EVAL');
            $eval->setRawArguments($command->getEvalArguments());
 
            $response = $this->executeCommand($eval);
 
            if (!$response instanceof ResponseInterface) {
                $response = $command->parseResponse($response);
            }
 
            return $response;
        }
 
        if ($this->options->exceptions) {
            throw new ServerException($response->getMessage());
        }
 
        return $response;
    }
 
    /**
     * Executes the specified initializer method on `$this` by adjusting the
     * actual invokation depending on the arity (0, 1 or 2 arguments). This is
     * simply an utility method to create Redis contexts instances since they
     * follow a common initialization path.
     *
     * @param string $initializer Method name.
     * @param array  $argv        Arguments for the method.
     *
     * @return mixed
     */
    private function sharedContextFactory($initializer, $argv = null)
    {
        switch (count($argv)) {
            case 0:
Arguments
  1. "MISCONF Errors writing to the AOF file: No space left on device"
    
/
srv
/
app
/
vendor
/
predis
/
predis
/
src
/
Client.php
    }
 
    /**
     * {@inheritdoc}
     */
    public function createCommand($commandID, $arguments = array())
    {
        return $this->profile->createCommand($commandID, $arguments);
    }
 
    /**
     * {@inheritdoc}
     */
    public function executeCommand(CommandInterface $command)
    {
        $response = $this->connection->executeCommand($command);
 
        if ($response instanceof ResponseInterface) {
            if ($response instanceof ErrorResponseInterface) {
                $response = $this->onErrorResponse($command, $response);
            }
 
            return $response;
        }
 
        return $command->parseResponse($response);
    }
 
    /**
     * Handles -ERR responses returned by Redis.
     *
     * @param CommandInterface       $command  Redis command that generated the error.
     * @param ErrorResponseInterface $response Instance of the error response.
     *
     * @throws ServerException
     *
     * @return mixed
     */
    protected function onErrorResponse(CommandInterface $command, ErrorResponseInterface $response)
    {
Arguments
  1. StringSetExpire {}
    
  2. Error {}
    
/
srv
/
app
/
vendor
/
predis
/
predis
/
src
/
Client.php
        );
 
        if ($response instanceof ResponseInterface) {
            if ($response instanceof ErrorResponseInterface) {
                $error = true;
            }
 
            return (string) $response;
        }
 
        return $response;
    }
 
    /**
     * {@inheritdoc}
     */
    public function __call($commandID, $arguments)
    {
        return $this->executeCommand(
            $this->createCommand($commandID, $arguments)
        );
    }
 
    /**
     * {@inheritdoc}
     */
    public function createCommand($commandID, $arguments = array())
    {
        return $this->profile->createCommand($commandID, $arguments);
    }
 
    /**
     * {@inheritdoc}
     */
    public function executeCommand(CommandInterface $command)
    {
        $response = $this->connection->executeCommand($command);
 
        if ($response instanceof ResponseInterface) {
            if ($response instanceof ErrorResponseInterface) {
Arguments
  1. StringSetExpire {}
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Redis
/
Connections
/
Connection.php
     *
     * @param  array|string  $channels
     * @param  \Closure  $callback
     * @return void
     */
    public function psubscribe($channels, Closure $callback)
    {
        return $this->createSubscription($channels, $callback, __FUNCTION__);
    }
 
    /**
     * Run a command against the Redis database.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     */
    public function command($method, array $parameters = [])
    {
        return $this->client->{$method}(...$parameters);
    }
 
    /**
     * Pass other method calls down to the underlying client.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return $this->command($method, $parameters);
    }
}
 
Arguments
  1. "setex"
    
  2. array:3 [
      0 => "laravel_cache:b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
      1 => 7200
      2 => "s:200:"a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}";"
    ]
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Redis
/
Connections
/
Connection.php
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     */
    public function command($method, array $parameters = [])
    {
        return $this->client->{$method}(...$parameters);
    }
 
    /**
     * Pass other method calls down to the underlying client.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return $this->command($method, $parameters);
    }
}
 
Arguments
  1. "setex"
    
  2. array:3 [
      0 => "laravel_cache:b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
      1 => 7200
      2 => "s:200:"a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}";"
    ]
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
RedisStore.php
 
        foreach ($values as $index => $value) {
            $results[$keys[$index]] = ! is_null($value) ? $this->unserialize($value) : null;
        }
 
        return $results;
    }
 
    /**
     * Store an item in the cache for a given number of minutes.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @param  float|int  $minutes
     * @return void
     */
    public function put($key, $value, $minutes)
    {
        $this->connection()->setex(
            $this->prefix.$key, (int) max(1, $minutes * 60), $this->serialize($value)
        );
    }
 
    /**
     * Store multiple items in the cache for a given number of minutes.
     *
     * @param  array  $values
     * @param  float|int  $minutes
     * @return void
     */
    public function putMany(array $values, $minutes)
    {
        $this->connection()->multi();
 
        foreach ($values as $key => $value) {
            $this->put($key, $value, $minutes);
        }
 
        $this->connection()->exec();
    }
Arguments
  1. "setex"
    
  2. array:3 [
      0 => "laravel_cache:b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
      1 => 7200
      2 => "s:200:"a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}";"
    ]
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
Repository.php
            $this->forget($key);
        });
    }
 
    /**
     * Store an item in the cache.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @param  \DateTimeInterface|\DateInterval|float|int  $minutes
     * @return void
     */
    public function put($key, $value, $minutes = null)
    {
        if (is_array($key)) {
            return $this->putMany($key, $value);
        }
 
        if (! is_null($minutes = $this->getMinutes($minutes))) {
            $this->store->put($this->itemKey($key), $value, $minutes);
 
            $this->event(new KeyWritten($key, $value, $minutes));
        }
    }
 
    /**
     * {@inheritdoc}
     */
    public function set($key, $value, $ttl = null)
    {
        $this->put($key, $value, $ttl);
    }
 
    /**
     * Store multiple items in the cache for a given number of minutes.
     *
     * @param  array  $values
     * @param  \DateTimeInterface|\DateInterval|float|int  $minutes
     * @return void
     */
Arguments
  1. "b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
    
  2. "a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. "120"
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
CacheBasedSessionHandler.php
     */
    public function close()
    {
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        return $this->cache->get($sessionId, '');
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        return $this->cache->put($sessionId, $data, $this->minutes);
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        return $this->cache->forget($sessionId);
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        return true;
    }
 
    /**
     * Get the underlying cache repository.
Arguments
  1. "b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
    
  2. "a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. "120"
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
Arguments
  1. "b6PlTS6nCfSr6bMtckSRu4i4862Iai7YBzpL4kwB"
    
  2. "a:3:{s:6:"_token";s:40:"q8Kl0lRouPUTX5Ibp0NfMc5c5RGTdeNgaOMLLFcz";s:9:"_previous";a:1:{s:3:"url";s:42:"http://stg.backoffice.medasia.com.mt/login";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
     * Get the session implementation from the manager.
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            list($name) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
    }
 
    /**
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/login"
      #requestUri: "/login"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/
srv
/
app
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/login"
      #requestUri: "/login"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/
srv
/
app
/
public
/
index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/login"
      #requestUri: "/login"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
REDIRECT_STATUS
"200"
HTTP_HOST
"stg.backoffice.medasia.com.mt"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_X_FORWARDED_FOR
"18.220.53.93"
HTTP_X_FORWARDED_HOST
"stg.backoffice.medasia.com.mt"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SERVER
"86f34e8b4b83"
HTTP_X_REAL_IP
"18.220.53.93"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.25 (Debian) Server at stg.backoffice.medasia.com.mt Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.25 (Debian)"
SERVER_NAME
"stg.backoffice.medasia.com.mt"
SERVER_ADDR
"172.23.0.12"
SERVER_PORT
"80"
REMOTE_ADDR
"172.23.0.8"
DOCUMENT_ROOT
"/srv/app/public"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/srv/app/public"
SERVER_ADMIN
"[no address given]"
SCRIPT_FILENAME
"/srv/app/public/index.php"
REMOTE_PORT
"49286"
REDIRECT_URL
"/login"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/login"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1727500933.559
REQUEST_TIME
1727500933
argv
[]
argc
0
APP_NAME
"Laravel"
APP_ENV
"production"
APP_KEY
"***************************************************"
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://stg.backoffice.medasia.com.mt"
APP_LOCALE
"Europe/Malta"
REDIRECT_HTTPS
"true"
PUBLIC_URL
"https://medasiacabs.com"
DB_CONNECTION
"mysql"
DB_HOST
"mysql"
DB_PORT
"3306"
DB_DATABASE
"eatontime"
DB_USERNAME
"root"
DB_PASSWORD
"********************"
POS_DB_CONNECTION
"mysql"
POS_DB_HOST
"mysql_pos"
POS_DB_PORT
"3306"
POS_DB_DATABASE
"positions"
POS_DB_USERNAME
"root"
POS_DB_PASSWORD
"PMm9fpcS2DgaULot5vBq"
NODE_DB_HOST
"mysql_pos"
NODE_DB_PORT
"3306"
NODE_DB_DATABASE
"eatontime"
NODE_DB_USERNAME
"root"
NODE_DB_PASSWORD
"PMm9fpcS2DgaULot5vBq"
BROADCAST_DRIVER
"redis"
CACHE_DRIVER
"redis"
SESSION_DRIVER
"redis"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"redis"
REDIS_HOST
"redis"
REDIS_PASSWORD
"****"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"e55124c5836094"
MAIL_PASSWORD
"**************"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
GOOGLE_MAPS_API_KEY
"AIzaSyCT77-Y_pYMfculav6mu3J9v-7-rUpYcZw"
GOOGLE_MAPS_STATIC_KEY
"AIzaSyCT77-Y_pYMfculav6mu3J9v-7-rUpYcZw"
SOCKET_URL
"https://stg.positions.medasia.com.mt"
AWS_ACCESS_KEY_ID
"AKIAJLRSY6TVKSTF7DQQ"
AWS_SECRET_ACCESS_KEY
"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"
AWS_DEFAULT_REGION
"eu-west-1"
AWS_BUCKET
"medasia-cabs"
PDF_BASE_URL
"http://stg.backoffice.medasia.com.mt"
TZ
"Europe/Rome"
TRANSACTIUM_URL
"https://psp.stg.transactium.com/hps"
TRANSACTIUM_MERCHANT_KEY
"twMAAEFFLMt6FBqtYA5H914R0g=="
TRANSACTIUM_MERCHANT_PRIVATE
"twMAAAxKvf/x8ZCNB+nkJqXSTw=="
Key Value
APACHE_LOG_DIR
"/var/log/apache2"
LANG
"C"
HOSTNAME
"6aae95c9e305"
APACHE_CONFDIR
"/etc/apache2"
APACHE_LOCK_DIR
"/var/lock/apache2"
PHPIZE_DEPS
"autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c"
GPG_KEYS
"1729F83938DA44E27BA0F4D3DBDB397470D12172 B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F"
PHP_EXTRA_CONFIGURE_ARGS
"--with-apxs2"
PHP_ASC_URL
"https://secure.php.net/get/php-7.2.0.tar.xz.asc/from/this/mirror"
PHP_CFLAGS
"-fstack-protector-strong -fpic -fpie -O2"
PHP_EXTRA_BUILD_DEPS
"apache2-dev"
PWD
"/var/www/html"
PHP_LDFLAGS
"-Wl,-O1 -Wl,--hash-style=both -pie"
APACHE_RUN_GROUP
"www-data"
APACHE_RUN_DIR
"/var/run/apache2"
PHP_INI_DIR
"/usr/local/etc/php"
PHP_URL
"https://secure.php.net/get/php-7.2.0.tar.xz/from/this/mirror"
APACHE_ENVVARS
"/etc/apache2/envvars"
PHP_CPPFLAGS
"-fstack-protector-strong -fpic -fpie -O2"
APACHE_RUN_USER
"www-data"
PHP_VERSION
"7.2.0"
APACHE_PID_FILE
"/var/run/apache2/apache2.pid"
SHLVL
"0"
REGISTRY_HTTP_HOST
"https://stg.backoffice.medasia.com.mt"
PHP_MD5
""
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHP_SHA256
"87572a6b924670a5d4aac276aaa4a94321936283df391d702c845ffc112db095"
REGISTRY_HTTP_ADDR
"0.0.0.0:8443"
APP_NAME
"Laravel"
APP_ENV
"production"
APP_KEY
"***************************************************"
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://stg.backoffice.medasia.com.mt"
APP_LOCALE
"Europe/Malta"
REDIRECT_HTTPS
"true"
PUBLIC_URL
"https://medasiacabs.com"
DB_CONNECTION
"mysql"
DB_HOST
"mysql"
DB_PORT
"3306"
DB_DATABASE
"eatontime"
DB_USERNAME
"root"
DB_PASSWORD
"********************"
POS_DB_CONNECTION
"mysql"
POS_DB_HOST
"mysql_pos"
POS_DB_PORT
"3306"
POS_DB_DATABASE
"positions"
POS_DB_USERNAME
"****"
POS_DB_PASSWORD
"********************"
NODE_DB_HOST
"mysql_pos"
NODE_DB_PORT
"3306"
NODE_DB_DATABASE
"eatontime"
NODE_DB_USERNAME
"****"
NODE_DB_PASSWORD
"********************"
BROADCAST_DRIVER
"redis"
CACHE_DRIVER
"redis"
SESSION_DRIVER
"redis"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"redis"
REDIS_HOST
"redis"
REDIS_PASSWORD
"****"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"e55124c5836094"
MAIL_PASSWORD
"**************"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
GOOGLE_MAPS_API_KEY
"AIzaSyCT77-Y_pYMfculav6mu3J9v-7-rUpYcZw"
GOOGLE_MAPS_STATIC_KEY
"***************************************"
SOCKET_URL
"https://stg.positions.medasia.com.mt"
AWS_ACCESS_KEY_ID
"********************"
AWS_SECRET_ACCESS_KEY
"****************************************"
AWS_DEFAULT_REGION
"eu-west-1"
AWS_BUCKET
"************"
PDF_BASE_URL
"http://stg.backoffice.medasia.com.mt"
TZ
"Europe/Rome"
TRANSACTIUM_URL
"***********************************"
TRANSACTIUM_MERCHANT_KEY
"****************************"
TRANSACTIUM_MERCHANT_PRIVATE
"****************************"
0. Whoops\Handler\PrettyPageHandler