Whoops \ Exception \ ErrorException
(E_DEPRECATED)
Stack frames (9)
8
Whoops\Exception\ErrorException
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/shortcodes.php246
7
str_contains
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/shortcodes.php246
6
do_shortcode
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/class-wp-embed.php72
5
WP_Embed
run_shortcode
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/class-wp-hook.php324
4
WP_Hook
apply_filters
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/plugin.php205
3
apply_filters
…/home.php9
2
include
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/template-loader.php106
1
require_once
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-blog-header.php19
0
require
/www/htdocs/w018d6e6/stg.ibf-thiox.de/index.php17
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/shortcodes.php
/**
* Searches content for shortcodes and filter shortcodes through their hooks.
*
* If there are no shortcode tags defined, then the content will be returned
* without any filtering. This might cause issues when plugins are disabled but
* the shortcode will still show up in the post or content.
*
* @since 2.5.0
*
* @global array $shortcode_tags List of shortcode tags and their callback hooks.
*
* @param string $content Content to search for shortcodes.
* @param bool $ignore_html When true, shortcodes inside HTML elements will be skipped.
* Default false.
* @return string Content with shortcodes filtered out.
*/
function do_shortcode( $content, $ignore_html = false ) {
global $shortcode_tags;
if ( ! str_contains( $content, '[' ) ) {
return $content;
}
if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) {
return $content;
}
// Find all registered tag names in $content.
preg_match_all( '@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches );
$tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
if ( empty( $tagnames ) ) {
return $content;
}
// Ensure this context is only added once if shortcodes are nested.
$has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
$filter_added = false;
if ( ! $has_filter ) {
Arguments
"str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated"
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/shortcodes.php
/**
* Searches content for shortcodes and filter shortcodes through their hooks.
*
* If there are no shortcode tags defined, then the content will be returned
* without any filtering. This might cause issues when plugins are disabled but
* the shortcode will still show up in the post or content.
*
* @since 2.5.0
*
* @global array $shortcode_tags List of shortcode tags and their callback hooks.
*
* @param string $content Content to search for shortcodes.
* @param bool $ignore_html When true, shortcodes inside HTML elements will be skipped.
* Default false.
* @return string Content with shortcodes filtered out.
*/
function do_shortcode( $content, $ignore_html = false ) {
global $shortcode_tags;
if ( ! str_contains( $content, '[' ) ) {
return $content;
}
if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) {
return $content;
}
// Find all registered tag names in $content.
preg_match_all( '@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches );
$tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
if ( empty( $tagnames ) ) {
return $content;
}
// Ensure this context is only added once if shortcodes are nested.
$has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
$filter_added = false;
if ( ! $has_filter ) {
Arguments
null"["
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/class-wp-embed.php
* Since the [embed] shortcode needs to be run earlier than other shortcodes,
* this function removes all existing shortcodes, registers the [embed] shortcode,
* calls do_shortcode(), and then re-registers the old shortcodes.
*
* @global array $shortcode_tags
*
* @param string $content Content to parse.
* @return string Content with shortcode parsed.
*/
public function run_shortcode( $content ) {
global $shortcode_tags;
// Back up current registered shortcodes and clear them all out.
$orig_shortcode_tags = $shortcode_tags;
remove_all_shortcodes();
add_shortcode( 'embed', array( $this, 'shortcode' ) );
// Do the shortcode (only the [embed] one is registered).
$content = do_shortcode( $content, true );
// Put the original shortcodes back.
$shortcode_tags = $orig_shortcode_tags;
return $content;
}
/**
* If a post/page was saved, then output JavaScript to make
* an Ajax request that will call WP_Embed::cache_oembed().
*/
public function maybe_run_ajax_cache() {
$post = get_post();
if ( ! $post || empty( $_GET['message'] ) ) {
return;
}
?>
<script type="text/javascript">
jQuery( function($) {
Arguments
nulltrue
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/class-wp-hook.php
$this->iterations[ $nesting_level ] = $this->priorities;
$num_args = count( $args );
do {
$this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
$priority = $this->current_priority[ $nesting_level ];
foreach ( $this->callbacks[ $priority ] as $the_ ) {
if ( ! $this->doing_action ) {
$args[0] = $value;
}
// Avoid the array_slice() if possible.
if ( 0 === $the_['accepted_args'] ) {
$value = call_user_func( $the_['function'] );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
}
}
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
unset( $this->iterations[ $nesting_level ] );
unset( $this->current_priority[ $nesting_level ] );
--$this->nesting_level;
return $value;
}
/**
* Calls the callback functions that have been added to an action hook.
*
* @since 4.7.0
*
* @param array $args Parameters to pass to the callback functions.
Arguments
null
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/plugin.php
$all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
_wp_call_all_hook( $all_args );
}
if ( ! isset( $wp_filter[ $hook_name ] ) ) {
if ( isset( $wp_filter['all'] ) ) {
array_pop( $wp_current_filter );
}
return $value;
}
if ( ! isset( $wp_filter['all'] ) ) {
$wp_current_filter[] = $hook_name;
}
// Pass the value to WP_Hook.
array_unshift( $args, $value );
$filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args );
array_pop( $wp_current_filter );
return $filtered;
}
/**
* Calls the callback functions that have been added to a filter hook, specifying arguments in an array.
*
* @since 3.0.0
*
* @see apply_filters() This function is identical, but the arguments passed to the
* functions hooked to `$hook_name` are supplied using an array.
*
* @global WP_Hook[] $wp_filter Stores all of the filters and actions.
* @global int[] $wp_filters Stores the number of times each filter was triggered.
* @global string[] $wp_current_filter Stores the list of current filters with the current one last.
*
* @param string $hook_name The name of the filter hook.
* @param array $args The arguments supplied to the functions hooked to `$hook_name`.
Arguments
nullarray:1 [ 0 => null ]
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-content/themes/ibf/home.php
<?php
get_header();
$html = grad('html');
$theme = grad('theme');
$headline = get_field('post-archive-headline', 'option');
$introtext = apply_filters('the_content', get_field('post-archive-introtext', 'options'));
?>
<section class="section section-news theme-green-light">
<div class="inner">
<div class="content container">
<?php if( !empty($headline) || !empty($introtext) ) : ?>
<div class="section-intro">
<div class="row justify-content-center">
<div class="col-md-22 col-lg-20">
<?php if( !empty($headline) ) : ?>
<h1 class="section-title">
<?php echo $headline ?>
</h1>
<?php endif ?>
<?php echo $introtext ?>
</div>
</div>
</div>
<?php endif ?>
<div class="card-row row">
<?php while( have_posts() ) : the_post() ?>
<div class="card-col col-md-8">
<?php
$title = get_the_title();
?>
Arguments
"the_content"null
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
Arguments
"/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-content/themes/ibf/home.php"
/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
"/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-includes/template-loader.php"
/www/htdocs/w018d6e6/stg.ibf-thiox.de/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
Arguments
"/www/htdocs/w018d6e6/stg.ibf-thiox.de/wp-blog-header.php"
Environment & details:
empty
empty
empty
empty
empty
| Key | Value |
| SERVER_SOFTWARE | "Apache"
|
| REQUEST_URI | "/aktuelles/page/2/"
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
| USER | "w018d6e6"
|
| HOME | "/www/htdocs/w018d6e6"
|
| SCRIPT_NAME | "/index.php"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/aktuelles/page/2/"
|
| REMOTE_PORT | "40018"
|
| SCRIPT_FILENAME | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/index.php"
|
| SERVER_ADMIN | "webmaster@stg.ibf-thiox.de"
|
| CONTEXT_DOCUMENT_ROOT | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/"
|
| CONTEXT_PREFIX | "" |
| REQUEST_SCHEME | "https"
|
| DOCUMENT_ROOT | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/"
|
| REMOTE_ADDR | "216.73.216.141"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "85.13.152.87"
|
| SERVER_NAME | "stg.ibf-thiox.de"
|
| SERVER_SIGNATURE | "" |
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_X_REAL_IP | "216.73.216.141"
|
| HTTP_HOST | "stg.ibf-thiox.de"
|
| SSL_CLIENT_CERT | "" |
| SSL_SERVER_CERT | """ -----BEGIN CERTIFICATE-----\n MIIDpTCCAyqgAwIBAgISBV+LDy70ij4fVZv+9eAJ4/JUMAoGCCqGSM49BAMDMDMx\n CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNZ\n RTIwHhcNMjYwNzA1MjIwMDIzWhcNMjYxMDAzMjIwMDIyWjAbMRkwFwYDVQQDExBz\n dGcuaWJmLXRoaW94LmRlMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjRSktSGS\n B+ILrnklL0gl6XOWV2Fze3E1TKRlYZijFOQ7Y3bEhjWZloOcCEoZQyRSmfQ5NLMU\n FNxKMhW69rtVv6OCAjQwggIwMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggr\n BgEFBQcDATAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRjTJDkMVwBmjpOrZ9DBHQD\n NPPiPjAfBgNVHSMEGDAWgBS5WfKOzyLwhtM3SP92FBi6gthVhzAzBggrBgEFBQcB\n AQQnMCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly95ZTIuaS5sZW5jci5vcmcvMDEGA1Ud\n EQQqMCiCEHN0Zy5pYmYtdGhpb3guZGWCFHd3dy5zdGcuaWJmLXRoaW94LmRlMBMG\n A1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUwI6AhoB+GHWh0dHA6Ly95ZTIu\n Yy5sZW5jci5vcmcvODUuY3JsMIIBDAYKKwYBBAHWeQIEAgSB/QSB+gD4AHYAlE5D\n h/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGfNIGMBAAABAMARzBFAiBa\n kWzbB3mrhrkrxEj4k0wTWrTocZDH0jNLG4bKjWa+mgIhANW7qtiK4MElEE/w2mjS\n x++EoAT589rCpJQpmRc3nfnXAH4AJuNkblhpISO8ND9HJDWbN5LNJFqI2BXTkzP9\n mRirRyMAAAGfNIGJ8gAIAAAFACXWAjkEAwBHMEUCIQDoUZmHXs+eZe8KwCryLdqy\n I4kY5bx2zwRaiqNeI2MYAQIgB4IzPFLPLEfCYkLEPVKfxoU7xmT82sTb1F4mQfTy\n W1cwCgYIKoZIzj0EAwMDaQAwZgIxAIWOlfAlcAw/ocJdlAsKrzzBRye5U9YSbMdZ\n rn7kPtwSIE9bPzcKthyav37hrdRZmAIxAM0MPKfqShlQGlD7CNHDAGnf9gBp39BF\n D2Tjf4WRdCdMPdE/a6+0+/P93ksBD12o2Q==\n -----END CERTIFICATE-----\n """ |
| SSL_TLS_SNI | "stg.ibf-thiox.de"
|
| HTTPS | "on"
|
| HTTP_AUTHORIZATION | "" |
| UNIQUE_ID | "apn-oEonwELWChaeFz2TugAAACA"
|
| REDIRECT_STATUS | "200"
|
| REDIRECT_SSL_CLIENT_CERT | "" |
| REDIRECT_SSL_SERVER_CERT | """ -----BEGIN CERTIFICATE-----\n MIIDpTCCAyqgAwIBAgISBV+LDy70ij4fVZv+9eAJ4/JUMAoGCCqGSM49BAMDMDMx\n CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNZ\n RTIwHhcNMjYwNzA1MjIwMDIzWhcNMjYxMDAzMjIwMDIyWjAbMRkwFwYDVQQDExBz\n dGcuaWJmLXRoaW94LmRlMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjRSktSGS\n B+ILrnklL0gl6XOWV2Fze3E1TKRlYZijFOQ7Y3bEhjWZloOcCEoZQyRSmfQ5NLMU\n FNxKMhW69rtVv6OCAjQwggIwMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggr\n BgEFBQcDATAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRjTJDkMVwBmjpOrZ9DBHQD\n NPPiPjAfBgNVHSMEGDAWgBS5WfKOzyLwhtM3SP92FBi6gthVhzAzBggrBgEFBQcB\n AQQnMCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly95ZTIuaS5sZW5jci5vcmcvMDEGA1Ud\n EQQqMCiCEHN0Zy5pYmYtdGhpb3guZGWCFHd3dy5zdGcuaWJmLXRoaW94LmRlMBMG\n A1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUwI6AhoB+GHWh0dHA6Ly95ZTIu\n Yy5sZW5jci5vcmcvODUuY3JsMIIBDAYKKwYBBAHWeQIEAgSB/QSB+gD4AHYAlE5D\n h/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGfNIGMBAAABAMARzBFAiBa\n kWzbB3mrhrkrxEj4k0wTWrTocZDH0jNLG4bKjWa+mgIhANW7qtiK4MElEE/w2mjS\n x++EoAT589rCpJQpmRc3nfnXAH4AJuNkblhpISO8ND9HJDWbN5LNJFqI2BXTkzP9\n mRirRyMAAAGfNIGJ8gAIAAAFACXWAjkEAwBHMEUCIQDoUZmHXs+eZe8KwCryLdqy\n I4kY5bx2zwRaiqNeI2MYAQIgB4IzPFLPLEfCYkLEPVKfxoU7xmT82sTb1F4mQfTy\n W1cwCgYIKoZIzj0EAwMDaQAwZgIxAIWOlfAlcAw/ocJdlAsKrzzBRye5U9YSbMdZ\n rn7kPtwSIE9bPzcKthyav37hrdRZmAIxAM0MPKfqShlQGlD7CNHDAGnf9gBp39BF\n D2Tjf4WRdCdMPdE/a6+0+/P93ksBD12o2Q==\n -----END CERTIFICATE-----\n """ |
| REDIRECT_SSL_TLS_SNI | "stg.ibf-thiox.de"
|
| REDIRECT_HTTPS | "on"
|
| REDIRECT_HTTP_AUTHORIZATION | "" |
| REDIRECT_UNIQUE_ID | "apn-oEonwELWChaeFz2TugAAACA"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1788477088.93
|
| REQUEST_TIME | 1788477088
|
| argv | [] |
| argc | 0
|
| Key | Value |
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
| USER | "w018d6e6"
|
| HOME | "/www/htdocs/w018d6e6"
|
| SCRIPT_NAME | "/index.php"
|
| REQUEST_URI | "/aktuelles/page/2/"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/aktuelles/page/2/"
|
| REMOTE_PORT | "40018"
|
| SCRIPT_FILENAME | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/index.php"
|
| SERVER_ADMIN | "webmaster@stg.ibf-thiox.de"
|
| CONTEXT_DOCUMENT_ROOT | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/"
|
| CONTEXT_PREFIX | "" |
| REQUEST_SCHEME | "https"
|
| DOCUMENT_ROOT | "/www/htdocs/w018d6e6/stg.ibf-thiox.de/"
|
| REMOTE_ADDR | "216.73.216.141"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "85.13.152.87"
|
| SERVER_NAME | "stg.ibf-thiox.de"
|
| SERVER_SOFTWARE | "Apache"
|
| SERVER_SIGNATURE | "" |
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_X_REAL_IP | "216.73.216.141"
|
| HTTP_HOST | "stg.ibf-thiox.de"
|
| SSL_CLIENT_CERT | "" |
| SSL_SERVER_CERT | """ -----BEGIN CERTIFICATE-----\n MIIDpTCCAyqgAwIBAgISBV+LDy70ij4fVZv+9eAJ4/JUMAoGCCqGSM49BAMDMDMx\n CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNZ\n RTIwHhcNMjYwNzA1MjIwMDIzWhcNMjYxMDAzMjIwMDIyWjAbMRkwFwYDVQQDExBz\n dGcuaWJmLXRoaW94LmRlMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjRSktSGS\n B+ILrnklL0gl6XOWV2Fze3E1TKRlYZijFOQ7Y3bEhjWZloOcCEoZQyRSmfQ5NLMU\n FNxKMhW69rtVv6OCAjQwggIwMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggr\n BgEFBQcDATAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRjTJDkMVwBmjpOrZ9DBHQD\n NPPiPjAfBgNVHSMEGDAWgBS5WfKOzyLwhtM3SP92FBi6gthVhzAzBggrBgEFBQcB\n AQQnMCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly95ZTIuaS5sZW5jci5vcmcvMDEGA1Ud\n EQQqMCiCEHN0Zy5pYmYtdGhpb3guZGWCFHd3dy5zdGcuaWJmLXRoaW94LmRlMBMG\n A1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUwI6AhoB+GHWh0dHA6Ly95ZTIu\n Yy5sZW5jci5vcmcvODUuY3JsMIIBDAYKKwYBBAHWeQIEAgSB/QSB+gD4AHYAlE5D\n h/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGfNIGMBAAABAMARzBFAiBa\n kWzbB3mrhrkrxEj4k0wTWrTocZDH0jNLG4bKjWa+mgIhANW7qtiK4MElEE/w2mjS\n x++EoAT589rCpJQpmRc3nfnXAH4AJuNkblhpISO8ND9HJDWbN5LNJFqI2BXTkzP9\n mRirRyMAAAGfNIGJ8gAIAAAFACXWAjkEAwBHMEUCIQDoUZmHXs+eZe8KwCryLdqy\n I4kY5bx2zwRaiqNeI2MYAQIgB4IzPFLPLEfCYkLEPVKfxoU7xmT82sTb1F4mQfTy\n W1cwCgYIKoZIzj0EAwMDaQAwZgIxAIWOlfAlcAw/ocJdlAsKrzzBRye5U9YSbMdZ\n rn7kPtwSIE9bPzcKthyav37hrdRZmAIxAM0MPKfqShlQGlD7CNHDAGnf9gBp39BF\n D2Tjf4WRdCdMPdE/a6+0+/P93ksBD12o2Q==\n -----END CERTIFICATE-----\n """ |
| SSL_TLS_SNI | "stg.ibf-thiox.de"
|
| HTTPS | "on"
|
| HTTP_AUTHORIZATION | "" |
| UNIQUE_ID | "apn-oEonwELWChaeFz2TugAAACA"
|
| REDIRECT_STATUS | "200"
|
| REDIRECT_SSL_CLIENT_CERT | "" |
| REDIRECT_SSL_SERVER_CERT | """ -----BEGIN CERTIFICATE-----\n MIIDpTCCAyqgAwIBAgISBV+LDy70ij4fVZv+9eAJ4/JUMAoGCCqGSM49BAMDMDMx\n CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNZ\n RTIwHhcNMjYwNzA1MjIwMDIzWhcNMjYxMDAzMjIwMDIyWjAbMRkwFwYDVQQDExBz\n dGcuaWJmLXRoaW94LmRlMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjRSktSGS\n B+ILrnklL0gl6XOWV2Fze3E1TKRlYZijFOQ7Y3bEhjWZloOcCEoZQyRSmfQ5NLMU\n FNxKMhW69rtVv6OCAjQwggIwMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggr\n BgEFBQcDATAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRjTJDkMVwBmjpOrZ9DBHQD\n NPPiPjAfBgNVHSMEGDAWgBS5WfKOzyLwhtM3SP92FBi6gthVhzAzBggrBgEFBQcB\n AQQnMCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly95ZTIuaS5sZW5jci5vcmcvMDEGA1Ud\n EQQqMCiCEHN0Zy5pYmYtdGhpb3guZGWCFHd3dy5zdGcuaWJmLXRoaW94LmRlMBMG\n A1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUwI6AhoB+GHWh0dHA6Ly95ZTIu\n Yy5sZW5jci5vcmcvODUuY3JsMIIBDAYKKwYBBAHWeQIEAgSB/QSB+gD4AHYAlE5D\n h/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGfNIGMBAAABAMARzBFAiBa\n kWzbB3mrhrkrxEj4k0wTWrTocZDH0jNLG4bKjWa+mgIhANW7qtiK4MElEE/w2mjS\n x++EoAT589rCpJQpmRc3nfnXAH4AJuNkblhpISO8ND9HJDWbN5LNJFqI2BXTkzP9\n mRirRyMAAAGfNIGJ8gAIAAAFACXWAjkEAwBHMEUCIQDoUZmHXs+eZe8KwCryLdqy\n I4kY5bx2zwRaiqNeI2MYAQIgB4IzPFLPLEfCYkLEPVKfxoU7xmT82sTb1F4mQfTy\n W1cwCgYIKoZIzj0EAwMDaQAwZgIxAIWOlfAlcAw/ocJdlAsKrzzBRye5U9YSbMdZ\n rn7kPtwSIE9bPzcKthyav37hrdRZmAIxAM0MPKfqShlQGlD7CNHDAGnf9gBp39BF\n D2Tjf4WRdCdMPdE/a6+0+/P93ksBD12o2Q==\n -----END CERTIFICATE-----\n """ |
| REDIRECT_SSL_TLS_SNI | "stg.ibf-thiox.de"
|
| REDIRECT_HTTPS | "on"
|
| REDIRECT_HTTP_AUTHORIZATION | "" |
| REDIRECT_UNIQUE_ID | "apn-oEonwELWChaeFz2TugAAACA"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1788477088.93
|
| REQUEST_TIME | 1788477088
|
| argv | [] |
| argc | 0
|
0. Whoops\Handler\PrettyPageHandler