Twig\Error\LoaderError
File: ...\mt-missionhillwinery\vendor\twig\twig\src\Loader\FilesystemLoader.php:227
217: return $this->cache[$name] = $path.'/'.$shortname; 218: } 219: } 220: 221: $this->errorCache[$name] = sprintf('Unable to find template "%s" (looked into: %s).', $name, implode(', ', $this->paths[$namespace])); 222: 223: if (!$throw) { 224: return null; 225: } 226: 227: throw new LoaderError($this->errorCache[$name]); 228: } 229: 230: private function normalizeName(string $name): string 231: {
121: { 122: if (null === $path = $this->findTemplate($name)) { 123: return new Source('', $name, ''); 124: } 125: 126: return new Source(file_get_contents($path), $name, $path); 127: } 128: 129: public function getCacheKey(string $name): string 130: { 131: if (null === $path = $this->findTemplate($name)) { 132: return ''; 133: } 134: $len = \strlen($this->rootPath); 135: if (0 === strncmp($this->rootPath, $path, $len)) {
| $name | 'includes/content/content_image-slider.twig'
|
|---|
281: * * Twig version; 282: * * Options with what environment was created. 283: * 284: * @param string $name The name for which to calculate the template class name 285: * @param int|null $index The index if it is an embedded template 286: * 287: * @internal 288: */ 289: public function getTemplateClass(string $name, ?int $index = null): string 290: { 291: $key = $this->getLoader()->getCacheKey($name).$this->optionsHash; 292: 293: return $this->templateClassPrefix.hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $key).(null === $index ? '' : '___'.$index); 294: } 295:
| $name | 'includes/content/content_image-slider.twig'
|
|---|
269: 270: return $template; 271: } 272: 273: if ($template === $this->getTemplateName()) { 274: $class = static::class; 275: if (false !== $pos = strrpos($class, '___', -1)) { 276: $class = substr($class, 0, $pos); 277: } 278: } else { 279: $class = $this->env->getTemplateClass($template); 280: } 281: 282: return $this->env->loadTemplate($class, $template, $index); 283: } catch (Error $e) {
| $name | 'includes/content/content_image-slider.twig'
|
|---|
| $template | 'includes/content/content_image-slider.twig'
|
|---|---|
| $templateName | 'includes/content.twig'
|
| $line | 3
|
350: try { 351: if ($this->useYield) { 352: yield from $this->doDisplay($context, $blocks); 353: 354: return; 355: } 356: 357: $level = ob_get_level(); 358: ob_start(); 359: 360: foreach ($this->doDisplay($context, $blocks) as $data) { 361: if (ob_get_length()) { 362: $data = ob_get_clean().$data; 363: ob_start(); 364: }
| $context | |
|---|---|
| $blocks | array (0)
|
| $context |
|---|
420: try { 421: if ($this->useYield) { 422: yield from $template->$block($context, $blocks); 423: 424: return; 425: } 426: 427: $level = ob_get_level(); 428: ob_start(); 429: 430: foreach ($template->$block($context, $blocks) as $data) { 431: if (ob_get_length()) { 432: $data = ob_get_clean().$data; 433: ob_start(); 434: }
| $context | |
|---|---|
| $blocks |
| $name | 'content'
|
|---|---|
| $context | |
| $blocks |
350: try { 351: if ($this->useYield) { 352: yield from $this->doDisplay($context, $blocks); 353: 354: return; 355: } 356: 357: $level = ob_get_level(); 358: ob_start(); 359: 360: foreach ($this->doDisplay($context, $blocks) as $data) { 361: if (ob_get_length()) { 362: $data = ob_get_clean().$data; 363: ob_start(); 364: }
| $context | |
|---|---|
| $blocks |
| $context | |
|---|---|
| $blocks |
350: try { 351: if ($this->useYield) { 352: yield from $this->doDisplay($context, $blocks); 353: 354: return; 355: } 356: 357: $level = ob_get_level(); 358: ob_start(); 359: 360: foreach ($this->doDisplay($context, $blocks) as $data) { 361: if (ob_get_length()) { 362: $data = ob_get_clean().$data; 363: ob_start(); 364: }
| $context | |
|---|---|
| $blocks |
325: public function display(array $context, array $blocks = []): void 326: { 327: foreach ($this->yield($context, $blocks) as $data) { 328: echo $data; 329: } 330: } 331: 332: public function render(array $context): string 333: { 334: $content = ''; 335: foreach ($this->yield($context) as $data) { 336: $content .= $data; 337: } 338: 339: return $content;
| $context |
|---|
28: * @internal 29: */ 30: public function __construct(Environment $env, Template $template) 31: { 32: $this->env = $env; 33: $this->template = $template; 34: } 35: 36: public function render(array $context = []): string 37: { 38: return $this->template->render($context); 39: } 40: 41: public function display(array $context = []) 42: {
| $context |
|---|
168: * @deprecated 2.0.0, use `timber/loader/render_data` 169: */ 170: $data = \apply_filters_deprecated( 171: 'timber_loader_render_data', 172: [$data], 173: '2.0.0', 174: 'timber/loader/render_data' 175: ); 176: 177: $template = $twig->load($file); 178: $output = $template->render($data); 179: 180: /** 181: * Filters $output before it is cached. 182: *
| $context |
|---|
1432: * @deprecated 2.0.0, use `timber/compile/data` 1433: */ 1434: $data = \apply_filters_deprecated( 1435: 'timber_compile_data', 1436: [$data], 1437: '2.0.0', 1438: 'timber/compile/data' 1439: ); 1440: } 1441: 1442: $output = $loader->render($file, $data, $expires, $cache_mode); 1443: } else { 1444: if (\is_array($filenames)) { 1445: $filenames = \implode(", ", $filenames); 1446: }
| $file | 'content.twig'
|
|---|---|
| $data | |
| $expires | false
|
| $cache_mode | 'default'
|
1567: * @param array|string $filenames Name or full path of the Twig file to render. If this is an array of file 1568: * names or paths, Timber will render the first file that exists. 1569: * @param array $data Optional. An array of data to use in Twig template. 1570: * @param bool|int|array $expires Optional. In seconds. Use false to disable cache altogether. When passed an 1571: * array, the first value is used for non-logged in visitors, the second for users. 1572: * Default false. 1573: * @param string $cache_mode Optional. Any of the cache mode constants defined in Timber\Loader. 1574: */ 1575: public static function render($filenames, $data = [], $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT): void 1576: { 1577: $output = self::compile($filenames, $data, $expires, $cache_mode, true); 1578: echo $output; 1579: } 1580: 1581: /**
| $filenames | 'content.twig'
|
|---|---|
| $data | |
| $expires | false
|
| $cache_mode | 'default'
|
| $via_render | true
|
8: use Timber\Post; 9: 10: $context = Timber::context(); 11: $post = Timber::get_post(); 12: $context['post'] = $post; 13: 14: 15: if( post_password_required($post->ID) ){ 16: Timber::render( 'password-protected.twig', $context ); 17: }else { 18: Timber::render('content.twig', $context); 19: }
| $filenames | 'content.twig'
|
|---|---|
| $data |
115: if ( $template ) { 116: /** 117: * Fires immediately before including the template. 118: * 119: * @since 6.9.0 120: * 121: * @param string $template The path of the template about to be included. 122: */ 123: do_action( 'wp_before_include_template', $template ); 124: 125: include $template; 126: } elseif ( current_user_can( 'switch_themes' ) ) { 127: $theme = wp_get_theme(); 128: if ( $theme->errors() ) { 129: wp_die( $theme->errors() );
| #0 | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery\templates\template-content.php'
|
|---|
9: 10: $wp_did_header = true; 11: 12: // Load the WordPress library. 13: require_once __DIR__ . '/wp-load.php'; 14: 15: // Set up the WordPress query. 16: wp(); 17: 18: // Load the theme template. 19: require_once ABSPATH . WPINC . '/template-loader.php'; 20: 21: }
| #0 | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-includes\template-loader.php'
|
|---|
7: */ 8: 9: /** 10: * Tells WordPress to load the WordPress theme and output it. 11: * 12: * @var bool 13: */ 14: define( 'WP_USE_THEMES', true ); 15: 16: /** Loads the WordPress Environment and Template */ 17: require __DIR__ . '/wp-blog-header.php';
| #0 | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-blog-header.php'
|
|---|
| SERVER_SOFTWARE | 'Apache/2.4.43 (Win32) mod_fcgid/2.3.9a'
|
|---|---|
| REQUEST_URI | '/tastings-experiences/iconic-winery-estate-yacht-experience/'
|
| PATH | |
| SYSTEMROOT | 'C:\\WINDOWS'
|
| WINDIR | 'C:\\WINDOWS'
|
| PHP_FCGI_MAX_REQUESTS | '1000'
|
| PHPRC | 'C:/Users/thardman/AppData/Roaming/Local/run/10LtisFzu/conf/php'
|
| _FCGI_SHUTDOWN_EVENT_ | '3988'
|
| SCRIPT_NAME | '/index.php'
|
| QUERY_STRING | ''
|
| REQUEST_METHOD | 'GET'
|
| SERVER_PROTOCOL | 'HTTP/1.1'
|
| GATEWAY_INTERFACE | 'CGI/1.1'
|
| REDIRECT_URL | '/tastings-experiences/iconic-winery-estate-yacht-experience/'
|
| REMOTE_PORT | '50442'
|
| SCRIPT_FILENAME | 'C:/Users/thardman/Local Sites/mission-hill-family-estate/app/public/index.php'
|
| SERVER_ADMIN | 'webmaster@localhost'
|
| CONTEXT_DOCUMENT_ROOT | 'C:/Users/thardman/Local Sites/mission-hill-family-estate/app/public'
|
| CONTEXT_PREFIX | ''
|
| REQUEST_SCHEME | 'http'
|
| DOCUMENT_ROOT | 'C:/Users/thardman/Local Sites/mission-hill-family-estate/app/public'
|
| REMOTE_ADDR | '127.0.0.1'
|
| SERVER_PORT | '10023'
|
| SERVER_ADDR | '127.0.0.1'
|
| SERVER_NAME | 'missionhillwinery.local'
|
| SERVER_SIGNATURE | ''
|
| SystemRoot | 'C:\\WINDOWS'
|
| HTTP_COOKIE | 'tracy-session=12bedf78d2'
|
| HTTP_ACCEPT_ENCODING | 'deflate, gzip'
|
| HTTP_ACCEPT | '*/*'
|
| HTTP_USER_AGENT | 'WordPress/6.9.1; https://missionhillwinery.majortomcapsule.com'
|
| HTTP_CONNECTION | 'close'
|
| HTTP_X_FORWARDED_PROTO | 'https'
|
| HTTP_X_FORWARDED_HOST | 'missionhillwinery.local'
|
| HTTP_X_FORWARDED_FOR | '::1'
|
| HTTP_X_REAL_IP | '::1'
|
| HTTP_HOST | 'missionhillwinery.local'
|
| HTTP_AUTHORIZATION | ''
|
| HTTPS | 'on'
|
| REDIRECT_STATUS | '200'
|
| REDIRECT_HTTP_AUTHORIZATION | ''
|
| REDIRECT_HTTPS | 'on'
|
| FCGI_ROLE | 'RESPONDER'
|
| PHP_SELF | '/index.php'
|
| REQUEST_TIME_FLOAT | 1772078200.564753
|
| REQUEST_TIME | 1772078200
|
| WP_USE_THEMES | true
|
|---|---|
| ABSPATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/'
|
| WP_CACHE | false
|
| DB_NAME | 'local'
|
| DB_USER | 'root'
|
| DB_PASSWORD | 'root'
|
| DB_HOST | 'localhost'
|
| DB_CHARSET | 'utf8'
|
| DB_COLLATE | ''
|
| AUTH_KEY | |
| SECURE_AUTH_KEY | '~?c2LB5vO/opfY @{XD|,,X!{cFfl7d;xVPZg{sois77hG|2dM*03PoEs=ddmT=;'
|
| LOGGED_IN_KEY | |
| NONCE_KEY | |
| AUTH_SALT | |
| SECURE_AUTH_SALT | |
| LOGGED_IN_SALT | |
| NONCE_SALT | |
| WP_CACHE_KEY_SALT | |
| WPMUDEV_LIMIT_TO_USER | '34,32,1,36'
|
| WP_DEBUG | true
|
| WP_DEBUG_LOG | true
|
| WP_DEBUG_DISPLAY | false
|
| WP_ENVIRONMENT_TYPE | 'local'
|
| WPINC | 'wp-includes'
|
| IMAGETYPE_HEIF | 20
|
| KB_IN_BYTES | 1024
|
| MB_IN_BYTES | 1048576
|
| GB_IN_BYTES | 1073741824
|
| TB_IN_BYTES | 1099511627776
|
| PB_IN_BYTES | 1125899906842624
|
| EB_IN_BYTES | |
| ZB_IN_BYTES | 1.1805916207174113e+21
|
| YB_IN_BYTES | 1.2089258196146292e+24
|
| WP_START_TIMESTAMP | 1772078200.569318
|
| WP_MEMORY_LIMIT | '40M'
|
| WP_MAX_MEMORY_LIMIT | '256M'
|
| WP_CONTENT_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content'
|
| WP_DEVELOPMENT_MODE | ''
|
| SCRIPT_DEBUG | false
|
| MEDIA_TRASH | false
|
| SHORTINIT | false
|
| WP_FEATURE_BETTER_PASSWORDS | true
|
| MINUTE_IN_SECONDS | 60
|
| HOUR_IN_SECONDS | 3600
|
| DAY_IN_SECONDS | 86400
|
| WEEK_IN_SECONDS | 604800
|
| MONTH_IN_SECONDS | 2592000
|
| YEAR_IN_SECONDS | 31536000
|
| WP_LANG_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/languages'
|
| LANGDIR | 'wp-content/languages'
|
| EZSQL_VERSION | 'WP1.25'
|
| OBJECT | 'OBJECT'
|
| object | 'OBJECT'
|
| OBJECT_K | 'OBJECT_K'
|
| ARRAY_A | 'ARRAY_A'
|
| ARRAY_N | 'ARRAY_N'
|
| MULTISITE | false
|
| WP_TEMPLATE_PART_AREA_HEADER | 'header'
|
| WP_TEMPLATE_PART_AREA_FOOTER | 'footer'
|
| WP_TEMPLATE_PART_AREA_SIDEBAR | 'sidebar'
|
| WP_TEMPLATE_PART_AREA_UNCATEGORIZED | 'uncategorized'
|
| EP_NONE | 0
|
| EP_PERMALINK | 1
|
| EP_ATTACHMENT | 2
|
| EP_DATE | 4
|
| EP_YEAR | 8
|
| EP_MONTH | 16
|
| EP_DAY | 32
|
| EP_ROOT | 64
|
| EP_COMMENTS | 128
|
| EP_SEARCH | 256
|
| EP_CATEGORIES | 512
|
| EP_TAGS | 1024
|
| EP_AUTHORS | 2048
|
| EP_PAGES | 4096
|
| EP_ALL_ARCHIVES | 3644
|
| EP_ALL | 8191
|
| CUSTOM_TAGS | false
|
| REQUESTS_AUTOLOAD_REGISTERED | true
|
| REST_API_VERSION | '2.0'
|
| BLOCKS_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-includes/blocks/'
|
| WP_CONTENT_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content'
|
| WP_PLUGIN_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/plugins'
|
| WP_PLUGIN_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins'
|
| PLUGINDIR | 'wp-content/plugins'
|
| WPMU_PLUGIN_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/mu-plugins'
|
| WPMU_PLUGIN_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/mu-plugins'
|
| MUPLUGINDIR | 'wp-content/mu-plugins'
|
| COOKIEHASH | '9127f75009eeb96347357009dcba6377'
|
| USER_COOKIE | 'wordpressuser_9127f75009eeb96347357009dcba6377'
|
| PASS_COOKIE | 'wordpresspass_9127f75009eeb96347357009dcba6377'
|
| AUTH_COOKIE | 'wordpress_9127f75009eeb96347357009dcba6377'
|
| SECURE_AUTH_COOKIE | 'wordpress_sec_9127f75009eeb96347357009dcba6377'
|
| LOGGED_IN_COOKIE | 'wordpress_logged_in_9127f75009eeb96347357009dcba6377'
|
| TEST_COOKIE | 'wordpress_test_cookie'
|
| COOKIEPATH | '/'
|
| SITECOOKIEPATH | '/'
|
| ADMIN_COOKIE_PATH | '/wp-admin'
|
| PLUGINS_COOKIE_PATH | '/wp-content/plugins'
|
| COOKIE_DOMAIN | ''
|
| RECOVERY_MODE_COOKIE | 'wordpress_rec_9127f75009eeb96347357009dcba6377'
|
| FORCE_SSL_ADMIN | true
|
| RG_CURRENT_PAGE | 'index.php'
|
| IS_ADMIN | false
|
| RG_CURRENT_VIEW | ''
|
| GF_MIN_WP_VERSION | '6.5'
|
| GF_SUPPORTED_WP_VERSION | true
|
| GF_MIN_WP_VERSION_SUPPORT_TERMS | '6.8'
|
| GF_MIN_PHP_VERSION | '7.4'
|
| GF_PLUGIN_DIR_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\gravityforms/'
|
| GRAVITY_MANAGER_URL | 'https://gravityapi.com/wp-content/plugins/gravitymanager'
|
| GF_PLUGIN_BASENAME | 'gravityforms/gravityforms.php'
|
| GFWEBAPI_REQUIRE_SIGNATURE | true
|
| GFWEBAPI_SLUG | 'gravityformsapi'
|
| GFWEBAPI_ROUTE_VAR | 'gfapi_route'
|
| GFWEBAPI_API_BASE_URL | 'https://missionhillwinery.majortomcapsule.com/gravityformsapi'
|
| ICL_SITEPRESS_VERSION | '4.8.6'
|
| ICL_SITEPRESS_SCRIPT_VERSION | '486900'
|
| WPML_PLUGIN_BASENAME | 'sitepress-multilingual-cms/sitepress.php'
|
| WPML_PLUGIN_FOLDER | 'sitepress-multilingual-cms'
|
| WPML_PLUGIN_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms'
|
| WPML_PLUGINS_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins'
|
| WPML_PLUGIN_FILE | 'sitepress.php'
|
| ICL_PLUGIN_FULL_PATH | 'sitepress-multilingual-cms/sitepress.php'
|
| ICL_PLUGIN_FOLDER | 'sitepress-multilingual-cms'
|
| ICL_PLUGIN_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms'
|
| ICL_PLUGIN_FILE | 'sitepress.php'
|
| HTTP_URL_REPLACE | 1
|
| HTTP_URL_JOIN_PATH | 2
|
| HTTP_URL_JOIN_QUERY | 4
|
| HTTP_URL_STRIP_USER | 8
|
| HTTP_URL_STRIP_PASS | 16
|
| HTTP_URL_STRIP_AUTH | 32
|
| HTTP_URL_STRIP_PORT | 64
|
| HTTP_URL_STRIP_PATH | 128
|
| HTTP_URL_STRIP_QUERY | 256
|
| HTTP_URL_STRIP_FRAGMENT | 512
|
| HTTP_URL_STRIP_ALL | 1024
|
| ICL_PLUGIN_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/sitepress-multilingual-cms'
|
| OTG_SANDBOX | false
|
| ICL_API_ENDPOINT | 'https://www.icanlocalize.com'
|
| OTG_TRANSLATION_PROXY_URL | 'https://tp.wpml.org'
|
| ICL_PLUGIN_INACTIVE | false
|
| WPML_PRIORITY_BEFORE_EVERYTHING | |
| ICL_TM_NOT_TRANSLATED | 0
|
| ICL_TM_WAITING_FOR_TRANSLATOR | 1
|
| ICL_TM_IN_PROGRESS | 2
|
| ICL_TM_NEEDS_UPDATE | 3
|
| ICL_TM_TRANSLATION_READY_TO_DOWNLOAD | 4
|
| ICL_TM_DUPLICATE | 9
|
| ICL_TM_COMPLETE | 10
|
| ICL_TM_IN_BASKET | 20
|
| ICL_TM_NEEDS_REVIEW | 30
|
| ICL_TM_ATE_NEEDS_RETRY | 40
|
| ICL_TM_PENDING_TP | 102
|
| ICL_TM_ATE_CANCELLED | 42
|
| ICL_TM_NOTIFICATION_NONE | 0
|
| ICL_TM_NOTIFICATION_IMMEDIATELY | 1
|
| ICL_TM_NOTIFICATION_DAILY | 2
|
| ICL_TM_TMETHOD_MANUAL | 0
|
| ICL_TM_TMETHOD_EDITOR | 1
|
| ICL_TM_TMETHOD_PRO | 2
|
| ICL_TM_TMETHOD_ATE | 'ATE'
|
| ICL_TM_DOCS_PER_PAGE | 20
|
| ICL_ASIAN_LANGUAGE_CHAR_SIZE | 6
|
| CMS_REQUEST_WAITING_FOR_PROJECT_CREATION | 1
|
| ICL_FINANCE_LINK | '/finance'
|
| MESSAGE_TRANSLATION_IN_PROGRESS | 3
|
| MESSAGE_TRANSLATION_COMPLETE | 4
|
| ICL_LANG_SEL_BLUE_FONT_CURRENT_NORMAL | '#ffffff'
|
| ICL_LANG_SEL_BLUE_FONT_CURRENT_HOVER | '#000000'
|
| ICL_LANG_SEL_BLUE_BACKGROUND_CURRENT_NORMAL | '#0099cc'
|
| ICL_LANG_SEL_BLUE_BACKGROUND_CURRENT_HOVER | '#0099cc'
|
| ICL_LANG_SEL_BLUE_FONT_OTHER_NORMAL | '#000000'
|
| ICL_LANG_SEL_BLUE_FONT_OTHER_HOVER | '#000000'
|
| ICL_LANG_SEL_BLUE_BACKGROUND_OTHER_NORMAL | '#eeeeee'
|
| ICL_LANG_SEL_BLUE_BACKGROUND_OTHER_HOVER | '#cccccc'
|
| ICL_LANG_SEL_BLUE_BORDER | '#000000'
|
| ICL_LANG_SEL_WHITE_FONT_CURRENT_NORMAL | '#444444'
|
| ICL_LANG_SEL_WHITE_FONT_CURRENT_HOVER | '#000000'
|
| ICL_LANG_SEL_WHITE_BACKGROUND_CURRENT_NORMAL | '#ffffff'
|
| ICL_LANG_SEL_WHITE_BACKGROUND_CURRENT_HOVER | '#eeeeee'
|
| ICL_LANG_SEL_WHITE_FONT_OTHER_NORMAL | '#444444'
|
| ICL_LANG_SEL_WHITE_FONT_OTHER_HOVER | '#000000'
|
| ICL_LANG_SEL_WHITE_BACKGROUND_OTHER_NORMAL | '#ffffff'
|
| ICL_LANG_SEL_WHITE_BACKGROUND_OTHER_HOVER | '#eeeeee'
|
| ICL_LANG_SEL_WHITE_BORDER | '#aaaaaa'
|
| ICL_LANG_SEL_GRAY_FONT_CURRENT_NORMAL | '#222222'
|
| ICL_LANG_SEL_GRAY_FONT_CURRENT_HOVER | '#000000'
|
| ICL_LANG_SEL_GRAY_BACKGROUND_CURRENT_NORMAL | '#eeeeee'
|
| ICL_LANG_SEL_GRAY_BACKGROUND_CURRENT_HOVER | '#dddddd'
|
| ICL_LANG_SEL_GRAY_FONT_OTHER_NORMAL | '#222222'
|
| ICL_LANG_SEL_GRAY_FONT_OTHER_HOVER | '#000000'
|
| ICL_LANG_SEL_GRAY_BACKGROUND_OTHER_NORMAL | '#eeeeee'
|
| ICL_LANG_SEL_GRAY_BACKGROUND_OTHER_HOVER | '#dddddd'
|
| ICL_LANG_SEL_GRAY_BORDER | '#555555'
|
| ICL_PRO_TRANSLATION_COST_PER_WORD | 0.09
|
| ICL_PRO_TRANSLATION_PICKUP_XMLRPC | 0
|
| ICL_PRO_TRANSLATION_PICKUP_POLLING | 1
|
| ICL_REMOTE_WPML_CONFIG_FILES_INDEX | 'http://cdn.wpml.org/'
|
| ICL_ICONS_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/sitepress-multilingual-cms/res/img/'
|
| WPML_ELEMENT_IS_NOT_TRANSLATED | 0
|
| WPML_ELEMENT_IS_TRANSLATED | 1
|
| WPML_ELEMENT_IS_DUPLICATED | 2
|
| WPML_ELEMENT_IS_A_DUPLICATE | 3
|
| WPML_STRING_TABLE_NAME_CONTEXT_LENGTH | 160
|
| WPML_QUERY_IS_ROOT | 1
|
| WPML_QUERY_IS_OTHER_THAN_ROOT | 2
|
| WPML_QUERY_IS_NOT_FOR_POST | 3
|
| WPML_XDOMAIN_DATA_OFF | 0
|
| WPML_XDOMAIN_DATA_GET | 1
|
| WPML_XDOMAIN_DATA_POST | 2
|
| WPML_TT_TAXONOMIES_NOT_TRANSLATED | 1
|
| WPML_TT_TAXONOMIES_ALL | 0
|
| WPML_TT_TERMS_PER_PAGE | 10
|
| WPML_TRANSLATE_CUSTOM_FIELD | 2
|
| WPML_COPY_CUSTOM_FIELD | 1
|
| WPML_IGNORE_CUSTOM_FIELD | 0
|
| WPML_COPY_ONCE_CUSTOM_FIELD | 3
|
| WPML_POST_META_CONFIG_INDEX_SINGULAR | 'custom-field'
|
| WPML_POST_META_SETTING_INDEX_SINGULAR | 'custom_field'
|
| WPML_POST_META_CONFIG_INDEX_PLURAL | 'custom-fields'
|
| WPML_POST_META_SETTING_INDEX_PLURAL | 'custom_fields_translation'
|
| WPML_TERM_META_CONFIG_INDEX_SINGULAR | 'custom-term-field'
|
| WPML_TERM_META_CONFIG_INDEX_PLURAL | 'custom-term-fields'
|
| WPML_TERM_META_SETTING_INDEX_SINGULAR | 'custom_term_field'
|
| WPML_TERM_META_SETTING_INDEX_PLURAL | 'custom_term_fields_translation'
|
| WPML_POST_META_READONLY_SETTING_INDEX | 'custom_fields_readonly_config'
|
| WPML_TERM_META_READONLY_SETTING_INDEX | 'custom_term_fields_readonly_config'
|
| WPML_POST_META_UNLOCKED_SETTING_INDEX | 'custom_fields_unlocked_config'
|
| WPML_TERM_META_UNLOCKED_SETTING_INDEX | 'custom_term_fields_unlocked_config'
|
| WPML_POST_TYPE_READONLY_SETTING_INDEX | 'custom_types_readonly_config'
|
| WPML_LANGUAGE_NEGOTIATION_TYPE_DIRECTORY | 1
|
| WPML_LANGUAGE_NEGOTIATION_TYPE_DOMAIN | 2
|
| WPML_LANGUAGE_NEGOTIATION_TYPE_PARAMETER | 3
|
| WPML_ELEMENT_TRANSLATIONS_CACHE_GROUP | 'element_translations'
|
| WEBSITE_DETAILS_TRANSIENT_KEY | 'wpml_icl_query_website_details'
|
| WPML_CONTENT_TYPE_DONT_TRANSLATE | 0
|
| WPML_CONTENT_TYPE_TRANSLATE | 1
|
| WPML_CONTENT_TYPE_DISPLAY_AS_IF_TRANSLATED | 2
|
| ICL_DISABLE_CACHE | false
|
| WPML_TM_VERSION | '2.11.0'
|
| WPML_TM_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms'
|
| ACFCF_CODEMIRROR_VERSION | 'codemirror-5.23.0'
|
| ACFCF_PLUGIN_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\acf-code-field'
|
| ACF_GF_FIELD_VERSION | '1.3.8'
|
| ACF_GF_FIELD_LANGUAGES | 'acf-gravityforms-add-on/languages/'
|
| ACF_GF_FIELD_TEXTDOMAIN | 'acf-gravityforms-add-on'
|
| ACF_GF_FIELD_ASSETS | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/acf-gravityforms-add-on/'
|
| ACF_GF_FIELD_RESOURCES | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\acf-gravityforms-add-on/resources/'
|
| AME_ROOT_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\admin-menu-editor-pro'
|
| WS_AME_USE_BUNDLES | true
|
| WS_AME_INTERNAL_VERSION | 2024.001
|
| AME_HAS_CUSTOMIZABLES | true
|
| AME_CUSTOMIZABLE_BASE_FILE | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\admin-menu-editor-pro\customizables\constants.php'
|
| AME_RC_ONLY_CUSTOM | 1
|
| AME_RC_USE_DEFAULT_ACCESS | 2
|
| ACF | true
|
| ACF_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\advanced-custom-fields-pro/'
|
| ACF_BASENAME | 'advanced-custom-fields-pro/acf.php'
|
| ACF_VERSION | '6.7.0.2'
|
| ACF_MAJOR_VERSION | 6
|
| ACF_FIELD_API_VERSION | 5
|
| ACF_UPGRADE_VERSION | '5.5.0'
|
| ACF_PRO | true
|
| DUPLICATE_PAGE_PLUGIN_DIRNAME | 'duplicate-page'
|
| DUPLICATE_PAGE_PLUGIN_VERSION | '4.5.6'
|
| __FP_FILE__ | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\fakerpress\fakerpress.php'
|
| GRAVITYFORMS_MULTILINGUAL_VERSION | '1.8.3'
|
| GRAVITYFORMS_MULTILINGUAL_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\gravityforms-multilingual'
|
| GF_ACTIVECAMPAIGN_VERSION | '2.2.0'
|
| SBI_STORE_URL | 'https://smashballoon.com/'
|
| SBI_PLUGIN_NAME | 'Instagram Feed Free'
|
| SBIVER | '6.10.0'
|
| SBI_DBVERSION | '2.4'
|
| SBI_UPLOADS_NAME | 'sb-instagram-feed-images'
|
| SBI_INSTAGRAM_POSTS_TYPE | 'sbi_instagram_posts'
|
| SBI_INSTAGRAM_FEEDS_POSTS | 'sbi_instagram_feeds_posts'
|
| SBI_INSTAGRAM_FEED_LOCATOR | 'sbi_instagram_feed_locator'
|
| SBI_REFRESH_THRESHOLD_OFFSET | 3456000
|
| SBI_MINIMUM_INTERVAL | 600
|
| SBI_CONNECT_URL | 'https://connect-ig.smashballoon.com/'
|
| SBI_OEMBED_CONNECT_URL | 'https://connect-tools.smashballoon.com/'
|
| MAJORTOM_SITEMAP_VERSION | '1.0.0'
|
| CPTPATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\post-types-order/'
|
| CPTURL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/post-types-order'
|
| PTO_VERSION | '2.4.2'
|
| REDIRECTION_DB_VERSION | '4.2'
|
| REDIRECTION_FILE | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\redirection\redirection.php'
|
| REDIRECTION_FLYING_SOLO | true
|
| REDIRECTION_VERSION | '5.6.1'
|
| REDIRECTION_BUILD | 'e2fd25a2bf9aea1747d3bca71f9143e7'
|
| REDIRECTION_MIN_WP | '6.4'
|
| RIDWPA_VERSION | '1.6.1'
|
| RIDWPAISWP30 | true
|
| TOPATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\taxonomy-terms-order/'
|
| TOURL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/taxonomy-terms-order'
|
| TTO_VERSION | '1.9.3'
|
| C7WP_ROOT | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-commerce7'
|
| C7WP_URI | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/wp-commerce7/'
|
| C7WP_VERSION | '1.6.1'
|
| C7WP_NOTICES_URL | 'https://c7wp.com/notices.json'
|
| Crontrol\PLUGIN_FILE | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-crontrol\wp-crontrol.php'
|
| Crontrol\WP_CRONTROL_VERSION | '1.20.0'
|
| Crontrol\TRANSIENT | 'crontrol-message-%d'
|
| Crontrol\PAUSED_OPTION | 'wp_crontrol_paused'
|
| Crontrol\MESSAGE_UNKNOWN_ERROR | 1
|
| Crontrol\MESSAGE_HOOK_DELETED_ALL | 2
|
| Crontrol\MESSAGE_EVENT_NONE_TO_DELETE | 3
|
| Crontrol\MESSAGE_EVENT_SAVED | 4
|
| Crontrol\MESSAGE_EVENT_RUN_NOW | 5
|
| Crontrol\MESSAGE_EVENT_DELETED | 6
|
| Crontrol\MESSAGE_EVENT_FAILED_TO_DELETE | 7
|
| Crontrol\MESSAGE_EVENT_FAILED_TO_EXECUTE | 8
|
| Crontrol\MESSAGE_EVENT_DELETED_SELECTED | 9
|
| Crontrol\MESSAGE_EVENT_FAILED_TO_SAVE | 10
|
| Crontrol\MESSAGE_HOOK_PAUSED | 11
|
| Crontrol\MESSAGE_HOOK_RESUMED | 12
|
| Crontrol\MESSAGE_EVENT_URL_EVENT_SAVED | 13
|
| Crontrol\MESSAGE_EVENT_PHP_EVENT_SAVED | 14
|
| Crontrol\MESSAGE_SCHEDULE_DELETED | 2
|
| Crontrol\MESSAGE_SCHEDULE_SAVED | 3
|
| Crontrol\MESSAGE_SCHEDULE_DUPLICATE | 4
|
| WPMDBPRO_FILE | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-migrate-db-pro\wp-migrate-db-pro.php'
|
| WPMDBPRO_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-migrate-db-pro/'
|
| WPMDB_PRO | true
|
| WPMDB_VENDOR_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-migrate-db-pro/vendor'
|
| WPMDB_PLUGIN_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-migrate-db-pro/'
|
| WPMDB_MINIMUM_WP_VERSION | '5.2'
|
| WPMDB_MINIMUM_PHP_VERSION | '5.6'
|
| REQUESTS_SILENCE_PSR0_DEPRECATIONS | true
|
| NESTEDPAGES_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-nested-pages'
|
| NESTEDPAGES_URI | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-nested-pages\nestedpages.php'
|
| WPSEOML_VERSION | '2.2.4'
|
| WPSEOML_PLUGIN_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-seo-multilingual'
|
| WP_SMUSH_VERSION | '3.23.2'
|
| WP_SHARED_UI_VERSION | 'sui-2-12-23'
|
| WP_SMUSH_BASENAME | 'wp-smush-pro/wp-smush.php'
|
| WP_SMUSH_API | 'https://smushpro.wpmudev.com/1.0/'
|
| WP_SMUSH_UA | 'WP Smush/3.23.2; https://missionhillwinery.majortomcapsule.com'
|
| WP_SMUSH_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-smush-pro/'
|
| WP_SMUSH_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/wp-smush-pro/'
|
| WP_SMUSH_MAX_BYTES | 5242880
|
| WP_SMUSH_PREMIUM_MAX_BYTES | 268435456
|
| WP_SMUSH_TIMEOUT | 420
|
| WP_SMUSH_RETRY_ATTEMPTS | 3
|
| WP_SMUSH_RETRY_WAIT | 1
|
| WP_SMUSH_PARALLEL | true
|
| WP_SMUSH_BACKGROUND | true
|
| WP_SMUSH_MIN_PHP_VERSION | '7.4'
|
| WP_SMUSH_STREAMS_CUTOFF_SIZE | 5242880
|
| WP_SMUSH_ASYNC | true
|
| WPML_MEDIA_VERSION | '3.0.0'
|
| WPML_MEDIA_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wpml-media-translation'
|
| WPML_MEDIA_FOLDER | 'wpml-media-translation'
|
| WPML_MEDIA_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/wpml-media-translation'
|
| WPML_ST_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wpml-string-translation'
|
| WPML_ST_VERSION | '3.4.1'
|
| WPML_ST_FOLDER | 'wpml-string-translation'
|
| WPML_ST_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/wpml-string-translation'
|
| WPML_ST_MENU_URL | 'wpml-string-translation/menu/string-translation.php'
|
| ICL_STRING_TRANSLATION_PARTIAL | 2
|
| ICL_STRING_TRANSLATION_COMPLETE | 10
|
| ICL_STRING_TRANSLATION_NEEDS_UPDATE | 3
|
| ICL_STRING_TRANSLATION_NOT_TRANSLATED | 0
|
| ICL_STRING_TRANSLATION_WAITING_FOR_TRANSLATOR | 1
|
| ICL_STRING_TRANSLATION_TEMPLATE_DIRECTORY | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/themes/mt-missionhillwinery'
|
| ICL_STRING_TRANSLATION_STYLESHEET_DIRECTORY | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/themes/mt-missionhillwinery'
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_SOURCE | 0
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_PAGE | 1
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_THRESHOLD | 5
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_FRONTEND | 6
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_BACKEND | 7
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_REST | 8
|
| ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_AJAX | 9
|
| ICL_STRING_TRANSLATION_AUTO_REGISTER_THRESHOLD | 500
|
| ICL_STRING_TRANSLATION_DYNAMIC_CONTEXT | 'wpml_string'
|
| WPML_ST_DEFAULT_STRINGS_PER_PAGE | 10
|
| WPML_ST_WIDGET_STRING_DOMAIN | 'Widgets'
|
| WPMUDEV_DISABLE_REMOTE_ACCESS | false
|
| WPMUDEV_MENU_LOCATION | '3.012'
|
| WPMUDEV_NO_AUTOACTIVATE | false
|
| WPMUDEV_CUSTOM_API_SERVER | false
|
| WPMUDEV_API_UNCOMPRESSED | false
|
| WPMUDEV_API_SSLVERIFY | true
|
| WPMUDEV_API_AUTHORIZATION | false
|
| WPMUDEV_API_DEBUG | false
|
| WPMUDEV_API_DEBUG_ALL | false
|
| WPMUDEV_DISABLE_SSO | false
|
| FS_CONNECT_TIMEOUT | 30
|
| FS_TIMEOUT | 30
|
| FS_CHMOD_DIR | 511
|
| FS_CHMOD_FILE | 438
|
| WPML_PACKAGE_TRANSLATION | '0.0.2'
|
| WPML_PACKAGE_TRANSLATION_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wpml-string-translation\inc\package-translation'
|
| WPML_PACKAGE_TRANSLATION_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/wpml-string-translation/inc/package-translation'
|
| LINE | 0
|
| AREA | 1
|
| VISUAL | 2
|
| AME_WIDGET_EDITOR_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\admin-menu-editor-pro\extras\modules\dashboard-widget-editor'
|
| ICL_LANGUAGE_CODE | 'en'
|
| ICL_LANGUAGE_NAME | 'EN'
|
| ICL_LANGUAGE_NAME_EN | 'English'
|
| WPML_TM_FOLDER | 'tm'
|
| WPML_TM_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/sitepress-multilingual-cms'
|
| TP_MIGRATION_NOT_STARTED | 0
|
| TP_MIGRATION_REQUESTED | 2
|
| TP_MIGRATION_IN_PROGRESS | 3
|
| TP_MIGRATION_WAITING_CONFIRMATION | 4
|
| TP_MIGRATION_COMPLETED | 1
|
| TRANSLATION_PROXY_XLIFF_VERSION | '12'
|
| WPML_XLIFF_TM_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/sitepress-multilingual-cms'
|
| WPML_XLIFF_TM_NEWLINES_REPLACE | 1
|
| WPML_XLIFF_TM_NEWLINES_ORIGINAL | 2
|
| WPML_XLIFF_DEFAULT_VERSION | '12'
|
| TA_URL_ENDPOINT | 'https://www.icanlocalize.com'
|
| TA_SCHEDULE_OCCURENCE | 'daily'
|
| ACFML_VERSION | '2.1.5'
|
| ACFML_PLUGIN_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\acfml'
|
| ACFML_PLUGIN_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/acfml'
|
| GRAVITY_API_URL | 'https://gravityapi.com/wp-json/gravityapi/v1'
|
| WPML_VERSION | '486900'
|
| WPML_ROOT_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms\vendor\wpml\wpml\src/..'
|
| WPML_PUBLIC_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms\vendor\wpml\wpml\src/../public'
|
| WPML_CAP_MANAGE_OPTIONS | 'manage_options'
|
| WPML_CAP_MANAGE_TRANSLATIONS | 'manage_translations'
|
| WPMUDEV_HUB_CONNECTOR_FILE | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\wp-smush-pro\core\external\hub-connector\connector.php'
|
| WPMUDEV_HUB_CONNECTOR_VERSION | '1.0.8'
|
| WPMUDEV_HUB_CONNECTOR_SUI_VERSION | 'sui-2-12-24'
|
| ICL_GRAVITY_FORM_ELEMENT_TYPE | 'gravity_form'
|
| AUTOSAVE_INTERVAL | 60
|
| EMPTY_TRASH_DAYS | 30
|
| WP_POST_REVISIONS | true
|
| WP_CRON_LOCK_TIMEOUT | 60
|
| TEMPLATEPATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/themes/mt-missionhillwinery'
|
| STYLESHEETPATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/themes/mt-missionhillwinery'
|
| WP_DEFAULT_THEME | 'twentytwentyfive'
|
| KINT_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery\vendor\kint-php\kint'
|
| KINT_WIN | true
|
| KINT_PHP72 | true
|
| KINT_PHP73 | true
|
| KINT_PHP74 | true
|
| KINT_PHP80 | true
|
| KINT_PHP81 | true
|
| KINT_PHP82 | true
|
| KINT_PHP83 | false
|
| KINT_PHP84 | false
|
| TIMBER_LOC | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery\vendor\timber\timber'
|
| TIMBER_LOADED | true
|
| WPML_PAGE_BUILDERS_LOADED | 31
|
| WPML_PAGE_BUILDERS_VERSION | '2.4.0.1'
|
| WPML_PAGE_BUILDERS_PATH | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\sitepress-multilingual-cms\addons\wpml-page-builders'
|
| ACF_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/advanced-custom-fields-pro/'
|
| OTGS_ASSETS_ICONS_STYLES | 'otgs-icons'
|
| ICL_PRODUCTION_MODE | '2.1.1'
|
| SBI_PLUGIN_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\instagram-feed/'
|
| SBI_PLUGIN_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/instagram-feed/'
|
| SBI_PLUGIN_BASENAME | 'instagram-feed/instagram-feed.php'
|
| SBI_BACKUP_PREFIX | '!'
|
| SBI_FPL_PREFIX | '$'
|
| SBI_USE_BACKUP_PREFIX | |
| SBI_CRON_UPDATE_CACHE_TIME | 5184000
|
| SBI_MAX_RECORDS | 350
|
| SBI_BUILDER_DIR | 'C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\plugins\instagram-feed/admin/builder/'
|
| SBI_BUILDER_URL | 'https://missionhillwinery.majortomcapsule.com/wp-content/plugins/instagram-feed/admin/builder/'
|
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.8, 13-Jul-2019 |
| Calendar support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| cgi.check_shebang_line | On | On |
| cgi.discard_path | Off | Off |
| cgi.fix_pathinfo | On | On |
| cgi.force_redirect | On | On |
| cgi.nph | Off | Off |
| cgi.redirect_status_env | no value | no value |
| cgi.rfc2616_headers | Off | Off |
| fastcgi.impersonate | Off | Off |
| fastcgi.logging | On | On |
| PHP Version | 8.2.29 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | C:/Program Files (x86)/Local/resources/extraResources/local-bootstrap.php | C:/Program Files (x86)/Local/resources/extraResources/local-bootstrap.php |
| browscap | no value | no value |
| default_charset | UTF-8 | UTF-8 |
| default_mimetype | text/html | text/html |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | Off | On |
| display_startup_errors | On | On |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| enable_post_data_reading | On | On |
| error_append_string | no value | no value |
| error_log | C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/debug.log | C:\Users\thardman\Local Sites\mission-hill-family-estate\logs\php\error.log |
| error_log_mode | 0644 | 0644 |
| error_prepend_string | no value | no value |
| error_reporting | 32767 | 24575 |
| expose_php | On | On |
| extension_dir | C:/Users/thardman/AppData/Roaming/Local/lightning-services/php-8.2.29+0/bin/win64/ext | C:/Users/thardman/AppData/Roaming/Local/lightning-services/php-8.2.29+0/bin/win64/ext |
| fiber.stack_size | no value | no value |
| file_uploads | On | On |
| hard_timeout | 2 | 2 |
| highlight.comment | #FF8000 | #FF8000 |
| highlight.default | #0000BB | #0000BB |
| highlight.html | #000000 | #000000 |
| highlight.keyword | #007700 | #007700 |
| highlight.string | #DD0000 | #DD0000 |
| html_errors | Off | On |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .:/usr/share/php:/www/wp-content/pear | .:/usr/share/php:/www/wp-content/pear |
| input_encoding | no value | no value |
| internal_encoding | no value | no value |
| log_errors | Off | On |
| mail.add_x_header | On | On |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| mail.mixed_lf_and_crlf | Off | Off |
| max_execution_time | 1200 | 1200 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 600 | 600 |
| max_input_vars | 4000 | 4000 |
| max_multipart_body_parts | -1 | -1 |
| memory_limit | 256M | 256M |
| open_basedir | no value | no value |
| output_buffering | 4096 | 4096 |
| output_encoding | no value | no value |
| output_handler | no value | no value |
| post_max_size | 1000M | 1000M |
| precision | 14 | 14 |
| realpath_cache_size | 4096K | 4096K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | Off | Off |
| request_order | GP | GP |
| sendmail_from | no value | no value |
| sendmail_path | no value | no value |
| serialize_precision | 17 | 17 |
| short_open_tag | On | On |
| SMTP | localhost | localhost |
| smtp_port | 10019 | 10019 |
| sys_temp_dir | C:\Windows\TEMP | C:\Windows\TEMP |
| syslog.facility | LOG_USER | LOG_USER |
| syslog.filter | no-ctrl | no-ctrl |
| syslog.ident | php | php |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 300M | 300M |
| upload_tmp_dir | no value | no value |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| windows.show_crt_warning | Off | Off |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| zend.assertions | 1 | 1 |
| zend.detect_unicode | On | On |
| zend.enable_gc | On | On |
| zend.exception_ignore_args | Off | Off |
| zend.exception_string_param_max_len | 15 | 15 |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 8.7.0-DEV |
| Age | 10 |
| Features | |
| AsynchDNS | Yes |
| CharConv | No |
| Debug | No |
| GSS-Negotiate | No |
| IDN | Yes |
| IPv6 | Yes |
| krb4 | No |
| Largefile | Yes |
| libz | Yes |
| NTLM | Yes |
| NTLMWB | No |
| SPNEGO | Yes |
| SSL | Yes |
| SSPI | Yes |
| TLS-SRP | No |
| HTTP2 | Yes |
| GSSAPI | No |
| KERBEROS5 | Yes |
| UNIX_SOCKETS | Yes |
| PSL | No |
| HTTPS_PROXY | Yes |
| MULTI_SSL | No |
| BROTLI | No |
| ALTSVC | Yes |
| HTTP3 | No |
| UNICODE | No |
| ZSTD | No |
| HSTS | Yes |
| GSASL | No |
| Protocols | dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
| Host | x86_64-pc-win32 |
| SSL Version | OpenSSL/3.0.15 |
| ZLib Version | 1.2.12 |
| libSSH Version | libssh2/1.10.0 |
| Directive | Local Value | Master Value |
|---|---|---|
| curl.cainfo | no value | no value |
| date/time support | enabled |
| timelib version | 2022.12 |
| "Olson" Timezone Database Version | 2024.2 |
| Timezone Database | internal |
| Default timezone | UTC |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.833333 | 90.833333 |
| date.sunset_zenith | 90.833333 | 90.833333 |
| date.timezone | UTC | UTC |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.10.4 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| EXIF Support | enabled |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG, TIFF |
| Multibyte decoding support using mbstring | enabled |
| Extended EXIF tag formats | Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| FFI support | enabled |
|---|
| Directive | Local Value | Master Value |
|---|---|---|
| ffi.enable | preload | preload |
| ffi.preload | no value | no value |
| fileinfo support | enabled |
| libmagic | 540 |
| Input Validation and Filtering | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no value |
| FTP support | enabled |
| FTPS support | enabled |
| GD Support | enabled |
| GD Version | bundled (2.1.0 compatible) |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| FreeType Version | 2.11.1 |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 8 |
| PNG Support | enabled |
| libPNG Version | 1.6.34 |
| WBMP Support | enabled |
| XPM Support | enabled |
| libXpm Version | 30512 |
| XBM Support | enabled |
| WebP Support | enabled |
| BMP Support | enabled |
| AVIF Support | enabled |
| TGA Read Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | On | On |
| GetText Support | enabled |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat murmur3a murmur3c murmur3f xxh32 xxh64 xxh3 xxh128 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| iconv support | enabled |
| iconv implementation | "libiconv" |
| iconv library version | 1.15 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | no value | no value |
| iconv.internal_encoding | no value | no value |
| iconv.output_encoding | no value | no value |
| Internationalization support | enabled |
|---|---|
| ICU version | 71.1 |
| ICU Data version | 71.1 |
| ICU TZData version | 2022a |
| ICU Unicode version | 14.0 |
| Directive | Local Value | Master Value |
|---|---|---|
| intl.default_locale | no value | no value |
| intl.error_level | 0 | 0 |
| intl.use_exceptions | Off | Off |
| json support | enabled |
| libXML support | active |
| libXML Compiled Version | 2.10.4 |
| libXML Loaded Version | 21004 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| libmbfl version | 1.3.2 |
| mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
|---|
| Multibyte (japanese) regex support | enabled |
| Multibyte regex (oniguruma) version | 6.9.8 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.http_input | no value | no value |
| mbstring.http_output | no value | no value |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.regex_retry_limit | 1000000 | 1000000 |
| mbstring.regex_stack_limit | 100000 | 100000 |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
| MysqlI Support | enabled |
|---|---|
| Client API library version | mysqlnd 8.2.29 |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 1 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | Off | Off |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 10022 | 10022 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | no value | no value |
| mysqli.default_user | no value | no value |
| mysqli.local_infile_directory | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.rollback_on_cached_plink | Off | Off |
| mysqlnd | enabled |
|---|---|
| Version | mysqlnd 8.2.29 |
| Compression | supported |
| core SSL | supported |
| extended SSL | supported |
| Command buffer size | 4096 |
| Read buffer size | 32768 |
| Read timeout | 86400 |
| Collecting statistics | Yes |
| Collecting memory statistics | No |
| Tracing | n/a |
| Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_caching_sha2_password,auth_plugin_sha256_password |
| API Extensions | mysqli,pdo_mysql |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 3.0.15 3 Sep 2024 |
| OpenSSL Header Version | OpenSSL 3.0.15 3 Sep 2024 |
| Openssl default config | C:\Program Files\Common Files\SSL/openssl.cnf |
| Directive | Local Value | Master Value |
|---|---|---|
| openssl.cafile | C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-includes\certificates\ca-bundle.crt | C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-includes\certificates\ca-bundle.crt |
| openssl.capath | no value | no value |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 10.40 2022-04-14 |
| PCRE Unicode Version | 14.0.0 |
| PCRE JIT Support | enabled |
| PCRE JIT Target | x86 64bit (little endian + unaligned) |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.jit | Off | Off |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, sqlite |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 8.2.29 |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.39.2 |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar API version | 1.1.1 |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Version | 8.2.29 |
| Readline Support | enabled |
|---|---|
| Readline library | WinEditLine |
| Directive | Local Value | Master Value |
|---|---|---|
| cli.pager | no value | no value |
| cli.prompt | \b \> | \b \> |
| Reflection | enabled |
| Session Support | enabled |
| Registered save handlers | files user |
| Registered serializer handlers | php_serialize php php_binary |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | Off | Off |
| session.cookie_lifetime | 0 | 0 |
| session.cookie_path | / | / |
| session.cookie_samesite | no value | no value |
| session.cookie_secure | Off | Off |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 1440 | 1440 |
| session.gc_probability | 0 | 0 |
| session.lazy_write | On | On |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | no value | no value |
| session.serialize_handler | php | php |
| session.sid_bits_per_character | 4 | 4 |
| session.sid_length | 32 | 32 |
| session.upload_progress.cleanup | On | On |
| session.upload_progress.enabled | On | On |
| session.upload_progress.freq | 1% | 1% |
| session.upload_progress.min_freq | 1 | 1 |
| session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
| session.upload_progress.prefix | upload_progress_ | upload_progress_ |
| session.use_cookies | On | On |
| session.use_only_cookies | On | On |
| session.use_strict_mode | Off | Off |
| session.use_trans_sid | Off | Off |
| SimpleXML support | enabled |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | On | On |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| sodium support | enabled |
|---|---|
| libsodium headers version | 1.0.18 |
| libsodium library version | 1.0.18 |
| SPL support | enabled |
|---|---|
| Interfaces | OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite3 support | enabled |
|---|---|
| SQLite Library | 3.39.2 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.defensive | On | On |
| sqlite3.extension_dir | no value | no value |
| Dynamic Library Support | enabled |
| Internal Sendmail Support for Windows | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | On | On |
| assert.bail | Off | Off |
| assert.callback | no value | no value |
| assert.exception | On | On |
| assert.warning | On | On |
| auto_detect_line_endings | Off | Off |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| session.trans_sid_hosts | no value | no value |
| session.trans_sid_tags | a=href,area=href,frame=src,form= | a=href,area=href,frame=src,form= |
| unserialize_max_depth | 4096 | 4096 |
| url_rewriter.hosts | no value | no value |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
| Tidy support | enabled |
| libTidy Version | 5.6.0 |
| libTidy Release | 2017/11/25 |
| Directive | Local Value | Master Value |
|---|---|---|
| tidy.clean_output | Off | Off |
| tidy.default_config | no value | no value |
| Tokenizer Support | enabled |
| Version | 3.2.1 |
| Support Xdebug on Patreon, GitHub, or as a business | |
| Enabled Features (through 'xdebug.mode' setting) | ||
|---|---|---|
| Feature | Enabled/Disabled | Docs |
| Development Helpers | ✘ disabled | ⊕ |
| Coverage | ✘ disabled | ⊕ |
| GC Stats | ✘ disabled | ⊕ |
| Profiler | ✘ disabled | ⊕ |
| Step Debugger | ✘ disabled | ⊕ |
| Tracing | ✘ disabled | ⊕ |
| Optional Features | |
|---|---|
| Compressed File Support | yes (gzip) |
| Clock Source | GetSystemTimePreciseAsFileTime |
| 'xdebug://gateway' pseudo-host support | no |
| 'xdebug://nameserver' pseudo-host support | no |
| Systemd Private Temp Directory | not enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| xdebug.auto_trace | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.cli_color | 0 | 0 |
| xdebug.client_discovery_header | HTTP_X_FORWARDED_FOR,REMOTE_ADDR | HTTP_X_FORWARDED_FOR,REMOTE_ADDR |
| xdebug.client_host | localhost | localhost |
| xdebug.client_port | 9003 | 9003 |
| xdebug.cloud_id | no value | no value |
| xdebug.collect_assignments | Off | Off |
| xdebug.collect_includes | (setting removed in Xdebug 3) | (setting removed in Xdebug 3) |
| xdebug.collect_params | (setting removed in Xdebug 3) | (setting removed in Xdebug 3) |
| xdebug.collect_return | Off | Off |
| xdebug.collect_vars | (setting removed in Xdebug 3) | (setting removed in Xdebug 3) |
| xdebug.connect_timeout_ms | 200 | 200 |
| xdebug.coverage_enable | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.default_enable | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.discover_client_host | Off | Off |
| xdebug.dump.COOKIE | no value | no value |
| xdebug.dump.ENV | no value | no value |
| xdebug.dump.FILES | no value | no value |
| xdebug.dump.GET | no value | no value |
| xdebug.dump.POST | no value | no value |
| xdebug.dump.REQUEST | no value | no value |
| xdebug.dump.SERVER | no value | no value |
| xdebug.dump.SESSION | no value | no value |
| xdebug.dump_globals | On | On |
| xdebug.dump_once | On | On |
| xdebug.dump_undefined | Off | Off |
| xdebug.file_link_format | no value | no value |
| xdebug.filename_format | no value | no value |
| xdebug.force_display_errors | Off | Off |
| xdebug.force_error_reporting | 0 | 0 |
| xdebug.gc_stats_enable | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.gc_stats_output_dir | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.gc_stats_output_name | gcstats.%p | gcstats.%p |
| xdebug.halt_level | 0 | 0 |
| xdebug.idekey | no value | no value |
| xdebug.log | no value | no value |
| xdebug.log_level | 7 | 7 |
| xdebug.max_nesting_level | 256 | 256 |
| xdebug.max_stack_frames | -1 | -1 |
| xdebug.mode | no value | no value |
| xdebug.output_dir | C:\Windows\Temp | C:\Windows\Temp |
| xdebug.overload_var_dump | (setting removed in Xdebug 3) | (setting removed in Xdebug 3) |
| xdebug.profiler_append | Off | Off |
| xdebug.profiler_enable | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.profiler_enable_trigger | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.profiler_enable_trigger_value | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.profiler_output_dir | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.profiler_output_name | cachegrind.out.%p | cachegrind.out.%p |
| xdebug.remote_autostart | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_connect_back | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_enable | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_host | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_log | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_log_level | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_mode | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_port | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.remote_timeout | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.scream | Off | Off |
| xdebug.show_error_trace | Off | Off |
| xdebug.show_exception_trace | Off | Off |
| xdebug.show_local_vars | Off | Off |
| xdebug.show_mem_delta | (setting removed in Xdebug 3) | (setting removed in Xdebug 3) |
| xdebug.start_upon_error | default | default |
| xdebug.start_with_request | default | default |
| xdebug.trace_enable_trigger | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.trace_enable_trigger_value | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.trace_format | 0 | 0 |
| xdebug.trace_options | 0 | 0 |
| xdebug.trace_output_dir | (setting renamed in Xdebug 3) | (setting renamed in Xdebug 3) |
| xdebug.trace_output_name | trace.%c | trace.%c |
| xdebug.trigger_value | no value | no value |
| xdebug.use_compression | 1 | 1 |
| xdebug.var_display_max_children | 128 | 128 |
| xdebug.var_display_max_data | 512 | 512 |
| xdebug.var_display_max_depth | 3 | 3 |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.10.4 |
| XMLReader | enabled |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.37 |
| libxslt compiled against libxml Version | 2.10.2 |
| EXSLT | enabled |
| libexslt Version | 0.8.20 |
| Zip | enabled |
| Zip version | 1.21.1 |
| Libzip version | 1.7.1 |
| BZIP2 compression | Yes |
| XZ compression | Yes |
| ZSTD compression | No |
| AES-128 encryption | Yes |
| AES-192 encryption | Yes |
| AES-256 encryption | Yes |
| ZLib Support | enabled |
|---|---|
| Stream Wrapper | compress.zlib:// |
| Stream Filter | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.12 |
| Linked Version | 1.2.12 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
array (4)0 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 01 => array (7)| 'name' => 'GFForms::ensure_hook_js_output' | 'type' => 1 | 'flags' => 113 | 'level' => 1 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 02 => array (7)| 'name' => 'Smush\Core\Transform\Transformation_Controller::transform_content' | 'type' => 1 | 'flags' => 113 | 'level' => 2 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 03 => array (7)| 'name' => 'wp_finalize_template_enhancement_output_buffer' | 'type' => 1 | 'flags' => 81 | 'level' => 3 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
| Cookie | 'tracy-session=12bedf78d2'
|
|---|---|
| Accept-Encoding | 'deflate, gzip'
|
| Accept | '*/*'
|
| User-Agent | 'WordPress/6.9.1; https://missionhillwinery.majortomcapsule.com'
|
| Connection | 'close'
|
| X-Forwarded-Proto | 'https'
|
| X-Forwarded-Host | 'missionhillwinery.local'
|
| X-Forwarded-For | '::1'
|
| X-Real-Ip | '::1'
|
| Host | 'missionhillwinery.local'
|
| Authorization |
empty
empty
| tracy-session | '12bedf78d2'
|
|---|---|
| wp-wpml_current_language | 'en'
|
| X-Powered-By | 'PHP/8.2.29'
|
|---|---|
| Link | |
| Link | |
| Link | |
| Content-Type | 'text/html; charset=UTF-8'
|
Headers were not sent at the time the exception was thrown