Skip to content
THIS IS DEV LEVEL 6
Whoops! There was an error.
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. RedisException thrown with message "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." Stacktrace: #10 RedisException in /home/deploy/EHungry-6-boyan/Web/classes/Cache.class.php:69 #9 Redis:setex in /home/deploy/EHungry-6-boyan/Web/classes/Cache.class.php:69 #8 Cache:Set in /home/deploy/EHungry-6-boyan/Web/classes/Cache.class.php:53 #7 Cache:SetObject in /home/deploy/EHungry-6-boyan/Web/classes/HolidayHours.class.php:157 #6 HolidayHours:getByDateAndTypeAndRestaurantOrCategory in /home/deploy/EHungry-6-boyan/Web/classes/HolidayHours.class.php:102 #5 HolidayHours:getByDateAndRestaurantAndType in /home/deploy/EHungry-6-boyan/Web/classes/Restaurant.class.php:2630 #4 Restaurant:getAvailableDates in /home/deploy/EHungry-6-boyan/Web/classes/Restaurant.class.php:2720 #3 Restaurant:getOrderingDaysForAnyType in /home/deploy/EHungry-6-boyan/Web/lib/global.php:1009 #2 isOrderingClosed in /home/deploy/EHungry-6-boyan/Web/templates4.0/customer/header.php:361 #1 include_once in /home/deploy/EHungry-6-boyan/Web/controllers/customer.php:867 #0 require in /home/deploy/EHungry-6-boyan/Web/index.php:30
Stack frames (11)
10
RedisException
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Cache.class.php
69
9
Redis
setex
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Cache.class.php
69
8
Cache
Set
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Cache.class.php
53
7
Cache
SetObject
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
HolidayHours.class.php
157
6
HolidayHours
getByDateAndTypeAndRestaurantOrCategory
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
HolidayHours.class.php
102
5
HolidayHours
getByDateAndRestaurantAndType
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Restaurant.class.php
2630
4
Restaurant
getAvailableDates
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Restaurant.class.php
2720
3
Restaurant
getOrderingDaysForAnyType
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
lib
/
global.php
1009
2
isOrderingClosed
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
templates4.0
/
customer
/
header.php
361
1
include_once
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
controllers
/
customer.php
867
0
require
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
index.php
30
/
home
/
deploy
/
EHungry-6-boyan
/
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. "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."
    
/
home
/
deploy
/
EHungry-6-boyan
/
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. "hh_2026-01-22 00:00:00_r11221_PICKUP_0"
    
  2. 86400
    
  3. "N;"
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Cache.class.php
    public static function getInstance() {
        if (static::$redisObj === null) {
            static::$redisObj = new Redis();
            try {
                if (!@static::$redisObj->connect(static::$host, (int)static::$port)) {
                    static::$redisObj = false;
                    Splunk::log(Splunk::LOG_REDIS_CONN, ['error' => 'Error connecting']);
                } else {
                    static::$redisObj->select(static::$db);
                }
            } catch (RedisException $e) {
                static::$redisObj = false;
                Splunk::log(Splunk::LOG_REDIS_CONN, ['error' => 'Error connecting: '.$e->getMessage()]);
            }
        }
        return static::$redisObj;
    }
 
    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;
    }
Arguments
  1. "hh_2026-01-22 00:00:00_r11221_PICKUP_0"
    
  2. "N;"
    
  3. 86400
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
HolidayHours.class.php
                }
            }
        } else {
            $sql = "SELECT id FROM ".HolidayHours::getTableName()." WHERE for_date = ? AND " .
                ($cid ? "category_id" : "restaurant_id") . " = ? AND order_type = ? $where ORDER BY id DESC";
            $db_conn->bindParameter($sql, 1, $date, "string");
            $db_conn->bindParameter($sql, 1, $rid, "integer");
            $db_conn->bindParameter($sql, 1, $type, "string");
            $result = $db_conn->query($sql);
            if ($result && $result->rowCount() > 0) {
                if ($row = $result->fetch()) {
                    $hh = new HolidayHours($row['id']);
                    Cache::SetObject($cacheKey, $hh);
                    return $hh;
                }
            }
        }
        
        if ($cacheKey) {
            Cache::SetObject($cacheKey, null);
        }
        return null;
    }
 
    public static function getByDateAndRestaurant($date, $rid) {
        $db_conn = DB::conn();
        $rbs = [];
        $sql = "SELECT id FROM ".HolidayHours::getTableName()." WHERE for_date = ? AND restaurant_id = ? ORDER BY id DESC";
        $db_conn->bindParameter($sql, 1, $date, "string");
        $db_conn->bindParameter($sql, 1, $rid, "integer");
        $result = $db_conn->query($sql);
        if ($result) {
            while ($row = $result->fetch()) {
                $rbs[] = new HolidayHours($row['id']);
            }
        }
        return $rbs;
    }
 
    public static function storeHours($holidayClosed, $forDate, $restaurantID, $holidayNotifications, $holidayOpenHour, $holidayOpenMinute, $holidayOpenMeridien, $holidayClosedHour, $holidayClosedMinute, $holidayClosedMeridien, $timeErrorMessage, $orderType, $namedHolidayID, $holidayDateRangeID, $categoryID = null, $isYearly = false, $showCategoryWhenClosed = false) {
Arguments
  1. "hh_2026-01-22 00:00:00_r11221_PICKUP_0"
    
  2. null
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
HolidayHours.class.php
        }
        if (!$time) {
            $time = $restaurant->getLocalTime();
        }
        $holidayHours = HolidayHours::getByDateAndCategoryAndType(date('Y-m-d 00:00:00', $time), $category->getId(), $orderType, $isHiddenToCustomers);
        if (is_object($holidayHours)) {
            return $holidayHours;
        }
        //check parent category too
        if ($category->parent_id) {
            $holidayHours = HolidayHours::getByDateAndCategoryAndType(date('Y-m-d 00:00:00', $time), $category->parent_id, $orderType, $isHiddenToCustomers);
            if (is_object($holidayHours)) {
                return $holidayHours;
            }
        }
        return false;
    }
 
    public static function getByDateAndRestaurantAndType($date, $rid, $type = 'PICKUP') {
        return HolidayHours::getByDateAndTypeAndRestaurantOrCategory($date, $rid, null, $type);
    }
 
    public static function getByDateAndCategoryAndType($date, $cid, $type = null, $isHiddenToCustomers = false) {
        return HolidayHours::getByDateAndTypeAndRestaurantOrCategory($date, null, $cid, $type, $isHiddenToCustomers);
    }
    
    public static function getByDateAndTypeAndRestaurantOrCategory($date, $rid = null, $cid = null, $type = 'PICKUP', $isHiddenToCustomers = false) {
        $db_conn = DB::conn();
        $cacheKey = 'hh_'.$date.'_'.($cid > 0 ? ('c'.$cid):('r'.$rid)).'_'.($type?:'ALL') . "_" . ($isHiddenToCustomers ? '1' : '0');
 
        $aObj = Cache::GetObject($cacheKey, true);
        if ($aObj || is_null($aObj)) {
            return $aObj;
        }
 
        $where = '';
        if ($cid) {
            $rid = $cid;
            if ($isHiddenToCustomers) {
                $where .= ' AND show_category_when_closed = 0';
Arguments
  1. "2026-01-22 00:00:00"
    
  2. 11221
    
  3. null
    
  4. "PICKUP"
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Restaurant.class.php
            if ($currentLocalTime < $todayTimestamp) {
                continue;
            }
 
            //Max number of days in advance of order ready date that a customer can place an order
            //max_advance_days + 2 because we want to be able to check for the hours going into the next day ie. midnight-4am (+1) and then look all the way until midnight (+2)
            $maxTime = strtotime(' +' . ($this->max_advance_days + 2) . ' days', $todayTimestamp);
            if ($currentLocalTime >= $maxTime && !$ignoreOrderingDaysLimit) {
                if (!($cart->getTimeSlotsEnabled($this, $orderType) && $this->asap_orders_only)) {
                    break;
                }
            }
 
            //closed days
            $closed = $this->{$orderTypeString.'closed_on_'.strtolower(getWeekdayName($today))};
 
            //disable days for holidays
            if (!$excludeClosedHours) {
                $holidayDate  = date('Y-m-d 00:00:00', $currentLocalTime);
                $holidayHours = HolidayHours::getByDateAndRestaurantAndType($holidayDate, $this->getId(), $orderType);
                if (is_object($holidayHours)) {
                    $closed = $holidayHours->getIsClosed();
                }
            }
 
            //disable days for when the cart items' category is closed
            $categories = $cart->getCartItemsCategories();
            foreach ($categories as $category) {
                $isCategoryHidden = ClosedHours::isCategoryDisabled($this, $category, $currentLocalTime, false, $orderType) || HolidayHours::isCategoryDisabled($this, $category, $currentLocalTime, false, $orderType);
                if ($isCategoryHidden) {
                    $closed = true;
                }
            }
 
            //ordering closed
            $closedUntil = $this->getLocalPublicOrderingClosedUntilText(true, $orderType);
            if ($closedUntil && strtotime(date('Y-m-d', $closedUntil)) > strtotime(date('Y-m-d', $currentLocalTime))) {
                $closed = true;
            }
 
Arguments
  1. "2026-01-22 00:00:00"
    
  2. 11221
    
  3. "PICKUP"
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
classes
/
Restaurant.class.php
     * @param bool $ignoreDaysLimit
     * @param Menu[] $menus
     * @return array
     * @throws Exception
     */
    public function getOrderingDaysForAnyType($ignoreDaysLimit = false, $menus = []) {
        // Use a static variable to store cache within the request scope, so we don't recalculate this on every call within the request
        static $cache = [];
        $cacheKey = ($ignoreDaysLimit ? '1' : '0') .
            ($menus === null ? 'null' : md5(json_encode($menus)));
 
        if (isset($cache[$cacheKey])) {
            return $cache[$cacheKey];
        }
 
        $orderTypes = $this->getEnabledBaseOrderTypes();
        $availableDates = [];
        $dateTime = new DateTime(date('Y-m-d', $this->getLocalTime()));
        if (isset($orderTypes["PICKUP"]) || isset($orderTypes["DINEIN"])) {
            $availableDates = $this->getAvailableDates($dateTime, 'PICKUP', false, $ignoreDaysLimit, false, $menus);
        }
        if (isset($orderTypes["DELIVERY"])) {
            $availableDates = array_merge($availableDates, $this->getAvailableDates($dateTime, 'DELIVERY', false, $ignoreDaysLimit, false, $menus));
        }
        sort($availableDates);
        $cache[$cacheKey] = $availableDates;
        return $availableDates;
    }
 
    /**
     * @param DateTime $date
     * @return array
     */
    public function getAvailableTimeSlots($date) {
        //time slots
        if ($this->time_slots_enabled) {
            $validTimes = $this->getAvailableTimes($date);
            $timeSlots = RestaurantTimeSlot::getForRestaurant($this);
            $validTimeSlots = [];
 
Arguments
  1. DateTime @1768982400 {
      date: 2026-01-21 00:00:00.0 America/Los_Angeles (-08:00)
    }
    
  2. "PICKUP"
    
  3. false
    
  4. false
    
  5. false
    
  6. []
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
lib
/
global.php
            }
 
            if ($restaurant->public_ordering_closed_until) {
                return $restaurant->getLocalPublicOrderingClosedUntilText($returnClosedUntilTime);
            }
        }
        if (is_string($defaultMsg)) {
            return $returnClosedUntilTime ? 'Indefinitely' : $defaultMsg;
        }
 
        return $returnClosedUntilTime ? 'Indefinitely' : ($result?: true); //in case result is an empty string
    }
 
    if ($skipLoginCheck && is_object($restaurant) && $restaurant->isOrderingClosed()) {
        return true;
    }
 
    //If no ordering times are currently available, check if ordering will be possible later.
    //If not, return "Online ordering is closed" (effective indefinitely, represented as +200 years)
    if (is_object($restaurant) && count($restaurant->getOrderingDaysForAnyType()) === 0) {
        $firstAvailableTime = $restaurant->getFirstAvailableTime();
        if ($firstAvailableTime) {
            return $returnClosedUntilTime ? $firstAvailableTime
                : ('Online ordering is closed' . (' until ' . date('F jS \a\t g:iA', $firstAvailableTime)));
        }
        return $returnClosedUntilTime ? strtotime('+200 years') : 'Online ordering is closed';
    }
 
    return false;
}
 
function addErrorDialogueToLoadEvent() {
    if (!isset($_REQUEST['hide_error_dialog'])) {
        $errStr = str_replace("'", "&lsquo;", $_REQUEST['errors']);
        $errStr = preg_replace('/\r\n/', ' ', $errStr);
        if ($errStr) {
            return '<script type="text/javascript" defer="defer">
            var tmpOnload = window.onload;
            window.onload = function() {
                if(tmpOnload) tmpOnload();
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
templates4.0
/
customer
/
header.php
        <!-- Google Tag Manager (noscript) -->
        <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K9P93M" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
        <!-- End Google Tag Manager (noscript) -->
        <? include(CORE_PATH . 'templates4.0/customer/header_devtools.php'); ?>
        <?=HTML\printLoggedInAdminBanner()?>
        <!-- wrapper starts -->
        <div class="wrapper">
            <div style="grid-area: header-announcements">
                <? include(CORE_PATH."templates3.0/customer/upgrade_browser_banner.php"); ?>
                <? if (isset($account) && $account->hasVisibleAnnouncement("header")) {
                    if (!isset($_SESSION['announcement_text']) || $_SESSION['announcement_text'] != $account->getContextualAnnouncementsHtml()) { ?>
                        <div class="header-opensign announcement-bg-color announcement-txt-color">
                            <?=$account->getContextualAnnouncementsHtml()?>
                        <a href="javascript:void(0)" class="close" id="closeAnnouncement" role="button" aria-label="Close Announcement" tabindex="0"><i class="fas fa-times fa-xs"></i></a>
                        </div>
                    <? }
                } ?>
 
                <!-- get closed sign if applicable. -->
                <? if ($closed_msg = isOrderingClosed(CLOSED_MSG_RESTAURANT)) { ?>
                    <div class="header-opensign" style="background-color:#fecece; font-size: .875em">
                        <?=$closed_msg?>
                    </div>
                <? } ?>
 
                <? if ($_REQUEST['form'] == 'home') { ?>
                    <?=renderStatusMessages4()?>
                <? } ?>
 
                <? if (isSpringroll()) { ?>
                    <div class="d-flex gap-2 p-2" style="background-color: #d44220">
                        <a class="mx-auto" href="/">
                            <div role="img" aria-label="Logo Image" style="transform: scale(0.6); background-color: white; width: 136px; height: 33px; -webkit-mask: url(<?=getAssetUrl('logo.svg')?>); mask: url(<?=getAssetUrl('logo.svg')?>)"></div>
                        </a>
                    </div>
                <? } ?>
            </div>
 
            <? // Header ?>
            <div class="headerAndWtype" style="grid-area: header">
Arguments
  1. "RESTAURANT"
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
controllers
/
customer.php
}
 
if (!isset($cart) || !is_object($cart)) {
    $GLOBALS['cart'] = \Cart::getCurrent();
}
 
//unset callback data in the event someone didn't hit the callback validation page
if (!in_array($_REQUEST['form'], ['checkout', 'nosuchpage', 'validatecallback', 'viewdeliveryzone'])) {
    //TODO: probably need to add one more form here that is called ajax, callback seems to reset when it shouldnt
    unset($_SESSION['validation_data']);
}
 
$locs = $account->getActiveRestaurants('position');
$tab = MainNavigationTab::getAllForAccount($account->getId());
 
include_once(CORE_PATH.'lib/helpers/customer3.0.php');
 
if (!in_array($_REQUEST['form'], $viewContentOnly)) {
    App::debugbarTime('header');
    include_once(getLayoutPartPath('header'));
    App::debugbarTime('header');
}
 
App::debugbarTime("view '{$_REQUEST['form']}'");
$path = CORE_PATH.'view' . ($_REQUEST['_VERSION'] == 4 ? 4 : 3) . '.0/customer/'.$_REQUEST['form'].'.php';
if (is_readable($path)) {
    include_once($path);
}
App::debugbarTime("view '{$_REQUEST['form']}'");
 
if (!in_array($_REQUEST['form'], $viewContentOnly)) {
    App::debugbarTime('footer');
    include_once(getLayoutPartPath('footer'));
    App::debugbarTime('footer');
}
 
function getLayoutPartPath($part) {
    if (isset($_REQUEST['_CORDOVA_APP'])) {
        $cart = Cart::getCurrent();
 
Arguments
  1. "/home/deploy/EHungry-6-boyan/Web/templates4.0/customer/header.php"
    
/
home
/
deploy
/
EHungry-6-boyan
/
Web
/
index.php
App::startTime();
 
ErrorHandlers::register();
 
// Global.php is the core setup file for the application
App::debugbarTime('Global.php');
require(dirname(__DIR__) . '/PHP/Global.php');
App::debugbarTime('Global.php');
/** @var string $controller The main controller - defined at /PHP/Global.php */
 
App::debugbarTime('Sentry - controller');
ErrorHandlers::sentryInit($controller); //doesn't always do much - not every controller has a Sentry project
App::debugbarTime('Sentry - controller');
 
App::debugbarTime("controller: $controller");
apache_note('AppController', $controller);
if (file_exists(CORE_PATH."lib/helpers/$controller.php")) {
    require CORE_PATH."lib/helpers/$controller.php";
}
require CORE_PATH."controllers/$controller.php";
App::debugbarTime("controller: $controller");
 
Arguments
  1. "/home/deploy/EHungry-6-boyan/Web/controllers/customer.php"
    

Environment & details:

Key Value
aid
"restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
empty
empty
Key Value
PHPSESSID
"84029kmmpuarsmrn0kj12cekvs"
Key Value
loc
"en_US"
customer_account_id
32293
cart
Cart {}
restaurant_id
11221
menu_id
14117
Key Value
UNIQUE_ID
"aXBx_7yroIyaLJsWf4lPqAAAAAg"
SCRIPT_URL
"/restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
SCRIPT_URI
"http://www.springroll.com.6.boyan.ehungry.net/restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
HTTP_HOST
"www.springroll.com.6.boyan.ehungry.net"
HTTP_X_REAL_IP
"216.73.216.48"
HTTP_X_FORWARDED_FOR
"216.73.216.48"
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=84029kmmpuarsmrn0kj12cekvs"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.66 () mod_wsgi/4.6.5 Python/3.7 PHP/7.2.34"
SERVER_NAME
"www.springroll.com.6.boyan.ehungry.net"
SERVER_ADDR
"127.0.0.1"
SERVER_PORT
"80"
REMOTE_ADDR
"127.0.0.1"
DOCUMENT_ROOT
"/home/deploy/EHungry-6-boyan/Web"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/deploy/EHungry-6-boyan/Web"
SERVER_ADMIN
"root@localhost"
SCRIPT_FILENAME
"/home/deploy/EHungry-6-boyan/Web/index.php"
REMOTE_PORT
"58798"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
"aid=restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
REQUEST_URI
"/restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
SCRIPT_NAME
"/restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
PHP_SELF
"/restaurant/1walnutcranford/order/1-walnut-chinese-cranford"
REQUEST_TIME_FLOAT
1768976895.692
REQUEST_TIME
1768976895
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