Skip to content
THIS IS DEV LEVEL 5

A High Five that sparks something amazing!

Turn your love for great food into moments that matter. For every five orders you place, we'll donate one meal to Rise Against Hunger. Let's make every bite count!

Together with Rise Against Hunger

Start an order

High Five for Good

At Springroll, we believe that every meal should come with a side of good vibes—and now, they do!

With our High Five for Good campaign, your love for delicious Asian cuisines can do something truly amazing. For every five orders you place, we'll donate one meal to Rise Against Hunger. It's the easiest way to enjoy your favorite dishes while spreading a little joy.

So, go ahead—order that extra dumpling or sushi roll, and let's keep the high fives (and the good times) rolling! 🙌🏻

Springroll team

Campaign details

How it works

  • Place orders through Springroll.com (any participating restaurant)
  • Track your progress in your user profile
  • For every five orders, we'll donate one meal to Rise Against Hunger on your behalf
  • Celebrate your impact and keep the good vibes rolling!
Start an order

16
days left


The campaign is live now and runs until December 31, 2025, 11:59 PM Pacific Time. There's plenty of time to make a difference—one delicious order at a time!

Terms and rules
Campaign duration

The campaign begins immediately and will run until December 31, 2025, 11:59 PM (Pacific Time).

Eligibility & order requirements
Non-participating locations:
Contribution mechanism
Tracking progress
Rise Against Hunger partnership
Transparency and updates
Fair usage
Termination or modifications
Contact information

For questions or additional details about the campaign, please contact the Springroll support team at help@springroll.com.

*Meal value explanation
Each donated meal is valued at approximately $0.40, based on Rise Against Hunger's meal distribution program. Regardless of total campaign contributions, Springroll guarantees a minimum donation of $10,000 by the end of 2025.
About Rise Against Hunger

Rise Against Hunger is a global nonprofit dedicated to ending hunger by providing nutritious meals to communities in need. Through meal packaging programs and sustainable development projects, they work to create long-term solutions for food insecurity. Learn more about their mission and impact at www.riseagainsthunger.org.

Want to contribute more?

If you'd like to make your own impact, you can donate directly to Rise Against Hunger and help provide even more meals to communities in need.

Click here to donate
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-5-boyan/Web/classes/Cache.class.php:69 #9 Redis:setex in /home/deploy/EHungry-5-boyan/Web/classes/Cache.class.php:69 #8 Cache:Set in /home/deploy/EHungry-5-boyan/Web/classes/Cache.class.php:57 #7 Cache:SetArray in /home/deploy/EHungry-5-boyan/Web/classes/MainNavigationTab.class.php:29 #6 MainNavigationTab:getAllForAccount in /home/deploy/EHungry-5-boyan/Web/classes/MainNavigationTab.class.php:53 #5 MainNavigationTab:getTabName in /home/deploy/EHungry-5-boyan/Web/auth/login.php:186 #4 Auth\LoginRoutes:form in /home/deploy/EHungry-5-boyan/Web/auth/login.php:115 #3 Auth\LoginRoutes:modal in /home/deploy/EHungry-5-boyan/Web/marketplace/index.php:92 #2 include in /home/deploy/EHungry-5-boyan/Web/marketplace/router.php:80 #1 include in /home/deploy/EHungry-5-boyan/Web/controllers/marketplace.php:2 #0 require in /home/deploy/EHungry-5-boyan/Web/index.php:30
Stack frames (11)
10
RedisException
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
classes
/
Cache.class.php
69
9
Redis
setex
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
classes
/
Cache.class.php
69
8
Cache
Set
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
classes
/
Cache.class.php
57
7
Cache
SetArray
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
29
6
MainNavigationTab
getAllForAccount
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
classes
/
MainNavigationTab.class.php
53
5
MainNavigationTab
getTabName
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
auth
/
login.php
186
4
Auth
\
LoginRoutes
form
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
auth
/
login.php
115
3
Auth
\
LoginRoutes
modal
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
marketplace
/
index.php
92
2
include
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
marketplace
/
router.php
80
1
include
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
controllers
/
marketplace.php
2
0
require
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
index.php
30
/
home
/
deploy
/
EHungry-5-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-5-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-5-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-5-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-5-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-5-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-5-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-5-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-5-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-5-boyan/Web/marketplace/index.php"
    
/
home
/
deploy
/
EHungry-5-boyan
/
Web
/
controllers
/
marketplace.php
<?
include(CORE_PATH . 'marketplace/router.php');
 
Arguments
  1. "/home/deploy/EHungry-5-boyan/Web/marketplace/router.php"
    
/
home
/
deploy
/
EHungry-5-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-5-boyan/Web/controllers/marketplace.php"
    

Environment & details:

Key Value
aid
"campaigns/high-five-for-good"
empty
empty
Key Value
PHPSESSID
"tfrsmsqsu0kq98878kpumqjmfj"
Key Value
loc
"en_US"
cart
Cart {}
Key Value
UNIQUE_ID
"aUBW0gAZL30xzejTjqiE_AAAAAI"
SCRIPT_URL
"/campaigns/high-five-for-good"
SCRIPT_URI
"http://www.springroll.com.5.boyan.ehungry.net/campaigns/high-five-for-good"
HTTP_HOST
"www.springroll.com.5.boyan.ehungry.net"
HTTP_X_REAL_IP
"216.73.216.115"
HTTP_X_FORWARDED_FOR
"216.73.216.115"
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=tfrsmsqsu0kq98878kpumqjmfj"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.65 () mod_wsgi/4.6.5 Python/3.7 PHP/7.2.34"
SERVER_NAME
"www.springroll.com.5.boyan.ehungry.net"
SERVER_ADDR
"127.0.0.1"
SERVER_PORT
"80"
REMOTE_ADDR
"127.0.0.1"
DOCUMENT_ROOT
"/home/deploy/EHungry-5-boyan/Web"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/deploy/EHungry-5-boyan/Web"
SERVER_ADMIN
"root@localhost"
SCRIPT_FILENAME
"/home/deploy/EHungry-5-boyan/Web/index.php"
REMOTE_PORT
"37134"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
"aid=campaigns/high-five-for-good"
REQUEST_URI
"/campaigns/high-five-for-good"
SCRIPT_NAME
"/campaigns/high-five-for-good"
PHP_SELF
"/campaigns/high-five-for-good"
REQUEST_TIME_FLOAT
1765824210.269
REQUEST_TIME
1765824210
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