Error
File: .../Platform/Blocks/Products/ElementorProductsWidget.php:89
79: if (true === $productsSet->hasBlockbusterProducts()) { 80: $displayableProducts = $productsSet->getBlockbusterProducts($productNumber); 81: } 82: break; 83: case 'regular': 84: default: 85: if (true === $productsSet->hasRegularProducts()) { 86: $displayableProducts = $productsSet->getRegularProducts($productNumber); 87: } 88: } 89: require __DIR__ . '/build/render.php'; 90: } 91: }
2364: /** 2365: * Determine the render logic. 2366: */ 2367: protected function render_by_mode() { 2368: if ( Plugin::$instance->frontend->is_static_render_mode() ) { 2369: $this->render_static(); 2370: 2371: return; 2372: } 2373: 2374: $this->render(); 2375: } 2376: 2377: /** 2378: * Print content template.
626: */ 627: do_action( 'elementor/widget/before_render_content', $this ); 628: 629: ob_start(); 630: 631: $skin = $this->get_current_skin(); 632: if ( $skin ) { 633: $skin->set_parent( $this ); 634: $skin->render_by_mode(); 635: } else { 636: $this->render_by_mode(); 637: } 638: 639: $widget_content = ob_get_clean(); 640:
764: 765: /** 766: * Print widget content. 767: * 768: * Output the widget final HTML on the frontend. 769: * 770: * @since 1.0.0 771: * @access protected 772: */ 773: protected function print_content() { 774: $this->render_content(); 775: } 776: 777: /** 778: * Print a setting content without escaping.
484: */ 485: do_action( "elementor/frontend/{$element_type}/before_render", $this ); 486: 487: ob_start(); 488: 489: if ( $this->has_own_method( '_print_content', self::class ) ) { 490: Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( '_print_content', '3.1.0', __CLASS__ . '::print_content()' ); 491: 492: $this->_print_content(); 493: } else { 494: $this->print_content(); 495: } 496: 497: $content = ob_get_clean(); 498:
61: 62: if ( empty( $widget_data ) || ! is_array( $widget_data ) ) { 63: return ''; 64: } 65: 66: ob_start(); 67: 68: $element = Plugin::$instance->elements_manager->create_element_instance( $widget_data ); 69: 70: if ( $element ) { 71: $element->print_element(); 72: } 73: 74: return ob_get_clean(); 75: } );
424: * @param array $attr Shortcode attributes array, can be empty if the original arguments string cannot be parsed. 425: * @param array $m Regular expression match array. 426: */ 427: $return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); 428: if ( false !== $return ) { 429: return $return; 430: } 431: 432: $content = isset( $m[5] ) ? $m[5] : null; 433: 434: $output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6]; 435: 436: /** 437: * Filters the output created by a shortcode callback. 438: *
| #0 | |
|---|---|
| #1 | ''
|
| #2 | 'elementor-element'
|
| $m |
|---|
263: $has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' ); 264: $filter_added = false; 265: 266: if ( ! $has_filter ) { 267: $filter_added = add_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' ); 268: } 269: 270: $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); 271: 272: $pattern = get_shortcode_regex( $tagnames ); 273: $content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content ); 274: 275: // Always restore square braces so we don't break things like <!--[if IE ]>. 276: $content = unescape_invalid_shortcodes( $content ); 277:
| $pattern | '/\[(\[?)(elementor\-element)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/'
|
|---|---|
| $callback | 'do_shortcode_tag'
|
| $subject |
1878: } 1879: 1880: if ( ! empty( $cached_data['styles'] ) ) { 1881: foreach ( $cached_data['styles'] as $style_handle ) { 1882: wp_enqueue_style( $style_handle ); 1883: } 1884: } 1885: } 1886: 1887: if ( ! empty( $cached_data['content'] ) ) { 1888: $content = do_shortcode( $cached_data['content'] ); 1889: 1890: if ( has_blocks( $content ) ) { 1891: $content = do_blocks( $content ); 1892: }
| $content |
|---|
1211: * @since 2.1.3 1212: * @access public 1213: */ 1214: public function print_elements_with_wrapper( $elements_data = null ) { 1215: if ( ! $elements_data ) { 1216: $elements_data = $this->get_elements_data(); 1217: } 1218: 1219: ?> 1220: <div <?php Utils::print_html_attributes( $this->get_container_attributes() ); ?>> 1221: <?php $this->print_elements( $elements_data ); ?> 1222: </div> 1223: <?php 1224: } 1225:
| $elements_data |
|---|
1188: * CSS and font links inline in a `style` tag above the document's markup. 1189: * 1190: * @param $with_css boolean 1191: */ 1192: $with_css = apply_filters( 'elementor/frontend/builder_content/before_print_css', $with_css ); 1193: 1194: if ( ! empty( $css_file ) && $with_css ) { 1195: $css_file->print_css(); 1196: } 1197: 1198: $document->print_elements_with_wrapper( $data ); 1199: 1200: $content = ob_get_clean(); 1201: 1202: $content = $this->process_more_tag( $content );
| $elements_data |
|---|
1083: $this->restore_content_filters(); 1084: 1085: if ( Plugin::$instance->preview->is_preview_mode() || $this->_is_excerpt ) { 1086: return $content; 1087: } 1088: 1089: // Remove the filter itself in order to allow other `the_content` in the elements 1090: $this->remove_content_filter(); 1091: 1092: $post_id = get_the_ID(); 1093: $builder_content = $this->get_builder_content( $post_id ); 1094: 1095: if ( ! empty( $builder_content ) ) { 1096: $content = $builder_content; 1097: $this->remove_content_filters();
| $post_id | 5675
|
|---|
331: 332: foreach ( $this->callbacks[ $priority ] as $the_ ) { 333: if ( ! $this->doing_action ) { 334: $args[0] = $value; 335: } 336: 337: // Avoid the array_slice() if possible. 338: if ( 0 === $the_['accepted_args'] ) { 339: $value = call_user_func( $the_['function'] ); 340: } elseif ( $the_['accepted_args'] >= $num_args ) { 341: $value = call_user_func_array( $the_['function'], $args ); 342: } else { 343: $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) ); 344: } 345: }
| $content |
|---|
195: return $value; 196: } 197: 198: if ( ! isset( $wp_filter['all'] ) ) { 199: $wp_current_filter[] = $hook_name; 200: } 201: 202: // Pass the value to WP_Hook. 203: array_unshift( $args, $value ); 204: 205: $filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args ); 206: 207: array_pop( $wp_current_filter ); 208: 209: return $filtered;
| $value | |
|---|---|
| $args |
246: function the_content( $more_link_text = null, $strip_teaser = false ) { 247: $content = get_the_content( $more_link_text, $strip_teaser ); 248: 249: /** 250: * Filters the post content. 251: * 252: * @since 0.71 253: * 254: * @param string $content Content of the current post. 255: */ 256: $content = apply_filters( 'the_content', $content ); 257: $content = str_replace( ']]>', ']]>', $content ); 258: echo $content; 259: } 260:
| $hook_name | 'the_content'
|
|---|---|
| $value |
293: 294: $id = get_the_ID(); 295: $permalink = get_permalink($id); 296: $creationTimestamp = intval(get_the_time("G")); 297: $title = get_the_title(); 298: $parentId = null !== get_post_parent() ? get_post_parent()->ID : 0; 299: 300: // The reason we are buffering the echo-based function is that "get_the_content()" 301: // returns a different result. Welcome to the world of WordPress. 302: $content = bufferOutput(function() { 303: the_content(); 304: }); 305: 306: $postImageUrls = $this->loadImageUrlsForPostWithId($id); 307:
182: /* ================================== */ 183: 184: /** 185: * @param $closure Closure The closure producing the output. 186: * @return string The buffered output. 187: */ 188: function bufferOutput($closure) { 189: Assert::isCallable($closure); 190: 191: ob_start(); 192: $closure(); 193: return ob_get_clean(); 194: } 195: 196: /* ================================== */
292: the_post(); 293: 294: $id = get_the_ID(); 295: $permalink = get_permalink($id); 296: $creationTimestamp = intval(get_the_time("G")); 297: $title = get_the_title(); 298: $parentId = null !== get_post_parent() ? get_post_parent()->ID : 0; 299: 300: // The reason we are buffering the echo-based function is that "get_the_content()" 301: // returns a different result. Welcome to the world of WordPress. 302: $content = bufferOutput(function() { 303: the_content(); 304: }); 305: 306: $postImageUrls = $this->loadImageUrlsForPostWithId($id);
| $closure |
|---|
145: 146: /** 147: * Returns posts which should be displayed on the current page by loading and caching them. 148: * It basically captures the WP posts from the standard loop, converts them to our representation, 149: * and caches them. On subsequent calls the cached posts are returned. 150: * 151: * @return Post[] The posts for the current context. 152: */ 153: public function getPostsForCurrentContext() { 154: if (!$this->postsForCurrentContext) { 155: $this->postsForCurrentContext = $this->loadPostsForCurrentContext(); 156: } 157: 158: return $this->postsForCurrentContext; 159: }
158: return $this->postsForCurrentContext; 159: } 160: 161: /** 162: * Returns the first post for the current page. 163: * 164: * @see WPContext::getPostsForCurrentContext() 165: * @return Post|null The first post for the current page. 166: */ 167: public function getFirstPostForCurrentContext() { 168: return firstValue($this->getPostsForCurrentContext()); 169: } 170: 171: /* ================================== */ 172: /* Loading Posts */
119: * @return Post|null The current post or `null` if there is no current post associated with current context 120: * (e.g. on the 404 page). 121: */ 122: public function getCurrentPost() { 123: if (!$this->currentPostLoaded) { 124: if ($this->isNewsPage()) { 125: $this->currentPost = $this->loadPostForNewsPage(); 126: } elseif($this->isSearchResults()) { 127: return null; 128: } else { 129: $this->currentPost = $this->getFirstPostForCurrentContext(); 130: } 131: 132: $this->currentPostLoaded = true; 133: }
14: * @author marcschluepmann 15: */ 16: final class BreadcrumbView implements View { 17: 18: const BREADCRUMB_DELIMITER = '»'; 19: 20: private $post; 21: 22: public function __construct() { 23: $wpctx = WPContext::getSharedContext(); 24: $this->post = $wpctx->getCurrentPost(); 25: } 26: 27: public function getPostTitle(): string { 28: return $this->post->getTitle();
29: $flyersSet = $dataProvider->getFlyersSet(); 30: $flyerBrowserView = new FlyerBrowserView($websiteTitle, $flyerBrowserViewLogosSet, $flyersSet); 31: 32: $logoSupermarketImageUrl = $themeData->getHeaderLogoSupermarketImageUrl(); 33: $logoClientImageUrl = $themeData->getHeaderLogoClientImageUrl(); 34: 35: $socialMediaSet = $dataProvider->getSocialMediaSet(); 36: $socialMediaImageColor = $themeData->getSocialMediaImageColor(); 37: $socialMediaView = new SocialMediaView($socialMediaSet, $socialMediaImageColor); 38: 39: $breadcrumbView = new BreadcrumbView(); 40: ?> 41: 42: <!DOCTYPE HTML> 43:
804: * 805: * @since 6.1.0 806: * 807: * @param string $_template_file The full path to the template file. 808: * @param bool $load_once Whether to require_once or require. 809: * @param array $args Additional arguments passed to the template. 810: */ 811: do_action( 'wp_before_load_template', $_template_file, $load_once, $args ); 812: 813: if ( $load_once ) { 814: require_once $_template_file; 815: } else { 816: require $_template_file; 817: } 818:
| #0 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern/header.php'
|
|---|
739: } elseif ( $is_child_theme && file_exists( $wp_template_path . '/' . $template_name ) ) { 740: $located = $wp_template_path . '/' . $template_name; 741: break; 742: } elseif ( file_exists( ABSPATH . WPINC . '/theme-compat/' . $template_name ) ) { 743: $located = ABSPATH . WPINC . '/theme-compat/' . $template_name; 744: break; 745: } 746: } 747: 748: if ( $load && '' !== $located ) { 749: load_template( $located, $load_once, $args ); 750: } 751: 752: return $located; 753: }
| $_template_file | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern/header.php'
|
|---|---|
| $load_once | true
|
| $args | array (0)
|
38: do_action( 'get_header', $name, $args ); 39: 40: $templates = array(); 41: $name = (string) $name; 42: if ( '' !== $name ) { 43: $templates[] = "header-{$name}.php"; 44: } 45: 46: $templates[] = 'header.php'; 47: 48: if ( ! locate_template( $templates, true, true, $args ) ) { 49: return false; 50: } 51: } 52:
| $template_names | |
|---|---|
| $load | true
|
| $load_once | true
|
| $args | array (0)
|
1: <?php 2: 3: if ( ! defined( 'ABSPATH' ) ) { 4: exit; // Exit if accessed directly. 5: } 6: 7: \Elementor\Plugin::$instance->frontend->add_body_class( 'elementor-template-full-width' ); 8: 9: get_header(); 10: /** 11: * Before Header-Footer page template content. 12: * 13: * Fires before the content of Elementor Header-Footer page template. 14: * 15: * @since 2.0.0
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 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor/modules/page-templates/templates/header-footer.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 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/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 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-blog-header.php'
|
|---|
| SERVER_SOFTWARE | 'Apache/2.4.66 (Debian)'
|
|---|---|
| REQUEST_URI | '/angebote/'
|
| USER | 'www-data'
|
| HOME | '/var/www'
|
| SCRIPT_NAME | '/index.php'
|
| QUERY_STRING | ''
|
| REQUEST_METHOD | 'GET'
|
| SERVER_PROTOCOL | 'HTTP/2.0'
|
| GATEWAY_INTERFACE | 'CGI/1.1'
|
| REDIRECT_URL | '/angebote/'
|
| REMOTE_PORT | '17669'
|
| SCRIPT_FILENAME | '/var/www/vhosts/develop.staging-smp.de/httpdocs/index.php'
|
| SERVER_ADMIN | 'ops@smp-it-media.de'
|
| CONTEXT_DOCUMENT_ROOT | '/var/www/vhosts/develop.staging-smp.de/httpdocs'
|
| CONTEXT_PREFIX | ''
|
| REQUEST_SCHEME | 'https'
|
| DOCUMENT_ROOT | '/var/www/vhosts/develop.staging-smp.de/httpdocs'
|
| REMOTE_ADDR | '216.73.217.112'
|
| SERVER_PORT | '443'
|
| SERVER_ADDR | '217.72.203.107'
|
| SERVER_NAME | 'selders.staging-smp.de'
|
| SERVER_SIGNATURE | |
| PATH | '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
| HTTP_HOST | 'selders.staging-smp.de'
|
| HTTP_ACCEPT_ENCODING | 'gzip, br, zstd, deflate'
|
| HTTP_COOKIE | 'tracy-session=00d84ccfe2'
|
| HTTP_USER_AGENT | 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
|
| HTTP_ACCEPT | '*/*'
|
| proxy-nokeepalive | '1'
|
| SSL_TLS_SNI | 'selders.staging-smp.de'
|
| HTTPS | 'on'
|
| H2_STREAM_TAG | '741257-7769-3'
|
| H2_STREAM_ID | '3'
|
| H2_PUSHED_ON | ''
|
| H2_PUSHED | ''
|
| H2_PUSH | 'off'
|
| H2PUSH | 'off'
|
| HTTP2 | 'on'
|
| REDIRECT_STATUS | '200'
|
| REDIRECT_SSL_TLS_SNI | 'selders.staging-smp.de'
|
| REDIRECT_HTTPS | 'on'
|
| REDIRECT_H2_STREAM_TAG | '741257-7769-3'
|
| REDIRECT_H2_STREAM_ID | '3'
|
| REDIRECT_H2_PUSHED_ON | ''
|
| REDIRECT_H2_PUSHED | ''
|
| REDIRECT_H2_PUSH | 'off'
|
| REDIRECT_H2PUSH | 'off'
|
| REDIRECT_HTTP2 | 'on'
|
| FCGI_ROLE | 'RESPONDER'
|
| PHP_SELF | '/index.php'
|
| REQUEST_TIME_FLOAT | 1778061812.653501
|
| REQUEST_TIME | 1778061812
|
| NFWSESSION_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/nfwlog/session'
|
|---|---|
| NFW_PID | '63f507a60b72b8.36397094'
|
| NFW_IS_HTTPS | true
|
| NFW_RESHEADERS | '0003000000'
|
| NFW_REMOTE_ADDR | '216.73.217.112'
|
| NFW_REMOTE_ADDR_IPV6 | false
|
| NFW_REMOTE_ADDR_PRIVATE | false
|
| NFW_SWL | 1
|
| NFW_STATUS | 20
|
| WP_USE_THEMES | true
|
| ABSPATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/'
|
| DB_NAME | 'platform_develop'
|
| DB_USER | 'whitelabel'
|
| DB_PASSWORD | 'La2JVFhGFWgmOuxC'
|
| DB_HOST | '10.12.24.15'
|
| DB_CHARSET | 'utf8'
|
| DB_COLLATE | ''
|
| AUTH_KEY | '$:||3 mv3#4dntuA;@T+czI_PrPr/ep0d[xo6bj`A,-1.hx2-JNUkn+d-pI//^t)'
|
| SECURE_AUTH_KEY | |
| LOGGED_IN_KEY | |
| NONCE_KEY | |
| AUTH_SALT | 'Rg:X-3[X=(C{L_0#IHVDL>~|h 3j-)qxGryL-T?cC[kwUPE~uur#jI8}{GUtvV4m'
|
| SECURE_AUTH_SALT | |
| LOGGED_IN_SALT | 'cb(5L8W??V*>ksjOj`zU^{]jqed;:_sw86|*fp,#@~|FS@BXsb]:UB4T;Qvn!^/%'
|
| NONCE_SALT | |
| JWT_AUTH_SECRET_KEY | 'unoh9t[oh1ahphohs7ro_thohm=akah/ch6Oukyeith4oow7Mai2eiS5ien3ieph'
|
| JWT_AUTH_CORS_ENABLE | true
|
| WP_DEBUG | true
|
| WP_DEBUG_DISPLAY | true
|
| WP_DEBUG_LOG | true
|
| 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 | 1778061812.663414
|
| WP_MEMORY_LIMIT | '40M'
|
| WP_MAX_MEMORY_LIMIT | '256M'
|
| WP_CONTENT_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content'
|
| WP_DEVELOPMENT_MODE | ''
|
| WP_CACHE | false
|
| 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 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/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 | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-includes/blocks/'
|
| WP_CONTENT_URL | 'https://develop.staging-smp.de/wp-content'
|
| WP_PLUGIN_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins'
|
| WP_PLUGIN_URL | 'https://develop.staging-smp.de/wp-content/plugins'
|
| PLUGINDIR | 'wp-content/plugins'
|
| WPMU_PLUGIN_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/mu-plugins'
|
| WPMU_PLUGIN_URL | 'https://develop.staging-smp.de/wp-content/mu-plugins'
|
| MUPLUGINDIR | 'wp-content/mu-plugins'
|
| COOKIEHASH | 'ec847317430eae5f31b3a95516bd292b'
|
| USER_COOKIE | 'wordpressuser_ec847317430eae5f31b3a95516bd292b'
|
| PASS_COOKIE | 'wordpresspass_ec847317430eae5f31b3a95516bd292b'
|
| AUTH_COOKIE | 'wordpress_ec847317430eae5f31b3a95516bd292b'
|
| SECURE_AUTH_COOKIE | 'wordpress_sec_ec847317430eae5f31b3a95516bd292b'
|
| LOGGED_IN_COOKIE | 'wordpress_logged_in_ec847317430eae5f31b3a95516bd292b'
|
| 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_ec847317430eae5f31b3a95516bd292b'
|
| FORCE_SSL_ADMIN | true
|
| WP_FS__SDK_VERSION | '2.12.2'
|
| WP_FS__SLUG | 'freemius'
|
| WP_FS__DEV_MODE | false
|
| WP_FS__SIMULATE_NO_API_CONNECTIVITY | false
|
| WP_FS__SIMULATE_NO_CURL | false
|
| WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE | false
|
| WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL | false
|
| WP_FS__SIMULATE_FREEMIUS_OFF | false
|
| WP_FS__PING_API_ON_IP_OR_HOST_CHANGES | false
|
| WP_FS__VVV_DEFAULT_PUBLIC_IP | '192.168.50.4'
|
| WP_FS__SKIP_EMAIL_ACTIVATION | false
|
| WP_FS__DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius'
|
| WP_FS__DIR_INCLUDES | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/includes'
|
| WP_FS__DIR_TEMPLATES | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/templates'
|
| WP_FS__DIR_ASSETS | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets'
|
| WP_FS__DIR_CSS | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/css'
|
| WP_FS__DIR_JS | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/js'
|
| WP_FS__DIR_IMG | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/img'
|
| WP_FS__DIR_SDK | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/includes/sdk'
|
| WP_FS__ROOT_DOMAIN_PRODUCTION | 'freemius.com'
|
| WP_FS__DOMAIN_PRODUCTION | 'wp.freemius.com'
|
| WP_FS__ADDRESS_PRODUCTION | 'https://wp.freemius.com'
|
| WP_FS__DOMAIN_LOCALHOST | 'wp.freemius'
|
| WP_FS__ADDRESS_LOCALHOST | 'http://wp.freemius:8080'
|
| WP_FS__TESTING_DOMAIN | 'fswp'
|
| WP_FS__IS_HTTP_REQUEST | true
|
| WP_FS__IS_HTTPS | true
|
| WP_FS__IS_POST_REQUEST | false
|
| WP_FS__REMOTE_ADDR | '217.72.203.107'
|
| WP_FS__IS_LOCALHOST | false
|
| WP_FS__IS_LOCALHOST_FOR_SERVER | false
|
| WP_FS__IS_PRODUCTION_MODE | true
|
| WP_FS__ADDRESS | 'https://wp.freemius.com'
|
| WP_FS__API_ADDRESS_LOCALHOST | 'http://api.freemius-local.com:8080'
|
| WP_FS__API_SANDBOX_ADDRESS_LOCALHOST | 'http://sandbox-api.freemius:8080'
|
| FS_CHECKOUT__ADDRESS_PRODUCTION | 'https://checkout.freemius.com'
|
| FS_CHECKOUT__ADDRESS_LOCALHOST | 'http://checkout.freemius-local.com:8080'
|
| FS_CHECKOUT__ADDRESS | 'https://checkout.freemius.com'
|
| WP_FS___OPTION_PREFIX | 'fs_'
|
| WP_FS__ACCOUNTS_OPTION_NAME | 'fs_accounts'
|
| WP_FS__API_CACHE_OPTION_NAME | 'fs_api_cache'
|
| WP_FS__GDPR_OPTION_NAME | 'fs_gdpr'
|
| WP_FS__OPTIONS_OPTION_NAME | 'fs_options'
|
| WP_FS__MODULE_TYPE_PLUGIN | 'plugin'
|
| WP_FS__MODULE_TYPE_THEME | 'theme'
|
| WP_FS__PERIOD_ANNUALLY | 'annual'
|
| WP_FS__PERIOD_MONTHLY | 'monthly'
|
| WP_FS__PERIOD_LIFETIME | 'lifetime'
|
| WP_FS__PLAN_DEFAULT_PAID | false
|
| WP_FS__PLAN_FREE | 'free'
|
| WP_FS__PLAN_TRIAL | 'trial'
|
| WP_FS__TIME_5_MIN_IN_SEC | 300
|
| WP_FS__TIME_10_MIN_IN_SEC | 600
|
| WP_FS__TIME_12_HOURS_IN_SEC | 43200
|
| WP_FS__TIME_24_HOURS_IN_SEC | 86400
|
| WP_FS__TIME_WEEK_IN_SEC | 604800
|
| WP_FS__DEBUG_SDK | false
|
| WP_FS__ECHO_DEBUG_SDK | false
|
| WP_FS__LOG_DATETIME_FORMAT | 'Y-m-d H:i:s'
|
| FS_API__LOGGER_ON | false
|
| WP_FS__SCRIPT_START_TIME | 1778061812
|
| WP_FS__DEFAULT_PRIORITY | 10
|
| WP_FS__LOWEST_PRIORITY | 999999999
|
| WP_FS__IS_NETWORK_ADMIN | false
|
| WP_FS__IS_BLOG_ADMIN | false
|
| WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED | false
|
| WP_FS__DEMO_MODE | false
|
| FS_SDK__SSLVERIFY | false
|
| WP_FS__SECURITY_PARAMS_PREFIX | 's_'
|
| CF7APPS_VERSION | '3.4.0'
|
| CF7APPS_PLUGIN | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/honeypot.php'
|
| CF7APPS_PLUGIN_BASENAME | 'contact-form-7-honeypot/honeypot.php'
|
| CF7APPS_PLUGIN_NAME | 'contact-form-7-honeypot'
|
| CF7APPS_PLUGIN_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot'
|
| CF7APPS_PLUGIN_DIR_URL | 'https://develop.staging-smp.de/wp-content/plugins/contact-form-7-honeypot'
|
| CF7APPS_DEP_PLUGIN | 'contact-form-7/wp-contact-form-7.php'
|
| CF7APPS_WPCF7_VERSION | '6.1.5'
|
| WPCF7_VERSION | '6.1.5'
|
| WPCF7_REQUIRED_WP_VERSION | '6.7'
|
| WPCF7_TEXT_DOMAIN | 'contact-form-7'
|
| WPCF7_PLUGIN | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7/wp-contact-form-7.php'
|
| WPCF7_PLUGIN_BASENAME | 'contact-form-7/wp-contact-form-7.php'
|
| WPCF7_PLUGIN_NAME | 'contact-form-7'
|
| WPCF7_PLUGIN_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7'
|
| WPCF7_PLUGIN_MODULES_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7/modules'
|
| WPCF7_LOAD_JS | true
|
| WPCF7_LOAD_CSS | true
|
| WPCF7_AUTOP | true
|
| WPCF7_USE_PIPE | true
|
| WPCF7_ADMIN_READ_CAPABILITY | 'edit_posts'
|
| WPCF7_ADMIN_READ_WRITE_CAPABILITY | 'publish_pages'
|
| WPCF7_VERIFY_NONCE | false
|
| WPCF7_USE_REALLY_SIMPLE_CAPTCHA | false
|
| WPCF7_VALIDATE_CONFIGURATION | true
|
| WPCF7_PLUGIN_URL | 'https://develop.staging-smp.de/wp-content/plugins/contact-form-7'
|
| ELEMENTOR_VERSION | '3.35.6'
|
| ELEMENTOR__FILE__ | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor/elementor.php'
|
| ELEMENTOR_PLUGIN_BASE | 'elementor/elementor.php'
|
| ELEMENTOR_PATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor/'
|
| ELEMENTOR_URL | 'https://develop.staging-smp.de/wp-content/plugins/elementor/'
|
| ELEMENTOR_MODULES_PATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor//modules'
|
| ELEMENTOR_ASSETS_PATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor/assets/'
|
| ELEMENTOR_ASSETS_URL | 'https://develop.staging-smp.de/wp-content/plugins/elementor/assets/'
|
| ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN | '150605b3b9f979922f2ac5a52e2dcfe9'
|
| NFW_ENGINE_VERSION | '4.8.3'
|
| NFW_NULL_BYTE | 2
|
| NFW_SCAN_BOTS | 531
|
| NFW_ASCII_CTRL | 500
|
| NFW_DOC_ROOT | 510
|
| NFW_WRAPPERS | 520
|
| NFW_OBJECTS | 525
|
| NFW_LOOPBACK | 540
|
| NFW_DEFAULT_MSG | |
| NFW_LOG_DIR | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content'
|
| NINJAFIREWALL_MU_PLUGIN | '0-ninjafirewall.php'
|
| Functional\… | |
| SMP_SERVER_PRODUCTION_BASE_URL | 'https://api.smp-it-media.de'
|
| SMP_SERVER_STAGE_BASE_URL | 'https://stage.api.smp-it-media.de'
|
| SMP_SERVER_CACHE_DIR_NAME | 'cache'
|
| SMP_SERVER_CACHE_LIFETIME_IN_MINUTES | 100
|
| SMP_REGULAR_PRODUCTS_COUNT | 8
|
| SMP_SERVER_CODE_BASE_URL | 'https://code.smp-it-media.de'
|
| SMP_SERVER_FONT_BASE_URL | 'https://fonts.smp-it-media.de'
|
| SMP_MAIL_SERVER_DEFAULT_HOST | 'mx1.smp-it-media.de'
|
| SMP_MAIL_SERVER_DEFAULT_PORT | 25
|
| SMP_COMPILED_ASSETS_DIR_NAME | 'compiled-assets'
|
| SMP_OPTION_SLIDER | 'smp-slider'
|
| SMP_OPTION_FLYER_CONFIGS | 'smp-flyer-configs'
|
| SMP_OPTION_STORE_SPECIAL_OPENING_CONFIGS | 'smp-store-special-opening-configs'
|
| SMP_OPTION_CUSTOMER_TYPE | 'smp-customer-type'
|
| SMP_OPTION_NEWSLETTER_FORM_ID | 'smp-newsletter-form-id'
|
| SMP_OPTION_SPECIALS | 'smp-specials'
|
| SMP_OPTION_SOCIAL_MEDIA | 'smp-social-media'
|
| SMP_OPTION_TRACKING_ID_MATOMO | 'smp-tracking-id-matomo'
|
| SMP_OPTION_TRACKING_ID_META_PIXEL | 'smp-tracking-id-meta-pixel'
|
| SMP_OPTION_CUSTOM_MAIL_SERVER_CONFIG | 'smp-mail-server'
|
| SMP_OPTION_API_SERVER_CONFIG | 'smp-api-server-config'
|
| SMP_OPTION_TEST_DATA_CONFIG | 'smp-test-data-config'
|
| SMP_OPTION_NEWSLETTER_PROVIDER_CONFIG | 'smp-newsletter-provider-config'
|
| SMP_OPTION_OFFERS_APP_BUNDLEID | 'smp-offers-app-bundle-id'
|
| SMP_OPTION_GUTENBERG_EDITOR | 'smp-option-gutenberg-editor'
|
| SMP_ENCRYPTION_KEY | |
| SMP_ENCRYPTION_IV | |
| SMP_ADMIN_FORM_FIELD_SUBMITTED | 'smp-form-submitted'
|
| SMP_ADMIN_FORM_FIELD_NONCE | 'smp-form-nonce'
|
| SMP_DEBUG_DISABLE_ANIMATIONS | false
|
| SMP_DEBUG_ALWAYS_RECOMPILE_ASSETS | false
|
| WPSEO_FILE | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/wordpress-seo/wp-seo.php'
|
| WPSEO_VERSION | '27.1.1'
|
| WPSEO_PATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/wordpress-seo/'
|
| WPSEO_BASENAME | 'wordpress-seo/wp-seo.php'
|
| YOAST_VENDOR_NS_PREFIX | 'YoastSEO_Vendor'
|
| YOAST_VENDOR_DEFINE_PREFIX | 'YOASTSEO_VENDOR__'
|
| YOAST_VENDOR_PREFIX_DIRECTORY | 'vendor_prefixed'
|
| YOAST_SEO_PHP_REQUIRED | '7.4'
|
| YOAST_SEO_WP_TESTED | '6.9.1'
|
| YOAST_SEO_WP_REQUIRED | '6.8'
|
| WPSEO_NAMESPACES | true
|
| YOAST_ENVIRONMENT | 'production'
|
| WPSEO_CSSJS_SUFFIX | '.min'
|
| ELEMENTOR_ONE_ASSETS_URL | 'https://develop.staging-smp.de/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/build/'
|
| ELEMENTOR_ONE_ASSETS_PATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/build/'
|
| ELEMENTOR_ONE_UI_ASSETS_ROOT_URL | 'https://develop.staging-smp.de/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/elementor-home/'
|
| ELEMENTOR_ONE_CLIENT_APP_URL | 'https://develop.staging-smp.de/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/elementor-home/client.js'
|
| AUTOSAVE_INTERVAL | 60
|
| EMPTY_TRASH_DAYS | 30
|
| WP_POST_REVISIONS | true
|
| WP_CRON_LOCK_TIMEOUT | 60
|
| TEMPLATEPATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern'
|
| STYLESHEETPATH | '/var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern'
|
| WP_DEFAULT_THEME | 'twentytwentyfive'
|
| 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 |
| php-fpm | active |
| Directive | Local Value | Master Value |
|---|---|---|
| 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.error_header | no value | no value |
| fastcgi.logging | On | On |
| fpm.config | no value | no value |
| PHP Version | 8.2.30 |
| 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 | /var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/nfwlog/ninjafirewall.php | no value |
| 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 | Off |
| display_startup_errors | Off | Off |
| 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 | /var/www/vhosts/develop.staging-smp.de/httpdocs/wp-content/debug.log | no value |
| error_log_mode | 0644 | 0644 |
| error_prepend_string | no value | no value |
| error_reporting | 32767 | 22527 |
| expose_php | Off | Off |
| extension_dir | /usr/lib/php/20220829 | /usr/lib/php/20220829 |
| 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 | .:/usr/share/php |
| input_encoding | no value | no value |
| internal_encoding | no value | no value |
| log_errors | Off | On |
| mail.add_x_header | Off | Off |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| mail.mixed_lf_and_crlf | Off | Off |
| max_execution_time | 30 | 30 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| max_multipart_body_parts | -1 | -1 |
| memory_limit | 128M | 128M |
| 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 | 8M | 8M |
| 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 | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
| serialize_precision | -1 | -1 |
| short_open_tag | Off | Off |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sys_temp_dir | no value | no value |
| 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 | 2M | 2M |
| 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 |
| 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 | On |
| zend.exception_string_param_max_len | 0 | 0 |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| zend.signal_check | Off | Off |
| ctype functions | enabled |
| date/time support | enabled |
| timelib version | 2022.12 |
| "Olson" Timezone Database Version | 0.system |
| 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.9.14 |
| 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 headers Version | 2.3.3 |
| GD library Version | 2.3.3 |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| PNG Support | enabled |
| WBMP Support | enabled |
| XPM Support | enabled |
| 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 | glibc |
| iconv library version | 2.36 |
| 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 |
| json support | enabled |
| libXML support | active |
| libXML Compiled Version | 2.9.14 |
| libXML Loaded Version | 20914 |
| 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.30 |
| 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 | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| 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.30 |
| 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.18 30 Sep 2025 |
| OpenSSL Header Version | OpenSSL 3.0.19 27 Jan 2026 |
| Openssl default config | /usr/lib/ssl/openssl.cnf |
| Directive | Local Value | Master Value |
|---|---|---|
| openssl.cafile | no value | no value |
| openssl.capath | no value | no value |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 10.42 2022-12-11 |
| 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 | On | On |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 8.2.30 |
| Directive | Local Value | Master Value |
|---|---|---|
| pdo_mysql.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| 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 |
| Native 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 |
| POSIX support | enabled |
| Version | 8.2.30 |
| Readline Support | enabled |
|---|---|
| Readline library | EditLine wrapper |
| 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 | /var/lib/php/sessions | /var/lib/php/sessions |
| session.serialize_handler | php | php |
| session.sid_bits_per_character | 5 | 5 |
| session.sid_length | 26 | 26 |
| 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 | On | On |
| session.use_trans_sid | Off | Off |
| shmop support | enabled |
| SimpleXML support | enabled |
| Schema support | enabled |
| Sockets Support | enabled |
| 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 |
| Dynamic Library Support | enabled |
| Path to sendmail | /usr/sbin/sendmail -t -i |
| 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 | form= | form= |
| user_agent | no value | no value |
| sysvmsg support | enabled |
| sysvsem support | enabled |
| sysvshm support | enabled |
| Tokenizer Support | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.9.14 |
| XMLReader | enabled |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.35 |
| libxslt compiled against libxml Version | 2.9.14 |
| EXSLT | enabled |
| libexslt Version | 0.8.20 |
| LibYAML Support | enabled |
| Module Version | 2.2.2 |
| LibYAML Version | 0.2.5 |
| Directive | Local Value | Master Value |
|---|---|---|
| yaml.decode_binary | 0 | 0 |
| yaml.decode_php | 0 | 0 |
| yaml.decode_timestamp | 0 | 0 |
| yaml.output_canonical | 0 | 0 |
| yaml.output_indent | 2 | 2 |
| yaml.output_width | 80 | 80 |
| Opcode Caching | Up and Running |
| Optimization | Enabled |
| SHM Cache | Enabled |
| File Cache | Disabled |
| JIT | On |
| Startup | OK |
| Shared memory model | mmap |
| Cache hits | 553744309 |
| Cache misses | 37339180556 |
| Used memory | 134210304 |
| Free memory | 7424 |
| Wasted memory | 0 |
| Interned Strings Used memory | 4497432 |
| Interned Strings Free memory | 3891176 |
| Cached scripts | 1974 |
| Cached keys | 1994 |
| Max keys | 16229 |
| OOM restarts | 0 |
| Hash keys restarts | 0 |
| Manual restarts | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| opcache.blacklist_filename | no value | no value |
| opcache.consistency_checks | 0 | 0 |
| opcache.dups_fix | Off | Off |
| opcache.enable | On | On |
| opcache.enable_cli | Off | Off |
| opcache.enable_file_override | Off | Off |
| opcache.error_log | no value | no value |
| opcache.file_cache | no value | no value |
| opcache.file_cache_consistency_checks | On | On |
| opcache.file_cache_only | Off | Off |
| opcache.file_update_protection | 2 | 2 |
| opcache.force_restart_timeout | 180 | 180 |
| opcache.huge_code_pages | Off | Off |
| opcache.interned_strings_buffer | 8 | 8 |
| opcache.jit | 1205 | 1205 |
| opcache.jit_bisect_limit | 0 | 0 |
| opcache.jit_blacklist_root_trace | 16 | 16 |
| opcache.jit_blacklist_side_trace | 8 | 8 |
| opcache.jit_buffer_size | 200M | 200M |
| opcache.jit_debug | 0 | 0 |
| opcache.jit_hot_func | 127 | 127 |
| opcache.jit_hot_loop | 64 | 64 |
| opcache.jit_hot_return | 8 | 8 |
| opcache.jit_hot_side_exit | 8 | 8 |
| opcache.jit_max_exit_counters | 8192 | 8192 |
| opcache.jit_max_loop_unrolls | 8 | 8 |
| opcache.jit_max_polymorphic_calls | 2 | 2 |
| opcache.jit_max_recursive_calls | 2 | 2 |
| opcache.jit_max_recursive_returns | 2 | 2 |
| opcache.jit_max_root_traces | 1024 | 1024 |
| opcache.jit_max_side_traces | 128 | 128 |
| opcache.jit_prof_threshold | 0.005 | 0.005 |
| opcache.lockfile_path | /tmp | /tmp |
| opcache.log_verbosity_level | 1 | 1 |
| opcache.max_accelerated_files | 10000 | 10000 |
| opcache.max_file_size | 0 | 0 |
| opcache.max_wasted_percentage | 5 | 5 |
| opcache.memory_consumption | 128 | 128 |
| opcache.opt_debug_level | 0 | 0 |
| opcache.optimization_level | 0x7FFEBFFF | 0x7FFEBFFF |
| opcache.preferred_memory_model | no value | no value |
| opcache.preload | no value | no value |
| opcache.preload_user | no value | no value |
| opcache.protect_memory | Off | Off |
| opcache.record_warnings | Off | Off |
| opcache.restrict_api | no value | no value |
| opcache.revalidate_freq | 2 | 2 |
| opcache.revalidate_path | Off | Off |
| opcache.save_comments | On | On |
| opcache.use_cwd | On | On |
| opcache.validate_permission | Off | Off |
| opcache.validate_root | Off | Off |
| opcache.validate_timestamps | On | On |
| ZLib Support | enabled |
|---|---|
| Stream Wrapper | compress.zlib:// |
| Stream Filter | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.13 |
| Linked Version | 1.2.13 |
| 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 (7)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' => 'Elementor\Modules\ImageLoadingOptimization\Module::handle_buffer_content' | 'type' => 1 | 'flags' => 113 | 'level' => 1 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 02 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 2 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 03 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 3 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 1004 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 4 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 05 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 5 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 06 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 6 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
| Host | 'selders.staging-smp.de'
|
|---|---|
| Accept-Encoding | 'gzip, br, zstd, deflate'
|
| Cookie | 'tracy-session=00d84ccfe2'
|
| User-Agent | 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
|
| Accept | '*/*'
|
empty
empty
| tracy-session | '00d84ccfe2'
|
|---|
| Link | |
|---|---|
| Link | |
| Link | |
| Content-Type | 'text/html; charset=UTF-8'
|
Headers were not sent at the time the exception was thrown