TypeError
File: .../httpdocs/wp-admin/includes/class-wp-filesystem-ftpext.php:438
428: /* 429: * Check for empty path. If ftp_nlist() receives an empty path, 430: * it checks the current working directory and may return true. 431: * 432: * See https://core.trac.wordpress.org/ticket/33058. 433: */ 434: if ( '' === $path ) { 435: return false; 436: } 437: 438: $list = ftp_nlist( $this->link, $path ); 439: 440: if ( empty( $list ) && $this->is_dir( $path ) ) { 441: return true; // File is an empty directory. 442: }
428: /* 429: * Check for empty path. If ftp_nlist() receives an empty path, 430: * it checks the current working directory and may return true. 431: * 432: * See https://core.trac.wordpress.org/ticket/33058. 433: */ 434: if ( '' === $path ) { 435: return false; 436: } 437: 438: $list = ftp_nlist( $this->link, $path ); 439: 440: if ( empty( $list ) && $this->is_dir( $path ) ) { 441: return true; // File is an empty directory. 442: }
| $ftp | null
|
|---|---|
| $directory | '/var/www/vhosts/modern.staging-smp.de/httpdocs/'
|
221: return trailingslashit( $folder ); 222: } 223: 224: $folder = preg_replace( '|^([a-z]{1}):|i', '', $folder ); // Strip out Windows drive letter if it's there. 225: $folder = str_replace( '\\', '/', $folder ); // Windows path sanitization. 226: 227: if ( isset( $this->cache[ $folder ] ) ) { 228: return $this->cache[ $folder ]; 229: } 230: 231: if ( $this->exists( $folder ) ) { // Folder exists at that absolute path. 232: $folder = trailingslashit( $folder ); 233: $this->cache[ $folder ] = $folder; 234: 235: return $folder;
| $path | '/var/www/vhosts/modern.staging-smp.de/httpdocs/'
|
|---|
48: public $options = array(); 49: 50: /** 51: * Returns the path on the remote filesystem of ABSPATH. 52: * 53: * @since 2.7.0 54: * 55: * @return string The location of the remote path. 56: */ 57: public function abspath() { 58: $folder = $this->find_folder( ABSPATH ); 59: 60: /* 61: * Perhaps the FTP folder is rooted at the WordPress install. 62: * Check for wp-includes folder in root. Could have some false positives, but rare.
| $folder | '/var/www/vhosts/modern.staging-smp.de/httpdocs/'
|
|---|
66: require_once ABSPATH . '/wp-admin/includes/file.php'; 67: WP_Filesystem(); 68: } 69: 70: return $wp_filesystem; 71: } 72: 73: private function get_filesystem_path( $path ): string { 74: $filesystem = $this->get_filesystem(); 75: 76: return str_replace( ABSPATH, $filesystem->abspath(), $path ); 77: } 78: 79: private function get_url( string $handle ): string { 80: $upload_dir = wp_upload_dir();
25: $media, 26: ); 27: } 28: 29: $css = $get_css(); 30: 31: if ( empty( $css ) ) { 32: return null; 33: } 34: 35: $filesystem_path = $this->get_filesystem_path( $path ); 36: 37: $is_created = $filesystem->put_contents( $filesystem_path, $css, self::PERMISSIONS ); 38: 39: if ( false === $is_created ) {
| $path | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/uploads/elementor/css/base-desktop.css'
|
|---|
118: $version = $this->cache_validity->get_meta( $path ); 119: 120: $breakpoint_media = $this->get_breakpoint_media( $breakpoint_key ); 121: 122: if ( ! $breakpoint_media ) { 123: continue; 124: } 125: 126: $breakpoint_path = array_merge( $path, [ $breakpoint_key ] ); 127: 128: $style_file = $this->css_files_manager->get( 129: $this->convert_path_to_handle( $breakpoint_path ), 130: $breakpoint_media, 131: $render_css, 132: $this->cache_validity->is_valid( $breakpoint_path )
| $handle | 'base-desktop'
|
|---|---|
| $media | 'all'
|
| $get_css | |
| $is_valid_cache | false
|
76: ->map_with_keys( fn ( $style_params, $style_key ) => [ 77: $style_key => [ 78: 'get_styles' => $get_styles_memo->memoize( $style_key, $style_params['get_styles'] ), 79: 'path' => $style_params['path'], 80: ], 81: ]) 82: ->all(); 83: 84: $this->before_render( $styles_by_key ); 85: 86: $this->render( $styles_by_key ); 87: 88: $this->after_render( $styles_by_key ); 89: } 90:
| $styles_by_key |
|---|
38: 39: public static function instance() { 40: if ( ! self::$instance ) { 41: self::$instance = new self(); 42: } 43: 44: return self::$instance; 45: } 46: 47: public function register_hooks() { 48: add_action( 'elementor/frontend/after_enqueue_post_styles', fn() => $this->enqueue_styles() ); 49: 50: add_action( 'elementor/post/render', function( $post_id ) { 51: $this->post_ids[] = $post_id; 52: } );
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: }
| #0 | ''
|
|---|
355: 356: /** 357: * Calls the callback functions that have been added to an action hook. 358: * 359: * @since 4.7.0 360: * 361: * @param array $args Parameters to pass to the callback functions. 362: */ 363: public function do_action( $args ) { 364: $this->doing_action = true; 365: $this->apply_filters( '', $args ); 366: 367: // If there are recursive calls to the current action, we haven't finished it until we get to the last one. 368: if ( ! $this->nesting_level ) { 369: $this->doing_action = false;
| $value | ''
|
|---|---|
| $args |
512: $wp_current_filter[] = $hook_name; 513: } 514: 515: if ( empty( $arg ) ) { 516: $arg[] = ''; 517: } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) { 518: // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`. 519: $arg[0] = $arg[0][0]; 520: } 521: 522: $wp_filter[ $hook_name ]->do_action( $arg ); 523: 524: array_pop( $wp_current_filter ); 525: } 526:
| $args |
|---|
693: $css_file = Post_CSS::create( get_the_ID() ); 694: $css_file->enqueue(); 695: } 696: } else { 697: $post_id = Plugin::$instance->preview->get_post_id(); 698: if ( $post_id ) { 699: do_action( 'elementor/post/render', $post_id ); 700: } 701: } 702: 703: do_action( 'elementor/frontend/after_enqueue_post_styles' ); 704: } 705: } 706: 707: private function handle_page_assets( $post_id ): void {
| $hook_name | 'elementor/frontend/after_enqueue_post_styles'
|
|---|
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: }
| #0 | ''
|
|---|
355: 356: /** 357: * Calls the callback functions that have been added to an action hook. 358: * 359: * @since 4.7.0 360: * 361: * @param array $args Parameters to pass to the callback functions. 362: */ 363: public function do_action( $args ) { 364: $this->doing_action = true; 365: $this->apply_filters( '', $args ); 366: 367: // If there are recursive calls to the current action, we haven't finished it until we get to the last one. 368: if ( ! $this->nesting_level ) { 369: $this->doing_action = false;
| $value | null
|
|---|---|
| $args |
512: $wp_current_filter[] = $hook_name; 513: } 514: 515: if ( empty( $arg ) ) { 516: $arg[] = ''; 517: } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) { 518: // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`. 519: $arg[0] = $arg[0][0]; 520: } 521: 522: $wp_filter[ $hook_name ]->do_action( $arg ); 523: 524: array_pop( $wp_current_filter ); 525: } 526:
| $args |
|---|
2319: * Runs first in wp_head() where all is_home(), is_page(), etc. functions are available. 2320: * 2321: * @since 2.8.0 2322: */ 2323: function wp_enqueue_scripts() { 2324: /** 2325: * Fires when scripts and styles are enqueued. 2326: * 2327: * @since 2.8.0 2328: */ 2329: do_action( 'wp_enqueue_scripts' ); 2330: } 2331: 2332: /** 2333: * Prints the styles queue in the HTML head on admin pages.
| $hook_name | 'wp_enqueue_scripts'
|
|---|
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: }
| #0 | ''
|
|---|
355: 356: /** 357: * Calls the callback functions that have been added to an action hook. 358: * 359: * @since 4.7.0 360: * 361: * @param array $args Parameters to pass to the callback functions. 362: */ 363: public function do_action( $args ) { 364: $this->doing_action = true; 365: $this->apply_filters( '', $args ); 366: 367: // If there are recursive calls to the current action, we haven't finished it until we get to the last one. 368: if ( ! $this->nesting_level ) { 369: $this->doing_action = false;
| $value | null
|
|---|---|
| $args |
512: $wp_current_filter[] = $hook_name; 513: } 514: 515: if ( empty( $arg ) ) { 516: $arg[] = ''; 517: } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) { 518: // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`. 519: $arg[0] = $arg[0][0]; 520: } 521: 522: $wp_filter[ $hook_name ]->do_action( $arg ); 523: 524: array_pop( $wp_current_filter ); 525: } 526:
| $args |
|---|
3198: * See {@see 'wp_head'}. 3199: * 3200: * @since 1.2.0 3201: */ 3202: function wp_head() { 3203: /** 3204: * Prints scripts or data in the head tag on the front end. 3205: * 3206: * @since 1.5.0 3207: */ 3208: do_action( 'wp_head' ); 3209: } 3210: 3211: /** 3212: * Fires the wp_footer action.
| $hook_name | 'wp_head'
|
|---|
51: */ 52: public function getCharset() { 53: return WPContext::getSharedContext()->getCharset(); 54: } 55: 56: /** 57: * @return string The WordPress part of the head element, which gets output using `wp_head()`. 58: */ 59: public function getWordPressHeadContent() { 60: return bufferOutput(function() { 61: wp_head(); 62: }); 63: } 64: 65: }
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: /* ================================== */
50: * @return string The charset of the website. 51: */ 52: public function getCharset() { 53: return WPContext::getSharedContext()->getCharset(); 54: } 55: 56: /** 57: * @return string The WordPress part of the head element, which gets output using `wp_head()`. 58: */ 59: public function getWordPressHeadContent() { 60: return bufferOutput(function() { 61: wp_head(); 62: }); 63: } 64:
| $closure |
|---|
61: t.src=v;s=b.getElementsByTagName(e)[0]; 62: s.parentNode.insertBefore(t,s)}(window, document,'script','https://connect.facebook.net/en_US/fbevents.js'); 63: fbq('init', '<?= $trackingIdMetaPixel ?>'); 64: fbq('track', 'PageView'); 65: } else { 66: console.log('Meta-Pixel tracking off or no consent given'); 67: } 68: </script> 69: <!-- End Meta Pixel Code —> 70: <?php } ?> 71: <?= $this->getWordPressHeadContent() ?> 72: </head>
10: 11: final class HeadElement implements View { 12: 13: /* ================================== */ 14: /* Rendering */ 15: /* ================================== */ 16: 17: /** @inheritdoc */ 18: public function render() { 19: return bufferOutput(function() { 20: require __DIR__ . "/assets/head.html.php"; 21: }); 22: } 23: 24: /* ================================== */
| #0 | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/smp-plugin/sources/SMP/Platform/Views/Head/assets/head.html.php'
|
|---|
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: /* ================================== */
9: use function SMP\Platform\Utils\Php\notEmpty; 10: 11: final class HeadElement implements View { 12: 13: /* ================================== */ 14: /* Rendering */ 15: /* ================================== */ 16: 17: /** @inheritdoc */ 18: public function render() { 19: return bufferOutput(function() { 20: require __DIR__ . "/assets/head.html.php"; 21: }); 22: } 23:
| $closure |
|---|
36: $socialMediaImageColor = $themeData->getSocialMediaImageColor(); 37: $socialMediaView = new SocialMediaView($socialMediaSet, $socialMediaImageColor); 38: 39: $breadcrumbView = new BreadcrumbView(); 40: ?> 41: 42: <!DOCTYPE HTML> 43: 44: <html lang="de"> 45: 46: <?= $headElement->render() ?> 47: 48: <body> 49: 50: <?= $flyerBrowserView->render() ?>
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/modern.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/modern.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
122: ) { 123: /** 124: * Fires immediately before including the template. 125: * 126: * @since 6.9.0 127: * 128: * @param string $template The path of the template about to be included. 129: */ 130: do_action( 'wp_before_include_template', $template ); 131: 132: include $template; 133: } elseif ( current_user_can( 'switch_themes' ) ) { 134: $theme = wp_get_theme(); 135: if ( $theme->errors() ) { 136: wp_die( $theme->errors() );
| #0 | '/var/www/vhosts/modern.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/modern.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/modern.staging-smp.de/httpdocs/wp-blog-header.php'
|
|---|
| SERVER_SOFTWARE | 'Apache/2.4.68 (Debian)'
|
|---|---|
| REQUEST_URI | '/'
|
| 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'
|
| REMOTE_PORT | '15917'
|
| SCRIPT_FILENAME | '/var/www/vhosts/modern.staging-smp.de/httpdocs/index.php'
|
| SERVER_ADMIN | 'ops@smp-it-media.de'
|
| CONTEXT_DOCUMENT_ROOT | '/var/www/vhosts/modern.staging-smp.de/httpdocs'
|
| CONTEXT_PREFIX | ''
|
| REQUEST_SCHEME | 'https'
|
| DOCUMENT_ROOT | '/var/www/vhosts/modern.staging-smp.de/httpdocs'
|
| REMOTE_ADDR | '216.73.216.51'
|
| SERVER_PORT | '443'
|
| SERVER_ADDR | '217.72.203.107'
|
| SERVER_NAME | 'modern.staging-smp.de'
|
| SERVER_SIGNATURE | |
| PATH | '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
| HTTP_HOST | 'modern.staging-smp.de'
|
| HTTP_ACCEPT_ENCODING | 'gzip, br, zstd, deflate'
|
| HTTP_COOKIE | 'tracy-session=fcf64bec3d'
|
| 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 | 'modern.staging-smp.de'
|
| HTTPS | 'on'
|
| H2_STREAM_TAG | '3464605-124-3'
|
| H2_STREAM_ID | '3'
|
| H2_PUSHED_ON | ''
|
| H2_PUSHED | ''
|
| H2_PUSH | 'off'
|
| H2PUSH | 'off'
|
| HTTP2 | 'on'
|
| HTTP_AUTHORIZATION | ''
|
| FCGI_ROLE | 'RESPONDER'
|
| PHP_SELF | '/index.php'
|
| REQUEST_TIME_FLOAT | 1785894371.239906
|
| REQUEST_TIME | 1785894371
|
| NFWSESSION_DIR | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/nfwlog/session'
|
|---|---|
| NFW_PID | '63f50a8f7b8f15.93627124'
|
| NFW_IS_HTTPS | true
|
| NFW_RESHEADERS | '0003000000'
|
| NFW_REMOTE_ADDR | '216.73.216.51'
|
| NFW_REMOTE_ADDR_IPV6 | false
|
| NFW_REMOTE_ADDR_PRIVATE | false
|
| NFW_SWL | 1
|
| NFW_STATUS | 20
|
| WP_USE_THEMES | true
|
| ABSPATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/'
|
| DB_NAME | 'whitelabel_modern'
|
| 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 | |
| WP_DEBUG | 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 | 1785894371.263921
|
| WP_MEMORY_LIMIT | '40M'
|
| WP_MAX_MEMORY_LIMIT | '256M'
|
| WP_CONTENT_DIR | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content'
|
| WP_DEVELOPMENT_MODE | ''
|
| WP_DEBUG_DISPLAY | true
|
| WP_DEBUG_LOG | false
|
| 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/modern.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'
|
| WP_TEMPLATE_PART_AREA_NAVIGATION_OVERLAY | 'navigation-overlay'
|
| 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/modern.staging-smp.de/httpdocs/wp-includes/blocks/'
|
| WP_CONTENT_URL | 'https://modern.staging-smp.de/wp-content'
|
| WP_PLUGIN_DIR | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins'
|
| WP_PLUGIN_URL | 'https://modern.staging-smp.de/wp-content/plugins'
|
| PLUGINDIR | 'wp-content/plugins'
|
| WPMU_PLUGIN_DIR | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/mu-plugins'
|
| WPMU_PLUGIN_URL | 'https://modern.staging-smp.de/wp-content/mu-plugins'
|
| MUPLUGINDIR | 'wp-content/mu-plugins'
|
| COOKIEHASH | 'b3439c51693b3bdce90bc05fcb1fce07'
|
| USER_COOKIE | 'wordpressuser_b3439c51693b3bdce90bc05fcb1fce07'
|
| PASS_COOKIE | 'wordpresspass_b3439c51693b3bdce90bc05fcb1fce07'
|
| AUTH_COOKIE | 'wordpress_b3439c51693b3bdce90bc05fcb1fce07'
|
| SECURE_AUTH_COOKIE | 'wordpress_sec_b3439c51693b3bdce90bc05fcb1fce07'
|
| LOGGED_IN_COOKIE | 'wordpress_logged_in_b3439c51693b3bdce90bc05fcb1fce07'
|
| 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_b3439c51693b3bdce90bc05fcb1fce07'
|
| 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/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius'
|
| WP_FS__DIR_INCLUDES | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/includes'
|
| WP_FS__DIR_TEMPLATES | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/templates'
|
| WP_FS__DIR_ASSETS | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets'
|
| WP_FS__DIR_CSS | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/css'
|
| WP_FS__DIR_JS | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/js'
|
| WP_FS__DIR_IMG | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot/freemius/assets/img'
|
| WP_FS__DIR_SDK | '/var/www/vhosts/modern.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 | 1785894371
|
| 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/modern.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/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7-honeypot'
|
| CF7APPS_PLUGIN_DIR_URL | 'https://modern.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/modern.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/modern.staging-smp.de/httpdocs/wp-content/plugins/contact-form-7'
|
| WPCF7_PLUGIN_MODULES_DIR | '/var/www/vhosts/modern.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://modern.staging-smp.de/wp-content/plugins/contact-form-7'
|
| ELEMENTOR_VERSION | '3.35.6'
|
| ELEMENTOR__FILE__ | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/elementor/elementor.php'
|
| ELEMENTOR_PLUGIN_BASE | 'elementor/elementor.php'
|
| ELEMENTOR_PATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/elementor/'
|
| ELEMENTOR_URL | 'https://modern.staging-smp.de/wp-content/plugins/elementor/'
|
| ELEMENTOR_MODULES_PATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/elementor//modules'
|
| ELEMENTOR_ASSETS_PATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/elementor/assets/'
|
| ELEMENTOR_ASSETS_URL | 'https://modern.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/modern.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/modern.staging-smp.de/httpdocs/wp-content/plugins/wordpress-seo/wp-seo.php'
|
| WPSEO_VERSION | '27.1.1'
|
| WPSEO_PATH | '/var/www/vhosts/modern.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://modern.staging-smp.de/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/build/'
|
| ELEMENTOR_ONE_ASSETS_PATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/build/'
|
| ELEMENTOR_ONE_UI_ASSETS_ROOT_URL | 'https://modern.staging-smp.de/wp-content/plugins/elementor/vendor/elementor/wp-one-package/assets/elementor-home/'
|
| ELEMENTOR_ONE_CLIENT_APP_URL | 'https://modern.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/modern.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern'
|
| STYLESHEETPATH | '/var/www/vhosts/modern.staging-smp.de/httpdocs/wp-content/themes/smp-theme-modern'
|
| WP_DEFAULT_THEME | 'twentytwentyfive'
|
| FS_TIMEOUT | 240
|
| FS_CONNECT_TIMEOUT | 30
|
| Elementor\Modules\AtomicWidgets\Styles\FONTS_KEY_PREFIX | 'elementor_atomic_styles_fonts-'
|
| 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.32 |
| 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/modern.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 | no value | 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.32 |
| 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.32 |
| 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.20 7 Apr 2026 |
| OpenSSL Header Version | OpenSSL 3.0.20 7 Apr 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.32 |
| 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.32 |
| 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 | 229250160 |
| Cache misses | 19149627732 |
| Used memory | 134215112 |
| Free memory | 2616 |
| Wasted memory | 0 |
| Interned Strings Used memory | 5452344 |
| Interned Strings Free memory | 2936264 |
| Cached scripts | 2507 |
| Cached keys | 2858 |
| Max keys | 16229 |
| OOM restarts | 2 |
| 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 (4)0 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 01 => array (7)| 'name' => 'Elementor\Modules\ImageLoadingOptimization\Module::handle_buffer_content' | 'type' => 1 | 'flags' => 113 | 'level' => 1 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 362 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 2 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 13373 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 3 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
| Host | 'modern.staging-smp.de'
|
|---|---|
| Accept-Encoding | 'gzip, br, zstd, deflate'
|
| Cookie | 'tracy-session=fcf64bec3d'
|
| User-Agent | 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
|
| Accept | '*/*'
|
| Authorization |
empty
empty
| tracy-session | 'fcf64bec3d'
|
|---|
| Link | |
|---|---|
| Link | |
| Link | |
| Content-Type | 'text/html; charset=UTF-8'
|
Headers were not sent at the time the exception was thrown