40 restaurants in the area
Restaurants in the area
P. King Chinese Food - Bellaire
5313 Bellaire Blvd Bellaire, TX 77401
0.4 mi
0.00
Pick up
Delivery
Chinese Seafood Plus - Bellaire
6701 Chimney Rock Rd Bellaire, TX 77401
0.5 mi
0.00
Pick up
Delivery
Hunan's Restaurant - Houston
3835 Bellaire Blvd Houston, TX 77025
1.8 mi
0.00
Pick up
Delivery
Fu's Garden - Houston
5866 San Felipe St Houston, TX 77057
3.4 mi
0.00
Pick up
Delivery
Jin's Cafe Asian Cuisine - Houston
9013 Westheimer Rd Houston, TX 77063
4 mi
0.00
Pick up
Delivery
Shanghai River - Houston
2407 Westheimer Rd Houston, TX 77098
4.1 mi
0.00
Pick up
Delivery
Dim Sum King - Houston
9160 Bellaire Blvd # B Houston, TX 77036
4.5 mi
0.00
Pick up
WanFu Cafe - Houston
1441 Wirt Rd Houston, TX 77055
6.4 mi
0.00
Pick up
Delivery
Chinese American - Houston
11317 Bissonnet St Houston, TX 77099
6.9 mi
0.00
Pick up
Aka Japanese Cuisine - Houston
1460 Eldridge Pkwy #130 Houston, TX 77077
10.2 mi
0.00
Pick up
Dine-in
China 101 Express - Houston
7011 Harrisburg Blvd #300 Houston, TX 77011
10.3 mi
0.00
Pick up
Delivery
Taipei Express - Houston
17139 Westheimer Rd Houston, TX 77082
13.1 mi
0.00
Pick up
Delivery
Miyabi Sushi - Houston
4502 Hwy 6 N Houston, TX 77084
14.2 mi
0.00
Pick up
Delivery
Chun Chinese Cafe - Houston
12430 TX-249 Houston, TX 77086
14.4 mi
0.00
Pick up
Delivery
Dine-in
Dynasty Cuisine - Pasadena
702 W Southmore Ave Pasadena, TX 77502
15 mi
0.00
Pick up
Delivery
Dine-in
Orient Express - Katy
20039 Katy Fwy Katy, TX 77450
16 mi
0.00
Pick up
Delivery
Dine-in
Ye's Ichiban - Houston
15420 Farm to Market Rd 529 Houston, TX 77095
16 mi
0.00
Pick up
Delivery
Green Garden Restaurant - Katy
19922 Park Row Dr Katy, TX 77449
16.3 mi
0.00
Pick up
Delivery
China Garden 518 - Pearland
2540 E Broadway St Pearland, TX 77581
16.4 mi
0.00
Pick up
Delivery
Hunan Garden - Katy
3010 N Fry Rd Katy, TX 77449
16.8 mi
0.00
Pick up
Delivery
Spring China Cafe - Houston
12620 Woodforest Blvd #400 Houston, TX 77015
17.1 mi
0.00
Pick up
RedisException
Stack frames (13)
12
RedisException
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/Cache.class.php
69
11
Redis
setex
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/Cache.class.php
69
10
Cache
Set
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/Cache.class.php
53
9
Cache
SetObject
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
775
8
BaseClass
cacheSet
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
664
7
BaseClass
findNew
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
679
6
BaseClass
find
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
147
5
BaseClass
__construct
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/routes
/restaurant_list.php
595
4
Marketplace
\RestaurantListRoute
restaurantList
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/routes
/restaurant_list.php
96
3
Marketplace
\RestaurantListRoute
restaurantsByStateAndCity
/
home
/deploy
/EHungry-9-boyan
/Web
/Services
/Router.php
47
2
eHungry
\Services
\Router
handle
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/router.php
27
1
include
/
home
/deploy
/EHungry-9-boyan
/Web
/controllers
/marketplace.php
2
0
require
/
home
/deploy
/EHungry-9-boyan
/Web
/index.php
30
/
home
/deploy
/EHungry-9-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
"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-9-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
"bc_account_5924"86400""" O:7:"Account":30:{s:13:"\x00Account\x00plan";N;s:10:"timestamps";b:1;s:25:"\x00Account\x00_hasCustomDomain";N;s:8:"\x00*\x00casts";a:1:{s:13:"embed_origins";s:5:"array";}s:10:"\x00*\x00appends";a:2:{i:0;s:23:"location_wording_plural";i:1;s:25:"shipday_globally_disabled";}s:12:"pdfPageCount";i:0;s:9:"\x00*\x00hidden";a:1:{i:0;s:8:"password";}s:12:"\x00*\x00nullables";a:0:{}s:13:"\x00*\x00connection";s:7:"default";s:8:"\x00*\x00table";N;s:13:"\x00*\x00primaryKey";s:2:"id";s:10:"\x00*\x00keyType";s:3:"int";s:12:"incrementing";b:1;s:7:"\x00*\x00with";a:0:{}s:12:"\x00*\x00withCount";a:0:{}s:10:"\x00*\x00perPage";i:15;s:6:"exists";b:1;s:18:"wasRecentlyCreated";b:0;s:13:"\x00*\x00attributes";a:222:{s:11:"primary_fax";s:15:"(281) 492-0460 ";s:13:"primary_phone";s:15:"(281) 492-0430 ";s:3:"zip";s:5:"77449";s:5:"state";s:2:"TX";s:4:"city";s:4:"Katy";s:7:"street2";s:0:"";s:7:"street1";s:20:"3939 N Fry Rd, Ste G";s:2:"id";i:5924;s:9:"id_string";s:18:"llchinesesushikaty";s:7:"url_tag";s:18:"llchinesesushikaty";s:17:"marketing_url_tag";s:18:"llchinesesushikaty";s:12:"display_name";s:20:"L & L Chinese - Katy";s:5:"email";s:26:"info@chinesemenuonline.com";s:8:"password";s:60:"$2y$10$1yG2mdb1iqa.GAKRuFSqW.n9FctxGxmqW.bfkJ21zTZcMmm9HdrGm";s:22:"password_last_modified";N;s:9:"tfa_since";N;s:10:"tfa_secret";N;s:8:"timezone";i:1;s:5:"suite";s:0:"";s:9:"is_locked";i:0;s:21:"is_permanently_closed";i:0;s:14:"logo_file_name";s:0:"";s:9:"app_title";s:20:"L & L Chinese - Katy";s:14:"app_page_title";s:76:"L & L Chinese | Order Online | 3939 N Fry Rd , Katy, TX | Chinese Restaurant";s:17:"always_show_title";i:1;s:10:"custom_css";s:0:"";s:13:"homepage_html";s:1345:"<h1><span style="font-size:28px;">Welcome to {ACCOUNT_NAME}</span></h1>\n \n <div style="color:#555555;font-size:1.2em;font-weight:bolder;">{CURRENT_DATE}</div>\n \n <p>L & L Chinese Restaurant offers authentic and delicious tasting Chinese cuisine in Katy, TX. L & L's convenient location and affordable prices make our restaurant a natural choice for dine-in, take-out meals in the Katy community. Our restaurant is known for its variety of taste and high quality fresh ingredients. Come and experience our friendly atmosphere and excellent service.</p>\n \n <div style="color:#555555;font-size:1.4em;font-weight:bolder;">No Registration Required. Order Online!</div>\n \n <p>Start ordering online by clicking the button below. Simply select the menu items you want, add them to your cart and checkout. Your order will be sent to the restaurant and will be ready at the time you specify. It's that easy!</p>\n \n <p><img alt="" src="/web/documents/llchinesesushikaty/editor_uploads/WeChat%20Image_20190213190159.jpg" style="height:303px;width:270px;"></p>\n \n <p>Enjoy our complimentary tempura banana split. Available for dine-in only 2 or more guests per table. While supply last. Cannot be combined with any other offer. </p>\n \n <p><a href="/order"><img alt="Order Online Now" src="/web/images/default/orderonlinebutton.png" style="border:0;"></a></p>\n \n <p> </p>";s:12:"is_cancelled";i:0;s:10:"created_at";s:19:"2015-12-12 02:54:16";s:11:"modified_at";s:19:"2019-02-13 19:34:03";s:23:"normalized_search_terms";s:0:"";s:15:"enabled_modules";s:5:"5376a";s:22:"default_user_full_name";s:17:"SAMPLE - DELIVERY";s:10:"first_name";s:0:"";s:9:"last_name";s:0:"";s:9:"job_title";s:0:"";s:19:"menubuddies_enabled";i:0;s:24:"seo_description_disabled";i:0;s:28:"self_print_campaigns_allowed";i:0;s:16:"default_currency";s:0:"";s:30:"reseller_user_invoice_currency";N;s:20:"payment_processor_id";i:0;s:23:"payment_processor_txkey";s:0:"";s:25:"payment_processor_loginid";s:0:"";s:28:"payment_processor_public_key";s:0:"";s:20:"order_calendar_color";s:0:"";s:23:"activity_calendar_color";s:0:"";s:20:"other_calendar_color";s:0:"";s:25:"order_calendar_foreground";s:0:"";s:28:"activity_calendar_foreground";s:0:"";s:25:"other_calendar_foreground";s:0:"";s:13:"mobile_number";s:15:"(832) 231-8885 ";s:14:"sms_is_enabled";i:0;s:19:"hide_logo_in_header";i:0;s:11:"template_id";i:34;s:19:"website_template_id";i:0;s:24:"website_template_enabled";i:0;s:19:"preview_template_id";i:0;s:21:"custom_admin_template";i:0;s:23:"same_page_cart_disabled";i:0;s:11:"show_coupon";i:1;s:11:"show_search";i:1;s:25:"menu_link_choose_location";i:0;s:10:"is_all_ssl";i:0;s:22:"custom_fax_layout_file";s:0:"";s:7:"is_demo";i:0;s:11:"is_billable";i:1;s:14:"last_billed_on";s:19:"0000-00-00 00:00:00";s:16:"start_billing_on";s:19:"2015-10-23 20:15:05";s:12:"pdf_password";s:7:"grape23";s:11:"invite_code";s:0:"";s:17:"custom_stylesheet";s:0:"";s:19:"show_student_fields";i:0;s:16:"reseller_user_id";i:66;s:10:"logo_width";i:0;s:11:"logo_height";i:0;s:12:"directory_id";i:0;s:19:"location_name_alias";s:0:"";s:15:"custom_survo_id";s:0:"";s:19:"max_calls_per_order";i:0;s:26:"old_ehungry_restaurant_ids";s:0:"";s:22:"previous_homepage_html";s:0:"";s:25:"order_confirmation_markup";s:0:"";s:21:"additional_custom_css";s:0:"";s:18:"individual_billing";i:0;s:20:"category_list_layout";s:0:"";s:30:"obscure_payment_info_on_orders";s:1:"0";s:17:"is_directory_only";i:0;s:23:"desktop_client_password";s:0:"";s:37:"desktop_client_password_last_modified";N;s:23:"manual_payment_captures";i:0;s:27:"payment_processor_test_mode";i:0;s:17:"affiliate_user_id";i:0;s:24:"show_option_choice_names";i:0;s:7:"tagline";s:0:"";s:20:"print_order_xml_file";s:0:"";s:17:"order_sequence_id";i:0;s:24:"sequence_numbers_enabled";i:0;s:25:"custom_ordersheet_message";s:59:"Please Process Credit Card or Collect Payment From Customer";s:34:"customer_custom_ordersheet_message";s:0:"";s:17:"account_tab_label";s:0:"";s:18:"calendar_tab_label";s:0:"";s:15:"order_tab_label";s:0:"";s:19:"hide_customer_stats";i:0;s:23:"show_errors_in_dialogue";i:0;s:26:"show_advanced_addon_params";i:0;s:25:"show_menus_simultaneously";i:0;s:8:"is_store";i:0;s:23:"default_menu_item_image";s:0:"";s:34:"add_customer_receipt_to_ordersheet";i:0;s:34:"add_new_customer_msg_to_ordersheet";i:0;s:25:"is_nonstandard_ordersheet";i:0;s:31:"permit_customer_order_deletions";i:0;s:16:"hide_price_names";i:0;s:29:"show_location_on_print_ticket";i:0;s:20:"custom_rightbar_info";s:0:"";s:30:"show_homepage_on_ordering_page";i:0;s:21:"show_price_names_only";i:0;s:21:"sms_send_by_secondary";i:0;s:26:"hidden_registration_fields";s:0:"";s:20:"allow_guest_checkout";i:1;s:10:"force_bill";i:0;s:20:"location_list_format";s:0:"";s:20:"allow_client_scripts";i:0;s:15:"has_mobile_site";i:0;s:17:"last_suspended_on";s:19:"0000-00-00 00:00:00";s:8:"bill_day";i:23;s:10:"force_efax";i:0;s:14:"mobile_tablets";i:0;s:14:"force_metrofax";i:0;s:12:"social_links";s:0:"";s:9:"home_link";s:0:"";s:14:"copyright_name";s:0:"";s:12:"pricing_plan";i:0;s:21:"google_analytics_code";s:14:"UA-88799904-23";s:31:"google_analytics_linker_domains";s:0:"";s:26:"google_analytics_four_code";N;s:15:"paypal_api_data";s:0:"";s:16:"meta_description";s:88:"Order online from L & L Chinese Restaurant in Katy, TX for chinese delivery and takeout";s:13:"meta_keywords";s:241:"l & l, l & l chinese, l & l chinese katy, l & l chinese menu, katy chinese delivery, katy chinese food, katy chinese restaurants, chinese delivery, katy asian restaurants, katy chinese takeout, chinese food near me, best chinese food in katy";s:19:"getresponse_api_key";s:0:"";s:25:"getresponse_campaign_name";s:0:"";s:23:"getresponse_campaign_id";s:0:"";s:13:"email_service";s:7:"MAILGUN";s:14:"phone_priority";s:30:"["PLIVO","BANDWIDTH","TWILIO"]";s:12:"sms_priority";s:30:"["TWILIO","BANDWIDTH","PLIVO"]";s:11:"fax_service";s:6:"PHAXIO";s:18:"order_sms_priority";s:38:"["TWILIO","PLIVO","NEXMO","BANDWIDTH"]";s:19:"order_sms_hide_link";i:0;s:27:"order_sms_show_account_name";i:0;s:12:"fax_priority";s:29:"["PHAXIO","CONCORD","TWILIO"]";s:13:"admin_version";i:0;s:20:"group_orders_enabled";i:0;s:19:"auto_upsell_enabled";i:0;s:25:"hide_special_instructions";i:0;s:29:"special_instructions_required";i:0;s:28:"special_instructions_details";s:0:"";s:17:"homepage_override";s:0:"";s:13:"site_redirect";s:0:"";s:20:"admin_id_menu_access";i:0;s:6:"use_km";i:0;s:21:"default_ordering_page";i:1;s:14:"cancelled_date";s:19:"0000-00-00 00:00:00";s:17:"validate_callback";i:1;s:17:"skip_time_warning";i:0;s:7:"api_key";s:0:"";s:17:"facebook_pixel_id";s:0:"";s:21:"constant_contact_code";s:0:"";s:24:"constant_contact_form_id";s:0:"";s:38:"yelp_reservations_calendar_widget_code";s:0:"";s:21:"default_restaurant_id";i:6572;s:12:"allow_delete";i:0;s:31:"sms_order_notifications_enabled";i:0;s:36:"sms_order_notifications_for_delivery";i:0;s:34:"sms_order_notifications_for_dinein";i:0;s:34:"sms_order_notifications_for_pickup";i:0;s:31:"sms_order_notifications_minutes";i:0;s:25:"inventory_manager_enabled";i:0;s:18:"how_heard_about_us";s:0:"";s:26:"account_status_modified_at";N;s:35:"hide_restaurant_closed_checkout_msg";i:0;s:12:"use_v4_theme";N;s:32:"show_created_at_on_order_monitor";N;s:23:"show_cross_street_field";i:0;s:18:"announcements_html";N;s:21:"announcements_enabled";i:0;s:26:"announcements_expired_date";N;s:25:"display_zero_dollar_items";i:0;s:20:"new_receipt_disabled";i:0;s:23:"receipt_signature_shown";i:0;s:23:"receipt_extra_tip_shown";i:0;s:19:"receipt_email_shown";i:0;s:15:"is_receipt_bold";i:0;s:17:"receipt_font_size";i:100;s:19:"announcements_place";s:6:"header";s:9:"logo_size";s:10:"horizontal";s:23:"payment_options_enabled";i:0;s:16:"open_graph_image";N;s:25:"pos_notifications_enabled";i:0;s:35:"itsacheckmate_notifications_enabled";i:0;s:16:"menu_api_webhook";N;s:12:"menu_updated";i:0;s:36:"payment_aggregator_messaging_enabled";i:0;s:17:"sales_tax_enabled";i:0;s:8:"tax_code";N;s:22:"shipday_enabled_status";i:0;s:35:"print_orders_without_prices_enabled";i:0;s:29:"shipday_auto_dispatch_enabled";i:0;s:28:"deliver_by_ourselves_enabled";i:0;s:36:"third_party_optimal_delivery_enabled";i:0;s:35:"third_party_services_status_enabled";i:0;s:18:"payment_aggregator";s:15:"CHINESE TAKEOUT";s:35:"daily_summary_detailed_fees_enabled";i:0;s:32:"springroll_announcements_enabled";i:0;s:31:"springroll_announcements_copied";i:0;s:29:"springroll_announcements_html";N;s:37:"springroll_announcements_expired_date";N;s:30:"springroll_announcements_place";s:6:"header";s:20:"adjustments_disabled";i:0;s:16:"use_new_homepage";i:0;s:18:"google_pay_enabled";i:0;s:23:"maximum_pp_order_amount";i:0;}s:11:"\x00*\x00original";a:222:{s:11:"primary_fax";s:15:"(281) 492-0460 ";s:13:"primary_phone";s:15:"(281) 492-0430 ";s:3:"zip";s:5:"77449";s:5:"state";s:2:"TX";s:4:"city";s:4:"Katy";s:7:"street2";s:0:"";s:7:"street1";s:20:"3939 N Fry Rd, Ste G";s:2:"id";i:5924;s:9:"id_string";s:18:"llchinesesushikaty";s:7:"url_tag";s:18:"llchinesesushikaty";s:17:"marketing_url_tag";s:18:"llchinesesushikaty";s:12:"display_name";s:20:"L & L Chinese - Katy";s:5:"email";s:26:"info@chinesemenuonline.com";s:8:"password";s:60:"$2y$10$1yG2mdb1iqa.GAKRuFSqW.n9FctxGxmqW.bfkJ21zTZcMmm9HdrGm";s:22:"password_last_modified";N;s:9:"tfa_since";N;s:10:"tfa_secret";N;s:8:"timezone";i:1;s:5:"suite";s:0:"";s:9:"is_locked";i:0;s:21:"is_permanently_closed";i:0;s:14:"logo_file_name";s:0:"";s:9:"app_title";s:20:"L & L Chinese - Katy";s:14:"app_page_title";s:76:"L & L Chinese | Order Online | 3939 N Fry Rd , Katy, TX | Chinese Restaurant";s:17:"always_show_title";i:1;s:10:"custom_css";s:0:"";s:13:"homepage_html";s:1345:"<h1><span style="font-size:28px;">Welcome to {ACCOUNT_NAME}</span></h1>\n \n <div style="color:#555555;font-size:1.2em;font-weight:bolder;">{CURRENT_DATE}</div>\n \n <p>L & L Chinese Restaurant offers authentic and delicious tasting Chinese cuisine in Katy, TX. L & L's convenient location and affordable prices make our restaurant a natural choice for dine-in, take-out meals in the Katy community. Our restaurant is known for its variety of taste and high quality fresh ingredients. Come and experience our friendly atmosphere and excellent service.</p>\n \n <div style="color:#555555;font-size:1.4em;font-weight:bolder;">No Registration Required. Order Online!</div>\n \n <p>Start ordering online by clicking the button below. Simply select the menu items you want, add them to your cart and checkout. Your order will be sent to the restaurant and will be ready at the time you specify. It's that easy!</p>\n \n <p><img alt="" src="/web/documents/llchinesesushikaty/editor_uploads/WeChat%20Image_20190213190159.jpg" style="height:303px;width:270px;"></p>\n \n <p>Enjoy our complimentary tempura banana split. Available for dine-in only 2 or more guests per table. While supply last. Cannot be combined with any other offer. </p>\n \n <p><a href="/order"><img alt="Order Online Now" src="/web/images/default/orderonlinebutton.png" style="border:0;"></a></p>\n \n <p> </p>";s:12:"is_cancelled";i:0;s:10:"created_at";s:19:"2015-12-12 02:54:16";s:11:"modified_at";s:19:"2019-02-13 19:34:03";s:23:"normalized_search_terms";s:0:"";s:15:"enabled_modules";s:5:"5376a";s:22:"default_user_full_name";s:17:"SAMPLE - DELIVERY";s:10:"first_name";s:0:"";s:9:"last_name";s:0:"";s:9:"job_title";s:0:"";s:19:"menubuddies_enabled";i:0;s:24:"seo_description_disabled";i:0;s:28:"self_print_campaigns_allowed";i:0;s:16:"default_currency";s:0:"";s:30:"reseller_user_invoice_currency";N;s:20:"payment_processor_id";i:0;s:23:"payment_processor_txkey";s:0:"";s:25:"payment_processor_loginid";s:0:"";s:28:"payment_processor_public_key";s:0:"";s:20:"order_calendar_color";s:0:"";s:23:"activity_calendar_color";s:0:"";s:20:"other_calendar_color";s:0:"";s:25:"order_calendar_foreground";s:0:"";s:28:"activity_calendar_foreground";s:0:"";s:25:"other_calendar_foreground";s:0:"";s:13:"mobile_number";s:15:"(832) 231-8885 ";s:14:"sms_is_enabled";i:0;s:19:"hide_logo_in_header";i:0;s:11:"template_id";i:34;s:19:"website_template_id";i:0;s:24:"website_template_enabled";i:0;s:19:"preview_template_id";i:0;s:21:"custom_admin_template";i:0;s:23:"same_page_cart_disabled";i:0;s:11:"show_coupon";i:1;s:11:"show_search";i:1;s:25:"menu_link_choose_location";i:0;s:10:"is_all_ssl";i:0;s:22:"custom_fax_layout_file";s:0:"";s:7:"is_demo";i:0;s:11:"is_billable";i:1;s:14:"last_billed_on";s:19:"0000-00-00 00:00:00";s:16:"start_billing_on";s:19:"2015-10-23 20:15:05";s:12:"pdf_password";s:7:"grape23";s:11:"invite_code";s:0:"";s:17:"custom_stylesheet";s:0:"";s:19:"show_student_fields";i:0;s:16:"reseller_user_id";i:66;s:10:"logo_width";i:0;s:11:"logo_height";i:0;s:12:"directory_id";i:0;s:19:"location_name_alias";s:0:"";s:15:"custom_survo_id";s:0:"";s:19:"max_calls_per_order";i:0;s:26:"old_ehungry_restaurant_ids";s:0:"";s:22:"previous_homepage_html";s:0:"";s:25:"order_confirmation_markup";s:0:"";s:21:"additional_custom_css";s:0:"";s:18:"individual_billing";i:0;s:20:"category_list_layout";s:0:"";s:30:"obscure_payment_info_on_orders";s:1:"0";s:17:"is_directory_only";i:0;s:23:"desktop_client_password";s:0:"";s:37:"desktop_client_password_last_modified";N;s:23:"manual_payment_captures";i:0;s:27:"payment_processor_test_mode";i:0;s:17:"affiliate_user_id";i:0;s:24:"show_option_choice_names";i:0;s:7:"tagline";s:0:"";s:20:"print_order_xml_file";s:0:"";s:17:"order_sequence_id";i:0;s:24:"sequence_numbers_enabled";i:0;s:25:"custom_ordersheet_message";s:59:"Please Process Credit Card or Collect Payment From Customer";s:34:"customer_custom_ordersheet_message";s:0:"";s:17:"account_tab_label";s:0:"";s:18:"calendar_tab_label";s:0:"";s:15:"order_tab_label";s:0:"";s:19:"hide_customer_stats";i:0;s:23:"show_errors_in_dialogue";i:0;s:26:"show_advanced_addon_params";i:0;s:25:"show_menus_simultaneously";i:0;s:8:"is_store";i:0;s:23:"default_menu_item_image";s:0:"";s:34:"add_customer_receipt_to_ordersheet";i:0;s:34:"add_new_customer_msg_to_ordersheet";i:0;s:25:"is_nonstandard_ordersheet";i:0;s:31:"permit_customer_order_deletions";i:0;s:16:"hide_price_names";i:0;s:29:"show_location_on_print_ticket";i:0;s:20:"custom_rightbar_info";s:0:"";s:30:"show_homepage_on_ordering_page";i:0;s:21:"show_price_names_only";i:0;s:21:"sms_send_by_secondary";i:0;s:26:"hidden_registration_fields";s:0:"";s:20:"allow_guest_checkout";i:1;s:10:"force_bill";i:0;s:20:"location_list_format";s:0:"";s:20:"allow_client_scripts";i:0;s:15:"has_mobile_site";i:0;s:17:"last_suspended_on";s:19:"0000-00-00 00:00:00";s:8:"bill_day";i:23;s:10:"force_efax";i:0;s:14:"mobile_tablets";i:0;s:14:"force_metrofax";i:0;s:12:"social_links";s:0:"";s:9:"home_link";s:0:"";s:14:"copyright_name";s:0:"";s:12:"pricing_plan";i:0;s:21:"google_analytics_code";s:14:"UA-88799904-23";s:31:"google_analytics_linker_domains";s:0:"";s:26:"google_analytics_four_code";N;s:15:"paypal_api_data";s:0:"";s:16:"meta_description";s:88:"Order online from L & L Chinese Restaurant in Katy, TX for chinese delivery and takeout";s:13:"meta_keywords";s:241:"l & l, l & l chinese, l & l chinese katy, l & l chinese menu, katy chinese delivery, katy chinese food, katy chinese restaurants, chinese delivery, katy asian restaurants, katy chinese takeout, chinese food near me, best chinese food in katy";s:19:"getresponse_api_key";s:0:"";s:25:"getresponse_campaign_name";s:0:"";s:23:"getresponse_campaign_id";s:0:"";s:13:"email_service";s:7:"MAILGUN";s:14:"phone_priority";s:30:"["PLIVO","BANDWIDTH","TWILIO"]";s:12:"sms_priority";s:30:"["TWILIO","BANDWIDTH","PLIVO"]";s:11:"fax_service";s:6:"PHAXIO";s:18:"order_sms_priority";s:38:"["TWILIO","PLIVO","NEXMO","BANDWIDTH"]";s:19:"order_sms_hide_link";i:0;s:27:"order_sms_show_account_name";i:0;s:12:"fax_priority";s:29:"["PHAXIO","CONCORD","TWILIO"]";s:13:"admin_version";i:0;s:20:"group_orders_enabled";i:0;s:19:"auto_upsell_enabled";i:0;s:25:"hide_special_instructions";i:0;s:29:"special_instructions_required";i:0;s:28:"special_instructions_details";s:0:"";s:17:"homepage_override";s:0:"";s:13:"site_redirect";s:0:"";s:20:"admin_id_menu_access";i:0;s:6:"use_km";i:0;s:21:"default_ordering_page";i:1;s:14:"cancelled_date";s:19:"0000-00-00 00:00:00";s:17:"validate_callback";i:1;s:17:"skip_time_warning";i:0;s:7:"api_key";s:0:"";s:17:"facebook_pixel_id";s:0:"";s:21:"constant_contact_code";s:0:"";s:24:"constant_contact_form_id";s:0:"";s:38:"yelp_reservations_calendar_widget_code";s:0:"";s:21:"default_restaurant_id";i:6572;s:12:"allow_delete";i:0;s:31:"sms_order_notifications_enabled";i:0;s:36:"sms_order_notifications_for_delivery";i:0;s:34:"sms_order_notifications_for_dinein";i:0;s:34:"sms_order_notifications_for_pickup";i:0;s:31:"sms_order_notifications_minutes";i:0;s:25:"inventory_manager_enabled";i:0;s:18:"how_heard_about_us";s:0:"";s:26:"account_status_modified_at";N;s:35:"hide_restaurant_closed_checkout_msg";i:0;s:12:"use_v4_theme";N;s:32:"show_created_at_on_order_monitor";N;s:23:"show_cross_street_field";i:0;s:18:"announcements_html";N;s:21:"announcements_enabled";i:0;s:26:"announcements_expired_date";N;s:25:"display_zero_dollar_items";i:0;s:20:"new_receipt_disabled";i:0;s:23:"receipt_signature_shown";i:0;s:23:"receipt_extra_tip_shown";i:0;s:19:"receipt_email_shown";i:0;s:15:"is_receipt_bold";i:0;s:17:"receipt_font_size";i:100;s:19:"announcements_place";s:6:"header";s:9:"logo_size";s:10:"horizontal";s:23:"payment_options_enabled";i:0;s:16:"open_graph_image";N;s:25:"pos_notifications_enabled";i:0;s:35:"itsacheckmate_notifications_enabled";i:0;s:16:"menu_api_webhook";N;s:12:"menu_updated";i:0;s:36:"payment_aggregator_messaging_enabled";i:0;s:17:"sales_tax_enabled";i:0;s:8:"tax_code";N;s:22:"shipday_enabled_status";i:0;s:35:"print_orders_without_prices_enabled";i:0;s:29:"shipday_auto_dispatch_enabled";i:0;s:28:"deliver_by_ourselves_enabled";i:0;s:36:"third_party_optimal_delivery_enabled";i:0;s:35:"third_party_services_status_enabled";i:0;s:18:"payment_aggregator";s:15:"CHINESE TAKEOUT";s:35:"daily_summary_detailed_fees_enabled";i:0;s:32:"springroll_announcements_enabled";i:0;s:31:"springroll_announcements_copied";i:0;s:29:"springroll_announcements_html";N;s:37:"springroll_announcements_expired_date";N;s:30:"springroll_announcements_place";s:6:"header";s:20:"adjustments_disabled";i:0;s:16:"use_new_homepage";i:0;s:18:"google_pay_enabled";i:0;s:23:"maximum_pp_order_amount";i:0;}s:8:"\x00*\x00dates";a:0:{}s:13:"\x00*\x00dateFormat";N;s:9:"\x00*\x00events";a:0:{}s:14:"\x00*\x00observables";a:0:{}s:12:"\x00*\x00relations";a:0:{}s:10:"\x00*\x00touches";a:0:{}s:10:"\x00*\x00visible";a:0:{}s:11:"\x00*\x00fillable";a:0:{}s:10:"\x00*\x00guarded";a:1:{i:0;s:1:"*";}s:17:"\x00*\x00_uploadAccount";N;} """
/
home
/deploy
/EHungry-9-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
"bc_account_5924"""" O:7:"Account":30:{s:13:"\x00Account\x00plan";N;s:10:"timestamps";b:1;s:25:"\x00Account\x00_hasCustomDomain";N;s:8:"\x00*\x00casts";a:1:{s:13:"embed_origins";s:5:"array";}s:10:"\x00*\x00appends";a:2:{i:0;s:23:"location_wording_plural";i:1;s:25:"shipday_globally_disabled";}s:12:"pdfPageCount";i:0;s:9:"\x00*\x00hidden";a:1:{i:0;s:8:"password";}s:12:"\x00*\x00nullables";a:0:{}s:13:"\x00*\x00connection";s:7:"default";s:8:"\x00*\x00table";N;s:13:"\x00*\x00primaryKey";s:2:"id";s:10:"\x00*\x00keyType";s:3:"int";s:12:"incrementing";b:1;s:7:"\x00*\x00with";a:0:{}s:12:"\x00*\x00withCount";a:0:{}s:10:"\x00*\x00perPage";i:15;s:6:"exists";b:1;s:18:"wasRecentlyCreated";b:0;s:13:"\x00*\x00attributes";a:222:{s:11:"primary_fax";s:15:"(281) 492-0460 ";s:13:"primary_phone";s:15:"(281) 492-0430 ";s:3:"zip";s:5:"77449";s:5:"state";s:2:"TX";s:4:"city";s:4:"Katy";s:7:"street2";s:0:"";s:7:"street1";s:20:"3939 N Fry Rd, Ste G";s:2:"id";i:5924;s:9:"id_string";s:18:"llchinesesushikaty";s:7:"url_tag";s:18:"llchinesesushikaty";s:17:"marketing_url_tag";s:18:"llchinesesushikaty";s:12:"display_name";s:20:"L & L Chinese - Katy";s:5:"email";s:26:"info@chinesemenuonline.com";s:8:"password";s:60:"$2y$10$1yG2mdb1iqa.GAKRuFSqW.n9FctxGxmqW.bfkJ21zTZcMmm9HdrGm";s:22:"password_last_modified";N;s:9:"tfa_since";N;s:10:"tfa_secret";N;s:8:"timezone";i:1;s:5:"suite";s:0:"";s:9:"is_locked";i:0;s:21:"is_permanently_closed";i:0;s:14:"logo_file_name";s:0:"";s:9:"app_title";s:20:"L & L Chinese - Katy";s:14:"app_page_title";s:76:"L & L Chinese | Order Online | 3939 N Fry Rd , Katy, TX | Chinese Restaurant";s:17:"always_show_title";i:1;s:10:"custom_css";s:0:"";s:13:"homepage_html";s:1345:"<h1><span style="font-size:28px;">Welcome to {ACCOUNT_NAME}</span></h1>\n \n <div style="color:#555555;font-size:1.2em;font-weight:bolder;">{CURRENT_DATE}</div>\n \n <p>L & L Chinese Restaurant offers authentic and delicious tasting Chinese cuisine in Katy, TX. L & L's convenient location and affordable prices make our restaurant a natural choice for dine-in, take-out meals in the Katy community. Our restaurant is known for its variety of taste and high quality fresh ingredients. Come and experience our friendly atmosphere and excellent service.</p>\n \n <div style="color:#555555;font-size:1.4em;font-weight:bolder;">No Registration Required. Order Online!</div>\n \n <p>Start ordering online by clicking the button below. Simply select the menu items you want, add them to your cart and checkout. Your order will be sent to the restaurant and will be ready at the time you specify. It's that easy!</p>\n \n <p><img alt="" src="/web/documents/llchinesesushikaty/editor_uploads/WeChat%20Image_20190213190159.jpg" style="height:303px;width:270px;"></p>\n \n <p>Enjoy our complimentary tempura banana split. Available for dine-in only 2 or more guests per table. While supply last. Cannot be combined with any other offer. </p>\n \n <p><a href="/order"><img alt="Order Online Now" src="/web/images/default/orderonlinebutton.png" style="border:0;"></a></p>\n \n <p> </p>";s:12:"is_cancelled";i:0;s:10:"created_at";s:19:"2015-12-12 02:54:16";s:11:"modified_at";s:19:"2019-02-13 19:34:03";s:23:"normalized_search_terms";s:0:"";s:15:"enabled_modules";s:5:"5376a";s:22:"default_user_full_name";s:17:"SAMPLE - DELIVERY";s:10:"first_name";s:0:"";s:9:"last_name";s:0:"";s:9:"job_title";s:0:"";s:19:"menubuddies_enabled";i:0;s:24:"seo_description_disabled";i:0;s:28:"self_print_campaigns_allowed";i:0;s:16:"default_currency";s:0:"";s:30:"reseller_user_invoice_currency";N;s:20:"payment_processor_id";i:0;s:23:"payment_processor_txkey";s:0:"";s:25:"payment_processor_loginid";s:0:"";s:28:"payment_processor_public_key";s:0:"";s:20:"order_calendar_color";s:0:"";s:23:"activity_calendar_color";s:0:"";s:20:"other_calendar_color";s:0:"";s:25:"order_calendar_foreground";s:0:"";s:28:"activity_calendar_foreground";s:0:"";s:25:"other_calendar_foreground";s:0:"";s:13:"mobile_number";s:15:"(832) 231-8885 ";s:14:"sms_is_enabled";i:0;s:19:"hide_logo_in_header";i:0;s:11:"template_id";i:34;s:19:"website_template_id";i:0;s:24:"website_template_enabled";i:0;s:19:"preview_template_id";i:0;s:21:"custom_admin_template";i:0;s:23:"same_page_cart_disabled";i:0;s:11:"show_coupon";i:1;s:11:"show_search";i:1;s:25:"menu_link_choose_location";i:0;s:10:"is_all_ssl";i:0;s:22:"custom_fax_layout_file";s:0:"";s:7:"is_demo";i:0;s:11:"is_billable";i:1;s:14:"last_billed_on";s:19:"0000-00-00 00:00:00";s:16:"start_billing_on";s:19:"2015-10-23 20:15:05";s:12:"pdf_password";s:7:"grape23";s:11:"invite_code";s:0:"";s:17:"custom_stylesheet";s:0:"";s:19:"show_student_fields";i:0;s:16:"reseller_user_id";i:66;s:10:"logo_width";i:0;s:11:"logo_height";i:0;s:12:"directory_id";i:0;s:19:"location_name_alias";s:0:"";s:15:"custom_survo_id";s:0:"";s:19:"max_calls_per_order";i:0;s:26:"old_ehungry_restaurant_ids";s:0:"";s:22:"previous_homepage_html";s:0:"";s:25:"order_confirmation_markup";s:0:"";s:21:"additional_custom_css";s:0:"";s:18:"individual_billing";i:0;s:20:"category_list_layout";s:0:"";s:30:"obscure_payment_info_on_orders";s:1:"0";s:17:"is_directory_only";i:0;s:23:"desktop_client_password";s:0:"";s:37:"desktop_client_password_last_modified";N;s:23:"manual_payment_captures";i:0;s:27:"payment_processor_test_mode";i:0;s:17:"affiliate_user_id";i:0;s:24:"show_option_choice_names";i:0;s:7:"tagline";s:0:"";s:20:"print_order_xml_file";s:0:"";s:17:"order_sequence_id";i:0;s:24:"sequence_numbers_enabled";i:0;s:25:"custom_ordersheet_message";s:59:"Please Process Credit Card or Collect Payment From Customer";s:34:"customer_custom_ordersheet_message";s:0:"";s:17:"account_tab_label";s:0:"";s:18:"calendar_tab_label";s:0:"";s:15:"order_tab_label";s:0:"";s:19:"hide_customer_stats";i:0;s:23:"show_errors_in_dialogue";i:0;s:26:"show_advanced_addon_params";i:0;s:25:"show_menus_simultaneously";i:0;s:8:"is_store";i:0;s:23:"default_menu_item_image";s:0:"";s:34:"add_customer_receipt_to_ordersheet";i:0;s:34:"add_new_customer_msg_to_ordersheet";i:0;s:25:"is_nonstandard_ordersheet";i:0;s:31:"permit_customer_order_deletions";i:0;s:16:"hide_price_names";i:0;s:29:"show_location_on_print_ticket";i:0;s:20:"custom_rightbar_info";s:0:"";s:30:"show_homepage_on_ordering_page";i:0;s:21:"show_price_names_only";i:0;s:21:"sms_send_by_secondary";i:0;s:26:"hidden_registration_fields";s:0:"";s:20:"allow_guest_checkout";i:1;s:10:"force_bill";i:0;s:20:"location_list_format";s:0:"";s:20:"allow_client_scripts";i:0;s:15:"has_mobile_site";i:0;s:17:"last_suspended_on";s:19:"0000-00-00 00:00:00";s:8:"bill_day";i:23;s:10:"force_efax";i:0;s:14:"mobile_tablets";i:0;s:14:"force_metrofax";i:0;s:12:"social_links";s:0:"";s:9:"home_link";s:0:"";s:14:"copyright_name";s:0:"";s:12:"pricing_plan";i:0;s:21:"google_analytics_code";s:14:"UA-88799904-23";s:31:"google_analytics_linker_domains";s:0:"";s:26:"google_analytics_four_code";N;s:15:"paypal_api_data";s:0:"";s:16:"meta_description";s:88:"Order online from L & L Chinese Restaurant in Katy, TX for chinese delivery and takeout";s:13:"meta_keywords";s:241:"l & l, l & l chinese, l & l chinese katy, l & l chinese menu, katy chinese delivery, katy chinese food, katy chinese restaurants, chinese delivery, katy asian restaurants, katy chinese takeout, chinese food near me, best chinese food in katy";s:19:"getresponse_api_key";s:0:"";s:25:"getresponse_campaign_name";s:0:"";s:23:"getresponse_campaign_id";s:0:"";s:13:"email_service";s:7:"MAILGUN";s:14:"phone_priority";s:30:"["PLIVO","BANDWIDTH","TWILIO"]";s:12:"sms_priority";s:30:"["TWILIO","BANDWIDTH","PLIVO"]";s:11:"fax_service";s:6:"PHAXIO";s:18:"order_sms_priority";s:38:"["TWILIO","PLIVO","NEXMO","BANDWIDTH"]";s:19:"order_sms_hide_link";i:0;s:27:"order_sms_show_account_name";i:0;s:12:"fax_priority";s:29:"["PHAXIO","CONCORD","TWILIO"]";s:13:"admin_version";i:0;s:20:"group_orders_enabled";i:0;s:19:"auto_upsell_enabled";i:0;s:25:"hide_special_instructions";i:0;s:29:"special_instructions_required";i:0;s:28:"special_instructions_details";s:0:"";s:17:"homepage_override";s:0:"";s:13:"site_redirect";s:0:"";s:20:"admin_id_menu_access";i:0;s:6:"use_km";i:0;s:21:"default_ordering_page";i:1;s:14:"cancelled_date";s:19:"0000-00-00 00:00:00";s:17:"validate_callback";i:1;s:17:"skip_time_warning";i:0;s:7:"api_key";s:0:"";s:17:"facebook_pixel_id";s:0:"";s:21:"constant_contact_code";s:0:"";s:24:"constant_contact_form_id";s:0:"";s:38:"yelp_reservations_calendar_widget_code";s:0:"";s:21:"default_restaurant_id";i:6572;s:12:"allow_delete";i:0;s:31:"sms_order_notifications_enabled";i:0;s:36:"sms_order_notifications_for_delivery";i:0;s:34:"sms_order_notifications_for_dinein";i:0;s:34:"sms_order_notifications_for_pickup";i:0;s:31:"sms_order_notifications_minutes";i:0;s:25:"inventory_manager_enabled";i:0;s:18:"how_heard_about_us";s:0:"";s:26:"account_status_modified_at";N;s:35:"hide_restaurant_closed_checkout_msg";i:0;s:12:"use_v4_theme";N;s:32:"show_created_at_on_order_monitor";N;s:23:"show_cross_street_field";i:0;s:18:"announcements_html";N;s:21:"announcements_enabled";i:0;s:26:"announcements_expired_date";N;s:25:"display_zero_dollar_items";i:0;s:20:"new_receipt_disabled";i:0;s:23:"receipt_signature_shown";i:0;s:23:"receipt_extra_tip_shown";i:0;s:19:"receipt_email_shown";i:0;s:15:"is_receipt_bold";i:0;s:17:"receipt_font_size";i:100;s:19:"announcements_place";s:6:"header";s:9:"logo_size";s:10:"horizontal";s:23:"payment_options_enabled";i:0;s:16:"open_graph_image";N;s:25:"pos_notifications_enabled";i:0;s:35:"itsacheckmate_notifications_enabled";i:0;s:16:"menu_api_webhook";N;s:12:"menu_updated";i:0;s:36:"payment_aggregator_messaging_enabled";i:0;s:17:"sales_tax_enabled";i:0;s:8:"tax_code";N;s:22:"shipday_enabled_status";i:0;s:35:"print_orders_without_prices_enabled";i:0;s:29:"shipday_auto_dispatch_enabled";i:0;s:28:"deliver_by_ourselves_enabled";i:0;s:36:"third_party_optimal_delivery_enabled";i:0;s:35:"third_party_services_status_enabled";i:0;s:18:"payment_aggregator";s:15:"CHINESE TAKEOUT";s:35:"daily_summary_detailed_fees_enabled";i:0;s:32:"springroll_announcements_enabled";i:0;s:31:"springroll_announcements_copied";i:0;s:29:"springroll_announcements_html";N;s:37:"springroll_announcements_expired_date";N;s:30:"springroll_announcements_place";s:6:"header";s:20:"adjustments_disabled";i:0;s:16:"use_new_homepage";i:0;s:18:"google_pay_enabled";i:0;s:23:"maximum_pp_order_amount";i:0;}s:11:"\x00*\x00original";a:222:{s:11:"primary_fax";s:15:"(281) 492-0460 ";s:13:"primary_phone";s:15:"(281) 492-0430 ";s:3:"zip";s:5:"77449";s:5:"state";s:2:"TX";s:4:"city";s:4:"Katy";s:7:"street2";s:0:"";s:7:"street1";s:20:"3939 N Fry Rd, Ste G";s:2:"id";i:5924;s:9:"id_string";s:18:"llchinesesushikaty";s:7:"url_tag";s:18:"llchinesesushikaty";s:17:"marketing_url_tag";s:18:"llchinesesushikaty";s:12:"display_name";s:20:"L & L Chinese - Katy";s:5:"email";s:26:"info@chinesemenuonline.com";s:8:"password";s:60:"$2y$10$1yG2mdb1iqa.GAKRuFSqW.n9FctxGxmqW.bfkJ21zTZcMmm9HdrGm";s:22:"password_last_modified";N;s:9:"tfa_since";N;s:10:"tfa_secret";N;s:8:"timezone";i:1;s:5:"suite";s:0:"";s:9:"is_locked";i:0;s:21:"is_permanently_closed";i:0;s:14:"logo_file_name";s:0:"";s:9:"app_title";s:20:"L & L Chinese - Katy";s:14:"app_page_title";s:76:"L & L Chinese | Order Online | 3939 N Fry Rd , Katy, TX | Chinese Restaurant";s:17:"always_show_title";i:1;s:10:"custom_css";s:0:"";s:13:"homepage_html";s:1345:"<h1><span style="font-size:28px;">Welcome to {ACCOUNT_NAME}</span></h1>\n \n <div style="color:#555555;font-size:1.2em;font-weight:bolder;">{CURRENT_DATE}</div>\n \n <p>L & L Chinese Restaurant offers authentic and delicious tasting Chinese cuisine in Katy, TX. L & L's convenient location and affordable prices make our restaurant a natural choice for dine-in, take-out meals in the Katy community. Our restaurant is known for its variety of taste and high quality fresh ingredients. Come and experience our friendly atmosphere and excellent service.</p>\n \n <div style="color:#555555;font-size:1.4em;font-weight:bolder;">No Registration Required. Order Online!</div>\n \n <p>Start ordering online by clicking the button below. Simply select the menu items you want, add them to your cart and checkout. Your order will be sent to the restaurant and will be ready at the time you specify. It's that easy!</p>\n \n <p><img alt="" src="/web/documents/llchinesesushikaty/editor_uploads/WeChat%20Image_20190213190159.jpg" style="height:303px;width:270px;"></p>\n \n <p>Enjoy our complimentary tempura banana split. Available for dine-in only 2 or more guests per table. While supply last. Cannot be combined with any other offer. </p>\n \n <p><a href="/order"><img alt="Order Online Now" src="/web/images/default/orderonlinebutton.png" style="border:0;"></a></p>\n \n <p> </p>";s:12:"is_cancelled";i:0;s:10:"created_at";s:19:"2015-12-12 02:54:16";s:11:"modified_at";s:19:"2019-02-13 19:34:03";s:23:"normalized_search_terms";s:0:"";s:15:"enabled_modules";s:5:"5376a";s:22:"default_user_full_name";s:17:"SAMPLE - DELIVERY";s:10:"first_name";s:0:"";s:9:"last_name";s:0:"";s:9:"job_title";s:0:"";s:19:"menubuddies_enabled";i:0;s:24:"seo_description_disabled";i:0;s:28:"self_print_campaigns_allowed";i:0;s:16:"default_currency";s:0:"";s:30:"reseller_user_invoice_currency";N;s:20:"payment_processor_id";i:0;s:23:"payment_processor_txkey";s:0:"";s:25:"payment_processor_loginid";s:0:"";s:28:"payment_processor_public_key";s:0:"";s:20:"order_calendar_color";s:0:"";s:23:"activity_calendar_color";s:0:"";s:20:"other_calendar_color";s:0:"";s:25:"order_calendar_foreground";s:0:"";s:28:"activity_calendar_foreground";s:0:"";s:25:"other_calendar_foreground";s:0:"";s:13:"mobile_number";s:15:"(832) 231-8885 ";s:14:"sms_is_enabled";i:0;s:19:"hide_logo_in_header";i:0;s:11:"template_id";i:34;s:19:"website_template_id";i:0;s:24:"website_template_enabled";i:0;s:19:"preview_template_id";i:0;s:21:"custom_admin_template";i:0;s:23:"same_page_cart_disabled";i:0;s:11:"show_coupon";i:1;s:11:"show_search";i:1;s:25:"menu_link_choose_location";i:0;s:10:"is_all_ssl";i:0;s:22:"custom_fax_layout_file";s:0:"";s:7:"is_demo";i:0;s:11:"is_billable";i:1;s:14:"last_billed_on";s:19:"0000-00-00 00:00:00";s:16:"start_billing_on";s:19:"2015-10-23 20:15:05";s:12:"pdf_password";s:7:"grape23";s:11:"invite_code";s:0:"";s:17:"custom_stylesheet";s:0:"";s:19:"show_student_fields";i:0;s:16:"reseller_user_id";i:66;s:10:"logo_width";i:0;s:11:"logo_height";i:0;s:12:"directory_id";i:0;s:19:"location_name_alias";s:0:"";s:15:"custom_survo_id";s:0:"";s:19:"max_calls_per_order";i:0;s:26:"old_ehungry_restaurant_ids";s:0:"";s:22:"previous_homepage_html";s:0:"";s:25:"order_confirmation_markup";s:0:"";s:21:"additional_custom_css";s:0:"";s:18:"individual_billing";i:0;s:20:"category_list_layout";s:0:"";s:30:"obscure_payment_info_on_orders";s:1:"0";s:17:"is_directory_only";i:0;s:23:"desktop_client_password";s:0:"";s:37:"desktop_client_password_last_modified";N;s:23:"manual_payment_captures";i:0;s:27:"payment_processor_test_mode";i:0;s:17:"affiliate_user_id";i:0;s:24:"show_option_choice_names";i:0;s:7:"tagline";s:0:"";s:20:"print_order_xml_file";s:0:"";s:17:"order_sequence_id";i:0;s:24:"sequence_numbers_enabled";i:0;s:25:"custom_ordersheet_message";s:59:"Please Process Credit Card or Collect Payment From Customer";s:34:"customer_custom_ordersheet_message";s:0:"";s:17:"account_tab_label";s:0:"";s:18:"calendar_tab_label";s:0:"";s:15:"order_tab_label";s:0:"";s:19:"hide_customer_stats";i:0;s:23:"show_errors_in_dialogue";i:0;s:26:"show_advanced_addon_params";i:0;s:25:"show_menus_simultaneously";i:0;s:8:"is_store";i:0;s:23:"default_menu_item_image";s:0:"";s:34:"add_customer_receipt_to_ordersheet";i:0;s:34:"add_new_customer_msg_to_ordersheet";i:0;s:25:"is_nonstandard_ordersheet";i:0;s:31:"permit_customer_order_deletions";i:0;s:16:"hide_price_names";i:0;s:29:"show_location_on_print_ticket";i:0;s:20:"custom_rightbar_info";s:0:"";s:30:"show_homepage_on_ordering_page";i:0;s:21:"show_price_names_only";i:0;s:21:"sms_send_by_secondary";i:0;s:26:"hidden_registration_fields";s:0:"";s:20:"allow_guest_checkout";i:1;s:10:"force_bill";i:0;s:20:"location_list_format";s:0:"";s:20:"allow_client_scripts";i:0;s:15:"has_mobile_site";i:0;s:17:"last_suspended_on";s:19:"0000-00-00 00:00:00";s:8:"bill_day";i:23;s:10:"force_efax";i:0;s:14:"mobile_tablets";i:0;s:14:"force_metrofax";i:0;s:12:"social_links";s:0:"";s:9:"home_link";s:0:"";s:14:"copyright_name";s:0:"";s:12:"pricing_plan";i:0;s:21:"google_analytics_code";s:14:"UA-88799904-23";s:31:"google_analytics_linker_domains";s:0:"";s:26:"google_analytics_four_code";N;s:15:"paypal_api_data";s:0:"";s:16:"meta_description";s:88:"Order online from L & L Chinese Restaurant in Katy, TX for chinese delivery and takeout";s:13:"meta_keywords";s:241:"l & l, l & l chinese, l & l chinese katy, l & l chinese menu, katy chinese delivery, katy chinese food, katy chinese restaurants, chinese delivery, katy asian restaurants, katy chinese takeout, chinese food near me, best chinese food in katy";s:19:"getresponse_api_key";s:0:"";s:25:"getresponse_campaign_name";s:0:"";s:23:"getresponse_campaign_id";s:0:"";s:13:"email_service";s:7:"MAILGUN";s:14:"phone_priority";s:30:"["PLIVO","BANDWIDTH","TWILIO"]";s:12:"sms_priority";s:30:"["TWILIO","BANDWIDTH","PLIVO"]";s:11:"fax_service";s:6:"PHAXIO";s:18:"order_sms_priority";s:38:"["TWILIO","PLIVO","NEXMO","BANDWIDTH"]";s:19:"order_sms_hide_link";i:0;s:27:"order_sms_show_account_name";i:0;s:12:"fax_priority";s:29:"["PHAXIO","CONCORD","TWILIO"]";s:13:"admin_version";i:0;s:20:"group_orders_enabled";i:0;s:19:"auto_upsell_enabled";i:0;s:25:"hide_special_instructions";i:0;s:29:"special_instructions_required";i:0;s:28:"special_instructions_details";s:0:"";s:17:"homepage_override";s:0:"";s:13:"site_redirect";s:0:"";s:20:"admin_id_menu_access";i:0;s:6:"use_km";i:0;s:21:"default_ordering_page";i:1;s:14:"cancelled_date";s:19:"0000-00-00 00:00:00";s:17:"validate_callback";i:1;s:17:"skip_time_warning";i:0;s:7:"api_key";s:0:"";s:17:"facebook_pixel_id";s:0:"";s:21:"constant_contact_code";s:0:"";s:24:"constant_contact_form_id";s:0:"";s:38:"yelp_reservations_calendar_widget_code";s:0:"";s:21:"default_restaurant_id";i:6572;s:12:"allow_delete";i:0;s:31:"sms_order_notifications_enabled";i:0;s:36:"sms_order_notifications_for_delivery";i:0;s:34:"sms_order_notifications_for_dinein";i:0;s:34:"sms_order_notifications_for_pickup";i:0;s:31:"sms_order_notifications_minutes";i:0;s:25:"inventory_manager_enabled";i:0;s:18:"how_heard_about_us";s:0:"";s:26:"account_status_modified_at";N;s:35:"hide_restaurant_closed_checkout_msg";i:0;s:12:"use_v4_theme";N;s:32:"show_created_at_on_order_monitor";N;s:23:"show_cross_street_field";i:0;s:18:"announcements_html";N;s:21:"announcements_enabled";i:0;s:26:"announcements_expired_date";N;s:25:"display_zero_dollar_items";i:0;s:20:"new_receipt_disabled";i:0;s:23:"receipt_signature_shown";i:0;s:23:"receipt_extra_tip_shown";i:0;s:19:"receipt_email_shown";i:0;s:15:"is_receipt_bold";i:0;s:17:"receipt_font_size";i:100;s:19:"announcements_place";s:6:"header";s:9:"logo_size";s:10:"horizontal";s:23:"payment_options_enabled";i:0;s:16:"open_graph_image";N;s:25:"pos_notifications_enabled";i:0;s:35:"itsacheckmate_notifications_enabled";i:0;s:16:"menu_api_webhook";N;s:12:"menu_updated";i:0;s:36:"payment_aggregator_messaging_enabled";i:0;s:17:"sales_tax_enabled";i:0;s:8:"tax_code";N;s:22:"shipday_enabled_status";i:0;s:35:"print_orders_without_prices_enabled";i:0;s:29:"shipday_auto_dispatch_enabled";i:0;s:28:"deliver_by_ourselves_enabled";i:0;s:36:"third_party_optimal_delivery_enabled";i:0;s:35:"third_party_services_status_enabled";i:0;s:18:"payment_aggregator";s:15:"CHINESE TAKEOUT";s:35:"daily_summary_detailed_fees_enabled";i:0;s:32:"springroll_announcements_enabled";i:0;s:31:"springroll_announcements_copied";i:0;s:29:"springroll_announcements_html";N;s:37:"springroll_announcements_expired_date";N;s:30:"springroll_announcements_place";s:6:"header";s:20:"adjustments_disabled";i:0;s:16:"use_new_homepage";i:0;s:18:"google_pay_enabled";i:0;s:23:"maximum_pp_order_amount";i:0;}s:8:"\x00*\x00dates";a:0:{}s:13:"\x00*\x00dateFormat";N;s:9:"\x00*\x00events";a:0:{}s:14:"\x00*\x00observables";a:0:{}s:12:"\x00*\x00relations";a:0:{}s:10:"\x00*\x00touches";a:0:{}s:10:"\x00*\x00visible";a:0:{}s:11:"\x00*\x00fillable";a:0:{}s:10:"\x00*\x00guarded";a:1:{i:0;s:1:"*";}s:17:"\x00*\x00_uploadAccount";N;} """
86400
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
}
/**
* Returns the cached object, if it {@link BaseClass::SHOULD_BE_CACHED} and valid, given the $id.
* @param $id
* @return false|static
*/
protected function cacheGet($id) {
if (static::SHOULD_BE_CACHED && $id > 0 && $cache = Cache::GetObject($this->getCacheKey($id))) {
return $cache;
}
return false;
}
/**
* Caches the current object, if {@link BaseClass::SHOULD_BE_CACHED}.
*/
protected function cacheSet() {
if (static::SHOULD_BE_CACHED && $this->id > 0) {
Cache::SetObject($this->getCacheKey(), $this, static::CACHE_EXPIRATION);
}
}
/**
* Removes the current object from cache, if {@link BaseClass::SHOULD_BE_CACHED}.
*/
public function cacheDelete() {
if (static::SHOULD_BE_CACHED && $this->id > 0) {
Cache::Delete($this->getCacheKey());
}
}
/**
* Removes all objects from cache, if {@link BaseClass::SHOULD_BE_CACHED}.
*/
public static function cacheDeleteAll($chunkSize = self::CACHE_DELETE_CHUNK_SIZE) {
if (static::SHOULD_BE_CACHED) {
static::chunk($chunkSize, function ($chunk) {
foreach ($chunk as $row) {
$row->cacheDelete();
Arguments
"bc_account_5924"Account {}86400
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
* @param int|int[] $id
* @param array $columns
* @return static|Collection|static[]|null
* @todo why isn't this protected?
* @fixme side-effect of this workaround: the cache is silently skipped when running query-modifiers like ResellerUser::withoutGlobalScope('main_resellers')->find(123)
*/
public function findNew($id, $columns = ['*']) {
if (is_array($id)) {
return $this->directFind($id, $columns);
}
if ($cached = $this->cacheGet($id)) {
return $cached;
}
/** @var static $result */
$result = $this->directFind($id, $columns);
if ($result && $columns == ['*']) {
$result->cacheSet();
}
return $result;
}
/**
* Finds one or more entries in the database. In case of single-finds, checks the cache layer first.
* @see BaseClass::SHOULD_BE_CACHED
* @see Cache
* @param int|int[] $id
* @param array $columns
* @return Collection|static|static[]|null
*/
public static function find($id, $columns = ['*']) {
return (new static)->findNew($id, $columns);
}
//FIXME: we're missing cached versions for findOrFail and findOrNew, at the very least
/** @deprecated use {@link save()} instead */
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
/** @var static $result */
$result = $this->directFind($id, $columns);
if ($result && $columns == ['*']) {
$result->cacheSet();
}
return $result;
}
/**
* Finds one or more entries in the database. In case of single-finds, checks the cache layer first.
* @see BaseClass::SHOULD_BE_CACHED
* @see Cache
* @param int|int[] $id
* @param array $columns
* @return Collection|static|static[]|null
*/
public static function find($id, $columns = ['*']) {
return (new static)->findNew($id, $columns);
}
//FIXME: we're missing cached versions for findOrFail and findOrNew, at the very least
/** @deprecated use {@link save()} instead */
public function store() {
return $this->save();
}
/**
* Overrides the original save to return the generated ID.
* After saving, caching ({@link SHOULD_BE_CACHED}) and logging ({@link willLogChanges()}/{@link loggingChanges()})
* are done, if enabled.
* @param array $options The only option available is "touch" (which is true by default); setting it to false will
* disable "touching" parent relationships (aka belongsTo/belongsToMany) listed in
* {@link $touches}, which updates their timestamps upon a successful save.
* See https://laravel.com/docs/5.4/eloquent-relationships#touching-parent-timestamps
* @return bool|int Returns the ID in case of a successful operation, or false instead.
*/
public function save(array $options = []) {
Arguments
5924array:1 [ 0 => "*" ]
/
home
/deploy
/EHungry-9-boyan
/Web
/classes
/BaseClass.class.php
* Stores which classes had their logging behavior overwritten during runtime.
* @var array
* @see willLogChanges()
*/
private static $overwrittenLogChanges = [];
/**
* @var array Indicates the fields which should be placed in the restaurant's timezone when casting to JSON
* @see addDateAttributesToArray()
* @see https://github.com/ehungry/EHungry/wiki/Data-standards#timezone-less-restaurant-times
*/
protected static $restaurantDates = [];
/**
* @param int|array|ParameterHandler $idOrAttr An ID, so the entry is loaded from the database, or a list of attributes to be pre-filled into a new entry.
*/
public function __construct($idOrAttr = null) {
if (is_numeric($idOrAttr)) {
//legacy behavior
if ($entry = static::find($idOrAttr)) {
//TODO: find a way to have default attributes respected in the same way Eloquent does - probably a mix of array_merge() and array_filter() (so we clear empty values from the found entry), or maybe we'll need a custom merger so the final attribute array doesn't miss any field
$this->setRawAttributes($entry->attributes, true);
$this->exists = true;
}
$this->setAttribute('id', $idOrAttr);
parent::__construct();
} elseif (is_array($idOrAttr) || $idOrAttr instanceof ParameterHandler) {
parent::__construct($idOrAttr); //default Eloquent behavior + our custom fill()
} else {
$this->setAttribute('id', -1); //FIXME: legacy behavior as well... can we ditch this someday please????
parent::__construct();
}
}
/**
* We've overwritten the original query builder to include extra methods :)
* @param \Illuminate\Database\Query\Builder $query
* @return Builder|EloquentModel|eHungry\Illuminate\Database\Eloquent\Builder
*/
public function newEloquentBuilder($query) {
Arguments
5924
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/routes
/restaurant_list.php
display: none;
}
}
@media (max-width: 768px) {
.gm-style .gm-style-iw-c {
max-width: none !important;
max-height: none !important;
}
}
</style>
<div id="filtered-restaurants" class="d-flex flex-column gap-3 mt-3">
<? if (!$filtered_restaurants) { ?>
No restaurants match your search.
<? } ?>
<? foreach ($filtered_restaurants as $restaurant) {
$GLOBALS['account'] = new \Account($restaurant->account_id); // Unfortunately needed for `formatCustomerOrderLink`
?>
<?=\EDS\html('a', [
'id' => 'restaurant_' . $restaurant->id,
'class' => 'overflow-hidden rounded-2 border bg-white text-dark text-decoration-none',
'href' => formatCustomerOrderLink([$restaurant]),
'onclick' => static::confirmNewCart($cart, $restaurant),
], static::card($cart, $restaurant))?>
<? } ?>
</div>
</div>
</div>
<? } else { ?>
<?=static::states()?>
<? } ?>
</div>
<?=\EDS\Dialog(['id' => 'modal-map-restaurant', 'size' => 'medium', 'fullscreen' => false])?>
</section>
<?
if ($nearMeCuisine && !$map_is_shown) {
Arguments
5924
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/routes
/restaurant_list.php
}
return static::restaurantList($request);
}
public static function restaurantsByStateAndCity(array $params, array $request) {
$state = \EDS\undasherize($params['state']);
$city = \EDS\undasherize($params['city']);
$request = array_merge($request, static::getStateAndCityIfRestaurantsAvailable($state, $city));
$address = "$city, $state";
$request['search'] = $address;
$geocode_data = \ZipCode::getGeoLocation($address);
if ($geocode_data) {
$request['lat'] = $geocode_data[0];
$request['lng'] = $geocode_data[1];
}
return static::restaurantList($request);
}
private static function getStateAndCityIfRestaurantsAvailable(?string $state_or_abbr, ?string $city) {
$state_or_abbr = trim($state_or_abbr ?: '');
$city = trim($city ?: '');
$states = DataService::getStates();
$state_name = (
$state_or_abbr && array_key_exists($state_or_abbr, $states)
? $state_or_abbr
: (getStateFullName($state_or_abbr) && array_key_exists(getStateFullName($state_or_abbr), $states)
? getStateFullName($state_or_abbr)
: null)
);
$city_name = $state_name && in_array($city, $states[$state_name]) ? $city : null;
return ['state' => $state_name, 'city' => $city_name];
}
// Components
Arguments
array:9 [ "aid" => "restaurants/texas/bellaire" "status" => [] "controller" => "marketplace" "form" => "home" "state" => "Texas" "city" => "Bellaire" "search" => "Bellaire, Texas" "lat" => 29.7035195 "lng" => -95.4681409 ]
/
home
/deploy
/EHungry-9-boyan
/Web
/Services
/Router.php
* ```
*
* @return mixed
*/
public static function handle(string $method, string $url, array $request, array $route_classes) {
$_REQUEST['_VERSION'] = 4; // Important for some methods that rely on the version
$account_id_string = Account::getAccountIdString();
$decoded_url = urldecode($url); // Handle encoded characters like `%20`
$unprefixed_url = $account_id_string
? preg_replace("/^\/$account_id_string/", '', $decoded_url)
: $decoded_url;
foreach ($route_classes as $route_class) {
$routes = $route_class::ROUTES;
foreach ($routes as $path => $handler) {
$params = [];
if (preg_match("/^$path\/?$/i", "$method $unprefixed_url", $params)) {
return $route_class::$handler($params, $request);
}
}
}
http_response_code(404);
return '<div class="px-4 py-3">' . \EDS\Alert(['variant' => 'danger'], 'Not Found') . '</div>';
}
}
Arguments
array:5 [ 0 => "GET /restaurants/texas/bellaire" "state" => "texas" 1 => "texas" "city" => "bellaire" 2 => "bellaire" ]
array:9 [ "aid" => "restaurants/texas/bellaire" "status" => [] "controller" => "marketplace" "form" => "home" "state" => "Texas" "city" => "Bellaire" "search" => "Bellaire, Texas" "lat" => 29.7035195 "lng" => -95.4681409 ]
/
home
/deploy
/EHungry-9-boyan
/Web
/marketplace
/router.php
require_once(CORE_PATH . 'auth/forgotpassword.php');
require_once(CORE_PATH . 'auth/login.php');
require_once(CORE_PATH . 'auth/register.php');
require_once(CORE_PATH . 'marketplace/assets/assets.php');
require_once(__DIR__ . '/routes/landing.php');
require_once(__DIR__ . '/routes/campaigns.php');
require_once(__DIR__ . '/routes/product.php');
require_once(__DIR__ . '/routes/restaurant_list.php');
require_once(__DIR__ . '/routes/restaurant_details.php');
require_once(__DIR__ . '/routes/support.php');
require_once(__DIR__ . '/routes/generatedfilesroute.php');
$handler_output = \eHungry\Services\Router::handle(
$_SERVER['REQUEST_METHOD'],
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ?? '/',
$_REQUEST,
[
\AccountSettings\ProfileInfoRoutes::class,
\AccountSettings\BasicInformationRoutes::class,
\AccountSettings\ChangePasswordRoutes::class,
\AccountSettings\AddressRoutes::class,
\AccountSettings\PaymentMethodRoutes::class,
\AccountSettings\CommunicationRoutes::class,
\AccountSettings\CampaignsRoutes::class,
\AccountSettings\AccountRoutes::class,
\AccountSettings\OrderRoutes::class,
\AccountSettings\CouponRoutes::class,
\Auth\ForgotPasswordRoutes::class,
\Auth\LoginRoutes::class,
\Auth\RegisterRoutes::class,
LandingRoute::class,
CampaignsRoute::class,
ProductRoute::class,
RestaurantListRoute::class,
RestaurantPageRoute::class,
SupportRoutes::class,
Arguments
"GET""/restaurants/texas/bellaire"array:4 [ "aid" => "restaurants/texas/bellaire" "status" => [] "controller" => "marketplace" "form" => "home" ]
array:20 [ 0 => "AccountSettings\ProfileInfoRoutes" 1 => "AccountSettings\BasicInformationRoutes" 2 => "AccountSettings\ChangePasswordRoutes" 3 => "AccountSettings\AddressRoutes" 4 => "AccountSettings\PaymentMethodRoutes" 5 => "AccountSettings\CommunicationRoutes" 6 => "AccountSettings\CampaignsRoutes" 7 => "AccountSettings\AccountRoutes" 8 => "AccountSettings\OrderRoutes" 9 => "AccountSettings\CouponRoutes" 10 => "Auth\ForgotPasswordRoutes" 11 => "Auth\LoginRoutes" 12 => "Auth\RegisterRoutes" 13 => "Marketplace\LandingRoute" 14 => "Marketplace\CampaignsRoute" 15 => "Marketplace\ProductRoute" 16 => "Marketplace\RestaurantListRoute" 17 => "Marketplace\RestaurantPageRoute" 18 => "Marketplace\SupportRoutes" 19 => "Marketplace\GeneratedFilesRoute" ]
/
home
/deploy
/EHungry-9-boyan
/Web
/controllers
/marketplace.php
<? include(CORE_PATH . 'marketplace/router.php');
Arguments
"/home/deploy/EHungry-9-boyan/Web/marketplace/router.php"
/
home
/deploy
/EHungry-9-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
"/home/deploy/EHungry-9-boyan/Web/controllers/marketplace.php"
Environment & details:
| Key | Value |
| aid | "restaurants/texas/bellaire"
|
empty
empty
| Key | Value |
| PHPSESSID | "1fkhtnb0r8iin9vc4c6cihstbk"
|
| Key | Value |
| loc | "en_US"
|
| customer_account_id | 53676
|
| cart | Cart {}
|
| restaurant_id | 7969
|
| app_banner_shown | true
|
| eot | 1769110200
|
| redirect_form | "checkout"
|
| redirect_url | "https://www.springroll.com.9.boyan.ehungry.net/restaurant/chinahouseaustintx/checkout"
|
| CSRF_TOKEN | array:1 [ "login" => "0c267abbb47ebbdd85e76e26268f89c37d0a85c9724e789fcd43324af834417c" ] |
| status | array:2 [ 1 => [] 2 => [] ] |
| menu_id | 10135
|
| Key | Value |
| UNIQUE_ID | "aXGn3NaXSsGPR-4yIJexLgAAAAQ"
|
| SCRIPT_URL | "/restaurants/texas/bellaire"
|
| SCRIPT_URI | "http://www.springroll.com.9.boyan.ehungry.net/restaurants/texas/bellaire"
|
| HTTP_HOST | "www.springroll.com.9.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=1fkhtnb0r8iin9vc4c6cihstbk"
|
| 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.9.boyan.ehungry.net"
|
| SERVER_ADDR | "127.0.0.1"
|
| SERVER_PORT | "80"
|
| REMOTE_ADDR | "127.0.0.1"
|
| DOCUMENT_ROOT | "/home/deploy/EHungry-9-boyan/Web"
|
| REQUEST_SCHEME | "http"
|
| CONTEXT_PREFIX | "" |
| CONTEXT_DOCUMENT_ROOT | "/home/deploy/EHungry-9-boyan/Web"
|
| SERVER_ADMIN | "root@localhost"
|
| SCRIPT_FILENAME | "/home/deploy/EHungry-9-boyan/Web/index.php"
|
| REMOTE_PORT | "42986"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| SERVER_PROTOCOL | "HTTP/1.0"
|
| REQUEST_METHOD | "GET"
|
| QUERY_STRING | "aid=restaurants/texas/bellaire"
|
| REQUEST_URI | "/restaurants/texas/bellaire"
|
| SCRIPT_NAME | "/restaurants/texas/bellaire"
|
| PHP_SELF | "/restaurants/texas/bellaire"
|
| REQUEST_TIME_FLOAT | 1769056220.53
|
| REQUEST_TIME | 1769056220
|
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