Fatal error: Uncaught RedisException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php:69 Stack trace: #0 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(69): Redis->setex('bc_account_6906...', 86400, 'O:7:"Account":2...') #1 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(53): Cache::Set('bc_account_6906...', 'O:7:"Account":2...', 86400) #2 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(764): Cache::SetObject('bc_account_6906...', Object(Account), 86400) #3 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(657): BaseClass->cacheSet() #4 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(672): BaseClass->findNew(69060, Ar in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php on line 69
Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_ERROR)
Uncaught RedisException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php:69 Stack trace: #0 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(69): Redis->setex('bc_account_6906...', 86400, 'O:7:"Account":2...') #1 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(53): Cache::Set('bc_account_6906...', 'O:7:"Account":2...', 86400) #2 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(764): Cache::SetObject('bc_account_6906...', Object(Account), 86400) #3 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(657): BaseClass->cacheSet() #4 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(672): BaseClass->findNew(69060, Ar Whoops\Exception\ErrorException thrown with message "Uncaught RedisException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php:69 Stack trace: #0 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(69): Redis->setex('bc_account_6906...', 86400, 'O:7:"Account":2...') #1 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(53): Cache::Set('bc_account_6906...', 'O:7:"Account":2...', 86400) #2 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(764): Cache::SetObject('bc_account_6906...', Object(Account), 86400) #3 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(657): BaseClass->cacheSet() #4 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(672): BaseClass->findNew(69060, Ar" Stacktrace: #0 Whoops\Exception\ErrorException in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php:69
Stack frames (1)
0
Whoops
\
Exception
\
ErrorException
/
home
/
deploy
/
EHungry-8-simon
/
Web
/
classes
/
Cache.class.php
69
/
home
/
deploy
/
EHungry-8-simon
/
Web
/
classes
/
Cache.class.php
    }
 
    public static function SetObject($key, $var, $expire = 86400) {
        return static::Set($key, serialize($var), $expire);
    }
 
    public static function SetArray($key, $var, $expire = 86400) {
        return static::Set($key, serialize($var), $expire);
    }
 
    public static function SetBoolean($key, $var, $expire = 86400) {
        return static::Set($key, serialize($var), $expire);
    }
 
    public static function Set($key, $var, $expire = 86400) {
        App::debugbarLog('debug', "Cache set: $key");
        if ($i = static::getInstance()) {
            $var = static::beforeSet($var);
            return $expire > 0?
                $i->setEx($key, $expire, $var) :
                $i->set($key, $var);
        }
        return null;
    }
 
    public static function Exists(...$key):?bool {
        if ($i = static::getInstance()) {
            return $i->exists($key);
        }
        return null;
    }
 
    public static function Expire($key, $ttl) {
        if ($i = static::getInstance()) {
            return $i->expire($key, $ttl);
        }
        return false;
    }
 
    /**
Arguments
  1. """
    Uncaught RedisException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. in /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php:69\n
    Stack trace:\n
    #0 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(69): Redis->setex('bc_account_6906...', 86400, 'O:7:"Account":2...')\n
    #1 /home/deploy/EHungry-8-simon/Web/classes/Cache.class.php(53): Cache::Set('bc_account_6906...', 'O:7:"Account":2...', 86400)\n
    #2 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(764): Cache::SetObject('bc_account_6906...', Object(Account), 86400)\n
    #3 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(657): BaseClass->cacheSet()\n
    #4 /home/deploy/EHungry-8-simon/Web/classes/BaseClass.class.php(672): BaseClass->findNew(69060, Ar
    """
    

Environment & details:

Key Value
aid
"restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
empty
empty
Key Value
PHPSESSID
"t43kq9dg05rs7qhtsog7so3khr"
Key Value
loc
"en_US"
customer_account_id
69060
Key Value
UNIQUE_ID
"aBGlZEYq_rlB8rsEv_VnMAAAAA8"
SCRIPT_URL
"/restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
SCRIPT_URI
"http://www.springroll.com.8.simon.ehungry.net/restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
HTTP_HOST
"www.springroll.com.8.simon.ehungry.net"
HTTP_X_REAL_IP
"3.139.85.192"
HTTP_X_FORWARDED_FOR
"3.139.85.192"
HTTP_X_CONFKEY
"Main_Domain:6462"
HTTP_SCHEME
"https"
HTTP_EHENV
"TODO"
HTTP_CONNECTION
"close"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_COOKIE
"PHPSESSID=t43kq9dg05rs7qhtsog7so3khr"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.62 () mod_wsgi/4.6.5 Python/3.7 PHP/7.2.34"
SERVER_NAME
"www.springroll.com.8.simon.ehungry.net"
SERVER_ADDR
"127.0.0.1"
SERVER_PORT
"80"
REMOTE_ADDR
"127.0.0.1"
DOCUMENT_ROOT
"/home/deploy/EHungry-8-simon/Web"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/deploy/EHungry-8-simon/Web"
SERVER_ADMIN
"root@localhost"
SCRIPT_FILENAME
"/home/deploy/EHungry-8-simon/Web/index.php"
REMOTE_PORT
"58768"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
"aid=restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
REQUEST_URI
"/restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
SCRIPT_NAME
"/restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
PHP_SELF
"/restaurant/cheungsgardendeerpark/order/main/combination-plates/c27-beef-w-black-bean-sauce"
REQUEST_TIME_FLOAT
1745986916.02
REQUEST_TIME
1745986916
empty
0. Whoops\Handler\PrettyPageHandler

Fatal error: Uncaught RedisException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. in [no active file]:0 Stack trace: #0 {main} thrown in [no active file] on line 0