Twig\Error\LoaderError

Unable to find template "includes/content/content_image-slider.twig" (looked into: C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery, C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery\views, C:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-content\themes\mt-missionhillwinery\templates, ) in "includes/content.twig" at line 3. search►

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'
inner-code:58
$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)
inner-code:77
$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

inner-code:133
$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

inner-code:44
$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

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.8, 13-Jul-2019

calendar

Calendar support enabled

cgi-fcgi

DirectiveLocal ValueMaster Value
cgi.check_shebang_lineOnOn
cgi.discard_pathOffOff
cgi.fix_pathinfoOnOn
cgi.force_redirectOnOn
cgi.nphOffOff
cgi.redirect_status_envno valueno value
cgi.rfc2616_headersOffOff
fastcgi.impersonateOffOff
fastcgi.loggingOnOn

Core

PHP Version 8.2.29
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileC:/Program Files (x86)/Local/resources/extraResources/local-bootstrap.phpC:/Program Files (x86)/Local/resources/extraResources/local-bootstrap.php
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionsno valueno value
display_errorsOffOn
display_startup_errorsOnOn
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logC:\Users\thardman\Local Sites\mission-hill-family-estate\app\public/wp-content/debug.logC:\Users\thardman\Local Sites\mission-hill-family-estate\logs\php\error.log
error_log_mode06440644
error_prepend_stringno valueno value
error_reporting3276724575
expose_phpOnOn
extension_dirC:/Users/thardman/AppData/Roaming/Local/lightning-services/php-8.2.29+0/bin/win64/extC:/Users/thardman/AppData/Roaming/Local/lightning-services/php-8.2.29+0/bin/win64/ext
fiber.stack_sizeno valueno value
file_uploadsOnOn
hard_timeout22
highlight.comment#FF8000#FF8000
highlight.default#0000BB#0000BB
highlight.html#000000#000000
highlight.keyword#007700#007700
highlight.string#DD0000#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php:/www/wp-content/pear.:/usr/share/php:/www/wp-content/pear
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.logno valueno value
mail.mixed_lf_and_crlfOffOff
max_execution_time12001200
max_file_uploads2020
max_input_nesting_level6464
max_input_time600600
max_input_vars40004000
max_multipart_body_parts-1-1
memory_limit256M256M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size1000M1000M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOffOff
request_orderGPGP
sendmail_fromno valueno value
sendmail_pathno valueno value
serialize_precision1717
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port1001910019
sys_temp_dirC:\Windows\TEMPC:\Windows\TEMP
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize300M300M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
windows.show_crt_warningOffOff
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions11
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.exception_ignore_argsOffOff
zend.exception_string_param_max_len1515
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

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
DirectiveLocal ValueMaster Value
curl.cainfono valueno value

date

date/time support enabled
timelib version 2022.12
"Olson" Timezone Database Version 2024.2
Timezone Database internal
Default timezone UTC
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.83333390.833333
date.sunset_zenith90.83333390.833333
date.timezoneUTCUTC

dom

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

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
DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

FFI

FFI supportenabled
DirectiveLocal ValueMaster Value
ffi.enablepreloadpreload
ffi.preloadno valueno value

fileinfo

fileinfo support enabled
libmagic 540

filter

Input Validation and Filtering enabled
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

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
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warningOnOn

gettext

GetText Support enabled

hash

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

iconv support enabled
iconv implementation "libiconv"
iconv library version 1.15
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

intl

Internationalization supportenabled
ICU version 71.1
ICU Data version 71.1
ICU TZData version 2022a
ICU Unicode version 14.0
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptionsOffOff

json

json support enabled

libxml

libXML support active
libXML Compiled Version 2.10.4
libXML Loaded Version 21004
libXML streams enabled

mbstring

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
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.regex_retry_limit10000001000000
mbstring.regex_stack_limit100000100000
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 8.2.29
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 1
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOffOff
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port1002210022
mysqli.default_pwno valueno value
mysqli.default_socketno valueno value
mysqli.default_userno valueno value
mysqli.local_infile_directoryno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
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

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
DirectiveLocal ValueMaster Value
openssl.cafileC:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-includes\certificates\ca-bundle.crtC:\Users\thardman\Local Sites\mission-hill-family-estate\app\public\wp-includes\certificates\ca-bundle.crt
openssl.capathno valueno value

pcre

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)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jitOffOff
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 8.2.29

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.39.2

Phar

Phar: PHP Archive supportenabled
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.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

random

Version 8.2.29

readline

Readline Supportenabled
Readline library WinEditLine
DirectiveLocal ValueMaster Value
cli.pagerno valueno value
cli.prompt\b \> \b \> 

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php_serialize php php_binary
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOffOff
session.cookie_lifetime00
session.cookie_path//
session.cookie_samesiteno valueno value
session.cookie_secureOffOff
session.gc_divisor10001000
session.gc_maxlifetime14401440
session.gc_probability00
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_pathno valueno value
session.serialize_handlerphpphp
session.sid_bits_per_character44
session.sid_length3232
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sidOffOff

SimpleXML

SimpleXML support enabled
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabledOnOn
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sodium

sodium supportenabled
libsodium headers version 1.0.18
libsodium library version 1.0.18

SPL

SPL supportenabled
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

SQLite3 supportenabled
SQLite Library 3.39.2
DirectiveLocal ValueMaster Value
sqlite3.defensiveOnOn
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Internal Sendmail Support for Windows enabled
DirectiveLocal ValueMaster Value
assert.activeOnOn
assert.bailOffOff
assert.callbackno valueno value
assert.exceptionOnOn
assert.warningOnOn
auto_detect_line_endingsOffOff
default_socket_timeout6060
fromno valueno value
session.trans_sid_hostsno valueno value
session.trans_sid_tagsa=href,area=href,frame=src,form=a=href,area=href,frame=src,form=
unserialize_max_depth40964096
url_rewriter.hostsno valueno value
url_rewriter.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

tidy

Tidy support enabled
libTidy Version 5.6.0
libTidy Release 2017/11/25
DirectiveLocal ValueMaster Value
tidy.clean_outputOffOff
tidy.default_configno valueno value

tokenizer

Tokenizer Support enabled

xdebug

Xdebug
Version 3.2.1
Support Xdebug on Patreon, GitHub, or as a business
Enabled Features
(through 'xdebug.mode' setting)
FeatureEnabled/DisabledDocs
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
DirectiveLocal ValueMaster Value
xdebug.auto_trace(setting renamed in Xdebug 3)(setting renamed in Xdebug 3)
xdebug.cli_color00
xdebug.client_discovery_headerHTTP_X_FORWARDED_FOR,REMOTE_ADDRHTTP_X_FORWARDED_FOR,REMOTE_ADDR
xdebug.client_hostlocalhostlocalhost
xdebug.client_port90039003
xdebug.cloud_idno valueno value
xdebug.collect_assignmentsOffOff
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_returnOffOff
xdebug.collect_vars(setting removed in Xdebug 3)(setting removed in Xdebug 3)
xdebug.connect_timeout_ms200200
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_hostOffOff
xdebug.dump.COOKIEno valueno value
xdebug.dump.ENVno valueno value
xdebug.dump.FILESno valueno value
xdebug.dump.GETno valueno value
xdebug.dump.POSTno valueno value
xdebug.dump.REQUESTno valueno value
xdebug.dump.SERVERno valueno value
xdebug.dump.SESSIONno valueno value
xdebug.dump_globalsOnOn
xdebug.dump_onceOnOn
xdebug.dump_undefinedOffOff
xdebug.file_link_formatno valueno value
xdebug.filename_formatno valueno value
xdebug.force_display_errorsOffOff
xdebug.force_error_reporting00
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_namegcstats.%pgcstats.%p
xdebug.halt_level00
xdebug.idekeyno valueno value
xdebug.logno valueno value
xdebug.log_level77
xdebug.max_nesting_level256256
xdebug.max_stack_frames-1-1
xdebug.modeno valueno value
xdebug.output_dirC:\Windows\TempC:\Windows\Temp
xdebug.overload_var_dump(setting removed in Xdebug 3)(setting removed in Xdebug 3)
xdebug.profiler_appendOffOff
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_namecachegrind.out.%pcachegrind.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.screamOffOff
xdebug.show_error_traceOffOff
xdebug.show_exception_traceOffOff
xdebug.show_local_varsOffOff
xdebug.show_mem_delta(setting removed in Xdebug 3)(setting removed in Xdebug 3)
xdebug.start_upon_errordefaultdefault
xdebug.start_with_requestdefaultdefault
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_format00
xdebug.trace_options00
xdebug.trace_output_dir(setting renamed in Xdebug 3)(setting renamed in Xdebug 3)
xdebug.trace_output_nametrace.%ctrace.%c
xdebug.trigger_valueno valueno value
xdebug.use_compression11
xdebug.var_display_max_children128128
xdebug.var_display_max_data512512
xdebug.var_display_max_depth33

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.10.4

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.37
libxslt compiled against libxml Version 2.10.2
EXSLT enabled
libexslt Version 0.8.20

zip

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

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.12
Linked Version 1.2.12
DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

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' => 0
1 => array (7)
| 'name' => 'GFForms::ensure_hook_js_output' | 'type' => 1 | 'flags' => 113 | 'level' => 1 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
2 => array (7)
| 'name' => 'Smush\Core\Transform\Transformation_Controller::transform_content' | 'type' => 1 | 'flags' => 113 | 'level' => 2 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
3 => array (7)
| 'name' => 'wp_finalize_template_enhancement_output_buffer' | 'type' => 1 | 'flags' => 81 | 'level' => 3 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0

GET https://missionhillwinery.majortomcapsule.com/tastings-experiences/iconic-winery-estate-yacht-experience/

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

$_GET

empty

$_POST

empty

$_COOKIE

tracy-session
'12bedf78d2'
wp-wpml_current_language
'en'

Code: 500

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