Skip to content
THIS IS DEV LEVEL 3
Filters
Filters
General filters
Cuisines
Rating
Price
Order type

0 restaurants in the area

Restaurants in the area

No restaurants match your search.
Forgot your password?
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-3-boyan/Web/classes/Cache.class.php:69 #9 Redis:setex in /home/deploy/EHungry-3-boyan/Web/classes/Cache.class.php:69 #8 Cache:Set in /home/deploy/EHungry-3-boyan/Web/classes/Cache.class.php:57 #7 Cache:SetArray in /home/deploy/EHungry-3-boyan/Web/classes/MainNavigationTab.class.php:29 #6 MainNavigationTab:getAllForAccount in /home/deploy/EHungry-3-boyan/Web/classes/MainNavigationTab.class.php:53 #5 MainNavigationTab:getTabName in /home/deploy/EHungry-3-boyan/Web/auth/login.php:186 #4 Auth\LoginRoutes:form in /home/deploy/EHungry-3-boyan/Web/auth/login.php:115 #3 Auth\LoginRoutes:modal in /home/deploy/EHungry-3-boyan/Web/marketplace/index.php:74 #2 include in /home/deploy/EHungry-3-boyan/Web/marketplace/router.php:80 #1 include in /home/deploy/EHungry-3-boyan/Web/controllers/marketplace.php:2 #0 require in /home/deploy/EHungry-3-boyan/Web/index.php:30
Stack frames (11)
10
RedisException
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
Cache.class.php
69
9
Redis
setex
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
Cache.class.php
69
8
Cache
Set
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
Cache.class.php
57
7
Cache
SetArray
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
29
6
MainNavigationTab
getAllForAccount
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
53
5
MainNavigationTab
getTabName
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
auth
/
login.php
186
4
Auth
\
LoginRoutes
form
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
auth
/
login.php
115
3
Auth
\
LoginRoutes
modal
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
marketplace
/
index.php
74
2
include
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
marketplace
/
router.php
80
1
include
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
controllers
/
marketplace.php
2
0
require
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
index.php
30
/
home
/
deploy
/
EHungry-3-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-3-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. "mainnavtab_"
    
  2. 86400
    
  3. "a:0:{}"
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
Cache.class.php
                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;
    }
 
    public static function Exists(...$key):?bool {
        if ($i = static::getInstance()) {
            return $i->exists($key);
Arguments
  1. "mainnavtab_"
    
  2. "a:0:{}"
    
  3. 86400
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
        $cacheKey = 'mainnavtab_'.$aid;
        $co = Cache::GetArray($cacheKey);
        if (is_array($co)) {
            return $co;
        }
 
        $db_conn = DB::conn();
        $rbs = array();
        $sql = "SELECT * FROM ".MainNavigationTab::getTableName()." WHERE account_id = ?";
        $db_conn->bindParameter($sql, 1, $aid, "integer");
        $result = $db_conn->query($sql);
        if ($result && $result->rowCount() > 0) {
            while ($row = $result->fetch()) {
                $m = new MainNavigationTab();
                $m->loadFromArray($row, true);
                $rbs[$row["default_name"]] = $m;
            }
        }
 
        Cache::SetArray($cacheKey, $rbs);
        return $rbs;
    }
 
    public static function clearCacheForAccount($aid) {
        Cache::Delete('mainnavtab_'.$aid);
    }
 
    public static function getAllForAccountByDefaultName($aid, $default_name) {
        $db_conn = DB::conn();
        $rbs = '';
        $sql = "SELECT id FROM ".MainNavigationTab::getTableName()." WHERE account_id = ? AND default_name = ?";
        $db_conn->bindParameter($sql, 1, $aid, "integer");
        $db_conn->bindParameter($sql, 1, $default_name, "string");
        $result = $db_conn->query($sql);
        if ($result && $result->rowCount() > 0) {
            while ($row = $result->fetch()) {
                $rbs = new MainNavigationTab($row["id"]);
            }
        }
        return $rbs;
Arguments
  1. "mainnavtab_"
    
  2. []
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
        Cache::Delete('mainnavtab_'.$aid);
    }
 
    public static function getAllForAccountByDefaultName($aid, $default_name) {
        $db_conn = DB::conn();
        $rbs = '';
        $sql = "SELECT id FROM ".MainNavigationTab::getTableName()." WHERE account_id = ? AND default_name = ?";
        $db_conn->bindParameter($sql, 1, $aid, "integer");
        $db_conn->bindParameter($sql, 1, $default_name, "string");
        $result = $db_conn->query($sql);
        if ($result && $result->rowCount() > 0) {
            while ($row = $result->fetch()) {
                $rbs = new MainNavigationTab($row["id"]);
            }
        }
        return $rbs;
    }
 
    public static function getTabName($accountId, $tabName, $fallback) {
        $tab = static::getAllForAccount($accountId);
        return isset($tab[$tabName]) && $tab[$tabName]->getChangedName() ? $tab[$tabName]->getChangedName() : $fallback;
    }
}
 
Arguments
  1. null
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
auth
/
login.php
                'autocomplete' => 'current-password',
                'validation' => array_key_exists('error', $props['password']),
                'required' => true,
            ], $props['password']))?>
 
            <? // Forgot password ?>
            <div class="text-end mb-3">
                <a href="javascript:void(0)" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#<?=Constants::FORGOT_PASSWORD_MODAL_ID?>" role="button">Forgot your password?</a>
            </div>
 
            <? // Remember me ?>
            <? // TODO: Implement - the value from the old "Remember me" checkbox doesn't seem to be used anywhere ?>
            <? // <div class="mb-4"> ?>
                <?//=\EDS\Checkbox(['class' => 'd-inline-block', 'name' => 'remember_me', 'value' => '1'], 'Remember me')?>
            <? // </div> ?>
 
            <? // Log in ?>
            <?=\EDS\Button(
                ['class' => 'w-100 mb-4', 'type' => 'submit'],
                \MainNavigationTab::getTabName($account ? $account->id : null, 'login', 'Log in')
            )?>
 
            <? // Sign up ?>
            <div class="text-center">
                Don't have an account?
                <a href="javascript:void(0)" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#<?=Constants::REGISTER_MODAL_ID?>" role="button">Sign up</a>
            </div>
        </form>
 
        <?
        return ob_get_clean();
    }
}
 
Arguments
  1. null
    
  2. "login"
    
  3. "Log in"
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
auth
/
login.php
        }
    }
 
    public static function logOut(array $params, array $request) {
        \eHungry\Services\Auth::logout();
        return (
            Status()
            .
            "<script>$(() => app.event.emit('customer_logged_out'))</script>"
        );
    }
 
    // Components
    public static function modal() {
        $account = \eHungry\Services\Account::getAccount();
        return \EDS\Dialog([
            'id' => Constants::LOGIN_MODAL_ID,
            'size' => 'medium',
            'title' => $account && $account->guestCheckoutIsDisabled() ? 'Log in to proceed' : 'Log in',
            'body' => static::form(),
        ]);
    }
 
    private static function form($attrs = []) {
        $account = \eHungry\Services\Account::getAccount();
        $props = \EDS\defaults($attrs, [
            'email'    => ['value' => ''],
            'password' => ['value' => ''],
        ]);
 
        ob_start();
        ?>
 
        <form
            id="login-form"
            name="login"
            data-async-on-submit
            method="post"
            action="<?=getUrl('/auth')?>"
            data-async-block="#<?=Constants::LOGIN_MODAL_ID?> .<?=\EDS\DialogConstants::CONTENT_CLASS?>"
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
marketplace
/
index.php
        <? include(CORE_PATH . 'templates3.0/customer/upgrade_browser_banner.php'); ?>
 
        <? // Header ?>
        <? include(__DIR__ . '/header.php'); ?>
 
        <? // Main ?>
        <main style="min-height: calc(100vh - var(--eds-header-height) * 1px - var(--eds-footer-height) * 1px)">
            <?=\EDS\Portal::output('main')?>
        </main>
 
        <? // Footer ?>
        <footer>
            <nav class="container-lg p-4 px-lg-0">
                <? include(__DIR__ . '/footer.php'); ?>
            </nav>
        </footer>
 
        <? // Modals ?>
        <?=\EDS\Portal::output('modals')?>
        <?=\Auth\LoginRoutes::modal()?>
        <?=\Auth\RegisterRoutes::modal()?>
        <?=\Auth\ForgotPasswordRoutes::forgotPasswordModal()?>
 
        <? // Flying toast ?>
        <?=\EDS\Portal::output('flying-toast') ?: '<div id="toast-listing"></div>'?>
 
        <? // Scripts ?>
        <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js" integrity="sha256-lSjKY0/srUM9BE3dPm+c4fBo1dky2v27Gdjm2uoZaL0=" crossorigin="anonymous"></script>
        <script type="text/javascript" src="<?=Minify_getUri('marketplace_js')?><?=DevLevel > 0 ? '&debug=1' : ''?>"></script>
        <script
            type="text/javascript"
            src="https://maps.googleapis.com/maps/api/js?key=<?=GOOGLE_JAVASCRIPT_KEY?>&loading=async&libraries=places&callback=onGoogleMapsApiLoaded"
            async
            defer
            onerror="app.event.emit('google_maps_unsupported')"
            data-event-on:document_ready="app.event.emit('check_google_maps_support')"
            data-event-on:router_navigate="app.event.emit('check_google_maps_support')"
            data-event-on:check_google_maps_support="() => { if (!app.supports('var a = {}; a?.b; a ?? true; BigInt;')) app.event.emit('google_maps_unsupported'); }"
        ></script>
        <script>
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
marketplace
/
router.php
    }
    // NOTE: At the moment we can skip updating these on the client side since clients don't see them
    // if (is_array($handler_output) && array_key_exists('description', $handler_output) && $handler_output['description']) {
    //     header("X-Meta-Description: {$handler_output['description']}");
    // }
    // if (is_array($handler_output) && array_key_exists('image', $handler_output) && $handler_output['image']) {
    //     header('X-Meta-Image: ' . rtrim(HTTPS_HOST, '/') . $handler_output['image']);
    // }
 
    foreach (\EDS\Portal::getAjaxHeaders() as $ajaxHeader) {
        header($ajaxHeader);
    }
 
    echo($handler_output['main'] ?? $handler_output);
} else {
    \EDS\Portal::input('title', $handler_output['title'] ?? $seo_defaults['title']);
    \EDS\Portal::input('description', $handler_output['description'] ?? $seo_defaults['description']);
    \EDS\Portal::input('image', rtrim(HTTPS_HOST, '/') . ($handler_output['image'] ?? $seo_defaults['image']));
    \EDS\Portal::input('main', $handler_output['main'] ?? $handler_output);
    include(__DIR__ . '/index.php');
}
 
Arguments
  1. "/home/deploy/EHungry-3-boyan/Web/marketplace/index.php"
    
/
home
/
deploy
/
EHungry-3-boyan
/
Web
/
controllers
/
marketplace.php
<?
include(CORE_PATH . 'marketplace/router.php');
 
Arguments
  1. "/home/deploy/EHungry-3-boyan/Web/marketplace/router.php"
    
/
home
/
deploy
/
EHungry-3-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-3-boyan/Web/controllers/marketplace.php"
    

Environment & details:

Key Value
aid
"restaurants/wisconsin/ann-arbor"
empty
empty
Key Value
PHPSESSID
"ou1cgrnpfgn21ftitlhuc2umb9"
Key Value
loc
"en_US"
cart
Cart {}
Key Value
UNIQUE_ID
"aTWoDuVTCprgVtEM6veV_wAAAAk"
SCRIPT_URL
"/restaurants/wisconsin/ann-arbor"
SCRIPT_URI
"http://www.springroll.com.3.boyan.ehungry.net/restaurants/wisconsin/ann-arbor"
HTTP_HOST
"www.springroll.com.3.boyan.ehungry.net"
HTTP_X_REAL_IP
"216.73.216.186"
HTTP_X_FORWARDED_FOR
"216.73.216.186"
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=ou1cgrnpfgn21ftitlhuc2umb9"
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.3.boyan.ehungry.net"
SERVER_ADDR
"127.0.0.1"
SERVER_PORT
"80"
REMOTE_ADDR
"127.0.0.1"
DOCUMENT_ROOT
"/home/deploy/EHungry-3-boyan/Web"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/deploy/EHungry-3-boyan/Web"
SERVER_ADMIN
"root@localhost"
SCRIPT_FILENAME
"/home/deploy/EHungry-3-boyan/Web/index.php"
REMOTE_PORT
"55212"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
"aid=restaurants/wisconsin/ann-arbor"
REQUEST_URI
"/restaurants/wisconsin/ann-arbor"
SCRIPT_NAME
"/restaurants/wisconsin/ann-arbor"
PHP_SELF
"/restaurants/wisconsin/ann-arbor"
REQUEST_TIME_FLOAT
1765124110.363
REQUEST_TIME
1765124110
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