Whoops \ Exception \ ErrorException (E_NOTICE)
Trying to access array offset on value of type null Whoops\Exception\ErrorException thrown with message "Trying to access array offset on value of type null" Stacktrace: #15 Whoops\Exception\ErrorException in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/Controllers/Partials/Hero.php:34 #14 Whoops\Run:handleError in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/Controllers/Partials/Hero.php:34 #13 App\Controllers\App:hero in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/src/Controller.php:211 #12 Sober\Controller\Controller:__setDataFromMethods in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/src/Controller.php:94 #11 Sober\Controller\Controller:__setData in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/controller.php:69 #10 Sober\Controller\{closure} in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php:287 #9 WP_Hook:apply_filters in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php:206 #8 apply_filters in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/filters.php:61 #7 App\{closure} in [internal]:0 #6 array_reduce in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/illuminate/support/Collection.php:1313 #5 Illuminate\Support\Collection:reduce in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/filters.php:62 #4 App\{closure} in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php:287 #3 WP_Hook:apply_filters in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php:206 #2 apply_filters in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/template-loader.php:104 #1 require_once in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-blog-header.php:19 #0 require in /home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/index.php:17
Stack frames (16)
15
Whoops\Exception\ErrorException
/app/Controllers/Partials/Hero.php34
14
Whoops\Run handleError
/app/Controllers/Partials/Hero.php34
13
App\Controllers\App hero
/vendor/soberwp/controller/src/Controller.php211
12
Sober\Controller\Controller __setDataFromMethods
/vendor/soberwp/controller/src/Controller.php94
11
Sober\Controller\Controller __setData
/vendor/soberwp/controller/controller.php69
10
Sober\Controller\{closure}
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php287
9
WP_Hook apply_filters
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php206
8
apply_filters
/app/filters.php61
7
App\{closure}
[internal]0
6
array_reduce
/vendor/illuminate/support/Collection.php1313
5
Illuminate\Support\Collection reduce
/app/filters.php62
4
App\{closure}
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php287
3
WP_Hook apply_filters
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php206
2
apply_filters
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/template-loader.php104
1
require_once
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-blog-header.php19
0
require
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/index.php17
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/Controllers/Partials/Hero.php
    public static $hero_image;
 
    public function __construct()
    {
        self::$id = (is_home() ? get_option('page_for_posts') : get_the_ID());
        self::$hero_type = get_field('hero_type');
    }
 
    /**
     * Return hero content for the current page
     *
     * @return object
     */
    public function hero()
    {
        $hero = get_field('hero', self::$id);
        return objectify([
            'id'         => "hero",
            'label'      => $hero['hero_label'] ?? '',
            'heading'    => $hero['hero_heading'] ?: App::title(),
            'content'    => $hero['hero_content'] ?? '',
            'link'       => $hero['hero_link'] ?? '',
            'image'      => $hero['hero_image'] && !empty($hero['hero_image'])
              ? $hero['hero_image']
              : get_field('default_hero_image', 'option'),
            'logo_label' => $hero['logo_label'] ?? '',
            'logos'      => $hero['logos'] ?? [],
            'classes'     => Html::processClasses([
                'hero',
                is_front_page() ? 'hero--front' : 'hero--not-front',
            ]),
        ]);
    }
}
 
Arguments
  1. "Trying to access array offset on value of type null"
    
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/Controllers/Partials/Hero.php
    public static $hero_image;
 
    public function __construct()
    {
        self::$id = (is_home() ? get_option('page_for_posts') : get_the_ID());
        self::$hero_type = get_field('hero_type');
    }
 
    /**
     * Return hero content for the current page
     *
     * @return object
     */
    public function hero()
    {
        $hero = get_field('hero', self::$id);
        return objectify([
            'id'         => "hero",
            'label'      => $hero['hero_label'] ?? '',
            'heading'    => $hero['hero_heading'] ?: App::title(),
            'content'    => $hero['hero_content'] ?? '',
            'link'       => $hero['hero_link'] ?? '',
            'image'      => $hero['hero_image'] && !empty($hero['hero_image'])
              ? $hero['hero_image']
              : get_field('default_hero_image', 'option'),
            'logo_label' => $hero['logo_label'] ?? '',
            'logos'      => $hero['logos'] ?? [],
            'classes'     => Html::processClasses([
                'hero',
                is_front_page() ? 'hero--front' : 'hero--not-front',
            ]),
        ]);
    }
}
 
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/src/Controller.php
        });
 
        // Get all public static methods from class
        $this->staticMethods = $this->class->getMethods(\ReflectionMethod::IS_STATIC);
 
        // Remove $this->staticMethods from $this->methods using array_diff
        $this->dataMethods = array_diff($this->methods, $this->staticMethods);
 
        // Filter the remaining data methods
        $this->dataMethods = array_filter($this->dataMethods, function ($method) {
            return $method = $method->name;
        });
 
        // For each method convert method name to snake case and add to data[key => value]
        foreach ($this->dataMethods as $method) {
            // Convert method name to snake case
            $var = Utils::convertToSnakeCase($method->name);
 
            // Add var method name to data[]
            $this->data[$var] = $this->{$method->name}();
        }
    }
 
    /**
     * Set Blade Data
     *
     * Update $this->data with __blade
     */
    final private function __setBladeData()
    {
        // Get the data
        $debuggerData = $this->data;
 
        // Loop through each data method
        foreach ($this->dataMethods as $dataMethod) {
            // Convert the key to snake case to find in $debuggerData
            $key = Utils::convertToSnakeCase($dataMethod->name);
 
            // Save the returned value from the above key
            $returned = $debuggerData[$key];
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/src/Controller.php
     * Set Controller Data
     *
     * Set the Controller raw data for this Controller
     * @return $this
     */
    final public function __setData($incomingData)
    {
        $this->incomingData = $incomingData;
        
        // Set the data from the WordPress post if singular to $this->data
        $this->__setDataFromPost();
 
        // Set the data from Advanced Custom Fields to $this->data
        $this->__setDataFromModuleAcf();
 
        // Set incoming filter data from Sage to App before Debugger
        $this->__setDataFromFilter();
 
        // Set the public methods from the class to $this->methods
        $this->__setDataFromMethods();
 
        // Set debugger data first to use only the raw data from the Controller
        $this->__setBladeData();
 
        // Set app data to $this->data['__app'] or merge with current data
        $this->__setAppData();
 
        // Set tree data to $this->data['__tree'] or merge with current data
        $this->__setTreeData();
    }
 
    /**
     * Set Data From Post
     *
     * Set the WordPress post
     */
    final private function __setDataFromPost()
    {
        // Only set data from $post to App class
        if ($this->template !== 'app') {
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/soberwp/controller/controller.php
 
        // Set the params required for template param
        $controller->__setParams();
 
        // Determine template location to expose data
        $location = "sage/template/{$controller->__getTemplateParam()}-data/data";
 
        // Pass data to filter
        add_filter($location, function ($data) use ($container, $class) {
            // Recreate the class so that $post is included
            $controller = $container->make($class);
 
            // Params
            $controller->__setParams();
 
            // Lifecycle
            $controller->__before();
 
            // Data
            $controller->__setData($data);
 
            // Lifecycle
            $controller->__after();
 
            // Return
            return $controller->__getData();
        }, 10, 2);
    }
}
 
/**
 * Blade
 */
function blade()
{
    // Get Sage function
    $sage = sage();
 
    // Return if function does not exist
    if (!$sage) {
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php
 
        $nesting_level = $this->nesting_level++;
 
        $this->iterations[ $nesting_level ] = array_keys( $this->callbacks );
        $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, (int) $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.
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php
    if ( isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $tag;
        _wp_call_all_hook( $args );
    }
 
    if ( ! isset( $wp_filter[ $tag ] ) ) {
        if ( isset( $wp_filter['all'] ) ) {
            array_pop( $wp_current_filter );
        }
        return $value;
    }
 
    if ( ! isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $tag;
    }
 
    // Don't pass the tag name to WP_Hook.
    array_shift( $args );
 
    $filtered = $wp_filter[ $tag ]->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 `$tag` are supplied using an array.
 *
 * @global array $wp_filter         Stores all of the filters and actions.
 * @global array $wp_current_filter Stores the list of current filters with the current one last.
 *
 * @param string $tag  The name of the filter hook.
 * @param array  $args The arguments supplied to the functions hooked to $tag.
 * @return mixed The filtered value after all hooked functions are applied to it.
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/filters.php
    'frontpage', 'page', 'paged', 'search', 'single', 'singular', 'attachment', 'embed'
])->map(function ($type) {
    add_filter("{$type}_template_hierarchy", __NAMESPACE__.'\\filter_templates');
});
 
/**
 * Render page using Blade
 */
add_filter('template_include', function ($template) {
    collect(['get_header', 'wp_head'])->each(function ($tag) {
        ob_start();
        do_action($tag);
        $output = ob_get_clean();
        remove_all_actions($tag);
        add_action($tag, function () use ($output) {
            echo $output;
        });
    });
    $data = collect(get_body_class())->reduce(function ($data, $class) use ($template) {
        return apply_filters("sage/template/{$class}/data", $data, $template);
    }, []);
    if ($template) {
        echo template($template, $data);
        return get_stylesheet_directory().'/index.php';
    }
    return $template;
}, PHP_INT_MAX);
 
/**
 * Render comments.blade.php
 */
add_filter('comments_template', function ($comments_template) {
    $comments_template = str_replace(
        [get_stylesheet_directory(), get_template_directory()],
        '',
        $comments_template
    );
 
    $data = collect(get_body_class())->reduce(function ($data, $class) use ($comments_template) {
        return apply_filters("sage/template/{$class}/data", $data, $comments_template);
[internal]
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/vendor/illuminate/support/Collection.php
     */
    public function random($number = null)
    {
        if (is_null($number)) {
            return Arr::random($this->items);
        }
 
        return new static(Arr::random($this->items, $number));
    }
 
    /**
     * Reduce the collection to a single value.
     *
     * @param  callable  $callback
     * @param  mixed  $initial
     * @return mixed
     */
    public function reduce(callable $callback, $initial = null)
    {
        return array_reduce($this->items, $callback, $initial);
    }
 
    /**
     * Create a collection of all elements that do not pass a given truth test.
     *
     * @param  callable|mixed  $callback
     * @return static
     */
    public function reject($callback)
    {
        if ($this->useAsCallable($callback)) {
            return $this->filter(function ($value, $key) use ($callback) {
                return ! $callback($value, $key);
            });
        }
 
        return $this->filter(function ($item) use ($callback) {
            return $item != $callback;
        });
    }
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-content/themes/startupslam/app/filters.php
])->map(function ($type) {
    add_filter("{$type}_template_hierarchy", __NAMESPACE__.'\\filter_templates');
});
 
/**
 * Render page using Blade
 */
add_filter('template_include', function ($template) {
    collect(['get_header', 'wp_head'])->each(function ($tag) {
        ob_start();
        do_action($tag);
        $output = ob_get_clean();
        remove_all_actions($tag);
        add_action($tag, function () use ($output) {
            echo $output;
        });
    });
    $data = collect(get_body_class())->reduce(function ($data, $class) use ($template) {
        return apply_filters("sage/template/{$class}/data", $data, $template);
    }, []);
    if ($template) {
        echo template($template, $data);
        return get_stylesheet_directory().'/index.php';
    }
    return $template;
}, PHP_INT_MAX);
 
/**
 * Render comments.blade.php
 */
add_filter('comments_template', function ($comments_template) {
    $comments_template = str_replace(
        [get_stylesheet_directory(), get_template_directory()],
        '',
        $comments_template
    );
 
    $data = collect(get_body_class())->reduce(function ($data, $class) use ($comments_template) {
        return apply_filters("sage/template/{$class}/data", $data, $comments_template);
    }, []);
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/class-wp-hook.php
 
        $nesting_level = $this->nesting_level++;
 
        $this->iterations[ $nesting_level ] = array_keys( $this->callbacks );
        $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, (int) $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.
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/plugin.php
    if ( isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $tag;
        _wp_call_all_hook( $args );
    }
 
    if ( ! isset( $wp_filter[ $tag ] ) ) {
        if ( isset( $wp_filter['all'] ) ) {
            array_pop( $wp_current_filter );
        }
        return $value;
    }
 
    if ( ! isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $tag;
    }
 
    // Don't pass the tag name to WP_Hook.
    array_shift( $args );
 
    $filtered = $wp_filter[ $tag ]->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 `$tag` are supplied using an array.
 *
 * @global array $wp_filter         Stores all of the filters and actions.
 * @global array $wp_current_filter Stores the list of current filters with the current one last.
 *
 * @param string $tag  The name of the filter hook.
 * @param array  $args The arguments supplied to the functions hooked to $tag.
 * @return mixed The filtered value after all hooked functions are applied to it.
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/template-loader.php
            if ( 'is_attachment' === $tag ) {
                remove_filter( 'the_content', 'prepend_attachment' );
            }
 
            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;
}
 
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/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
  1. "/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-includes/template-loader.php"
    
/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/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
  1. "/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/wp-blog-header.php"
    

Environment & details:

Key Value
query_vars
array:4 [
  "page" => ""
  "speaker" => "evan-savage"
  "post_type" => "speaker"
  "name" => "evan-savage"
]
query_string
"speaker=evan-savage&post_type=speaker&name=evan-savage"
request
"speaker/evan-savage"
matched_rule
"speaker/(.+?)(?:/([0-9]+))?/?$"
matched_query
"speaker=evan-savage&page="
did_permalink
true
Key Value
query
array:4 [
  "page" => ""
  "speaker" => "evan-savage"
  "post_type" => "speaker"
  "name" => "evan-savage"
]
query_vars
array:12 [
  "speaker" => "evan-savage"
  "post_type" => "speaker"
  "name" => "evan-savage"
  "pagename" => "evan-savage"
  "orderby" => "menu_order"
  "order" => "ASC"
  "cache_results" => true
  "update_post_term_cache" => true
  "lazy_load_term_meta" => true
  "update_post_meta_cache" => true
  "posts_per_page" => 10
  "comments_per_page" => "50"
]
meta_query
WP_Meta_Query {#1795}
queried_object
WP_Post {#1800}
queried_object_id
838
request
"SELECT   wp_posts.* FROM wp_posts  WHERE 1=1  AND (wp_posts.ID = '838') AND wp_posts.post_type = 'speaker'  ORDER BY wp_posts.menu_order ASC "
post_count
1
current_post
-1
current_comment
-1
found_posts
1
is_single
true
is_singular
true
Key Value
ID
838
post_author
"1"
post_date
"2020-09-16 12:38:43"
post_date_gmt
"2020-09-16 12:38:43"
post_content
""
post_title
"Evan Savage"
post_excerpt
""
post_status
"publish"
comment_status
"closed"
ping_status
"closed"
post_password
""
post_name
"evan-savage"
to_ping
""
pinged
""
post_modified
"2021-01-12 19:06:05"
post_modified_gmt
"2021-01-12 19:06:05"
post_content_filtered
""
post_parent
0
guid
"https://startupslam.io/?post_type=speaker&#038;p=838"
menu_order
43
post_type
"speaker"
post_mime_type
""
comment_count
"0"
filter
"raw"
empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache/2.4.59 (Debian)"
REQUEST_URI
"/speaker/evan-savage/"
USER
"vqbgxdzrmt"
HOME
"/home/306802.cloudwaysapps.com/vqbgxdzrmt"
SCRIPT_NAME
"/index.php"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/speaker/evan-savage/"
REMOTE_PORT
"25880"
SCRIPT_FILENAME
"/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/index.php"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"http"
DOCUMENT_ROOT
"/home/306802.cloudwaysapps.com/vqbgxdzrmt/public_html/"
REMOTE_ADDR
"18.97.9.172"
SERVER_PORT
"80"
SERVER_ADDR
"127.0.0.1"
SERVER_NAME
"startupslam.io"
SERVER_SIGNATURE
"<address>Apache/2.4.59 (Debian) Server at startupslam.io Port 80</address>\n"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
HTTP_X_VARNISH
"235358"
HTTP_HOST
"startupslam.io"
HTTP_X_FORWARDED_FOR
"18.97.9.172"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_VISITOR
"{\"scheme\":\"https\"}"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_CF_CONNECTING_IP
"18.97.9.172"
HTTP_CF_RAY
"90fa25b8083f5b47-YYZ"
HTTP_X_VERSION
"542"
HTTP_X_APP_USER
"vqbgxdzrmt"
HTTP_X_APPLICATION
"wordpress"
HTTP_X_FORWARDED_HOST
"startupslam.io"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_REAL_IP
"18.97.9.172"
BREEZE_BROWSER_CACHE_ON
"1"
BREEZE_GZIP_ON
"1"
IMUNIFY360_WEAKPASS_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
IMUNIFY360_COMPROMISED_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
HTTP_AUTHORIZATION
""
HTTPS
"on"
cw_allowed_ip
"0"
UNIQUE_ID
"Z6mg-cadr6pYzn_RR-lyWAAABcQ"
REDIRECT_STATUS
"200"
REDIRECT_BREEZE_BROWSER_CACHE_ON
"1"
REDIRECT_BREEZE_GZIP_ON
"1"
REDIRECT_IMUNIFY360_WEAKPASS_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
REDIRECT_IMUNIFY360_COMPROMISED_REDIRECT_URL
"appsecurity.cloudwaysapps.com/"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_HTTPS
"on"
REDIRECT_cw_allowed_ip
"0"
REDIRECT_UNIQUE_ID
"Z6mg-cadr6pYzn_RR-lyWAAABcQ"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1739170041.6542
REQUEST_TIME
1739170041
empty
0. Whoops\Handler\PrettyPageHandler
1. Rarst\wps\Admin_Ajax_Handler
2. Rarst\wps\Rest_Api_Handler