Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the acf domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-includes/functions.php on line 6121
lenardo – Verbrugge groep Whoops! There was an error.
InvalidArgumentException
Unrecognized extension in file: /home/blackdev/domains/verbrugge.blackdesk.dev/public_html. InvalidArgumentException thrown with message "Unrecognized extension in file: /home/blackdev/domains/verbrugge.blackdesk.dev/public_html." Stacktrace: #7 InvalidArgumentException in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php:305 #6 Illuminate\View\Factory:getEngineFromPath in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php:274 #5 Illuminate\View\Factory:viewInstance in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php:122 #4 Illuminate\View\Factory:file in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/roots/acorn/src/Roots/helpers.php:78 #3 Roots\view in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/index.php:18 #2 include in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-includes/template-loader.php:106 #1 require_once in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-blog-header.php:19 #0 require in /home/blackdev/domains/verbrugge.blackdesk.dev/public_html/index.php:17
7
InvalidArgumentException
/vendor/illuminate/view/Factory.php305
6
Illuminate\View\Factory getEngineFromPath
/vendor/illuminate/view/Factory.php274
5
Illuminate\View\Factory viewInstance
/vendor/illuminate/view/Factory.php122
4
Illuminate\View\Factory file
/vendor/roots/acorn/src/Roots/helpers.php78
3
Roots\view
/index.php18
2
include
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-includes/template-loader.php106
1
require_once
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-blog-header.php19
0
require
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/index.php17
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php
            $this->finder->find($view);
        } catch (InvalidArgumentException $e) {
            return false;
        }
 
        return true;
    }
 
    /**
     * Get the appropriate view engine for the given path.
     *
     * @param  string  $path
     * @return \Illuminate\Contracts\View\Engine
     *
     * @throws \InvalidArgumentException
     */
    public function getEngineFromPath($path)
    {
        if (! $extension = $this->getExtension($path)) {
            throw new InvalidArgumentException("Unrecognized extension in file: {$path}.");
        }
 
        $engine = $this->extensions[$extension];
 
        return $this->engines->resolve($engine);
    }
 
    /**
     * Get the extension used by the view file.
     *
     * @param  string  $path
     * @return string|null
     */
    protected function getExtension($path)
    {
        $extensions = array_keys($this->extensions);
 
        return Arr::first($extensions, function ($value) use ($path) {
            return Str::endsWith($path, '.'.$value);
        });
Arguments
  1. "Unrecognized extension in file: /home/blackdev/domains/verbrugge.blackdesk.dev/public_html."
    
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php
     *
     * @param  mixed  $data
     * @return array
     */
    protected function parseData($data)
    {
        return $data instanceof Arrayable ? $data->toArray() : $data;
    }
 
    /**
     * Create a new view instance from the given arguments.
     *
     * @param  string  $view
     * @param  string  $path
     * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
     * @return \Illuminate\Contracts\View\View
     */
    protected function viewInstance($view, $path, $data)
    {
        return new View($this, $this->getEngineFromPath($path), $view, $path, $data);
    }
 
    /**
     * Determine if a given view exists.
     *
     * @param  string  $view
     * @return bool
     */
    public function exists($view)
    {
        try {
            $this->finder->find($view);
        } catch (InvalidArgumentException $e) {
            return false;
        }
 
        return true;
    }
 
    /**
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/illuminate/view/Factory.php
        $this->finder = $finder;
        $this->events = $events;
        $this->engines = $engines;
 
        $this->share('__env', $this);
    }
 
    /**
     * Get the evaluated view contents for the given view.
     *
     * @param  string  $path
     * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
     * @param  array  $mergeData
     * @return \Illuminate\Contracts\View\View
     */
    public function file($path, $data = [], $mergeData = [])
    {
        $data = array_merge($mergeData, $this->parseData($data));
 
        return tap($this->viewInstance($path, $path, $data), function ($view) {
            $this->callCreator($view);
        });
    }
 
    /**
     * Get the evaluated view contents for the given view.
     *
     * @param  string  $view
     * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
     * @param  array  $mergeData
     * @return \Illuminate\Contracts\View\View
     */
    public function make($view, $data = [], $mergeData = [])
    {
        $path = $this->finder->find(
            $view = $this->normalizeName($view)
        );
 
        // Next, we will create the view instance and call the view creator for the view
        // which can set any data, etc. Then we will return the view instance back to
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/vendor/roots/acorn/src/Roots/helpers.php
 *
 * @param  string|null  $view
 * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
 * @param  array  $mergeData
 * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory
 *
 * @copyright Taylor Otwell
 * @link https://github.com/laravel/framework/blob/8.x/src/Illuminate/Foundation/helpers.php
 */
function view($view = null, $data = [], $mergeData = [])
{
    $factory = \app(ViewFactory::class);
 
    if (func_num_args() === 0) {
        return $factory;
    }
 
    return $factory->exists($view)
        ? $factory->make($view, $data, $mergeData)
        : $factory->file($view, $data, $mergeData);
}
 
 
/**
 * @deprecated
 */
function app(...$args)
{
    return \app(...$args);
}
 
/**
 * @deprecated
 */
function app_path(...$args)
{
    return \app_path(...$args);
}
 
/**
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/index.php
<!doctype html>
<html <?php language_attributes(); ?>>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="theme-color" content="#008e5a">
    <?php wp_head(); ?>
    <?php if(function_exists('get_field') && $head_script = get_field('head_script', 'options')) : ?>
        <?= $head_script ?>
    <?php endif; ?>
  </head>
 
  <body <?php body_class(); ?>>
    <?php wp_body_open(); ?>
    <?php do_action('get_header'); ?>
 
    <div id="app">
      <?php echo \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
    </div>
 
    <?php do_action('get_footer'); ?>
    <?php wp_footer(); ?>
    <?php if(function_exists('get_field') && $body_script = get_field('body_script', 'options')) : ?>
        <?= $body_script ?>
    <?php endif; ?>
  </body>
</html>
 
/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/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
  1. "/home/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-content/themes/verbrugge/index.php"
    
/home/blackdev/domains/verbrugge.blackdesk.dev/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/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-includes/template-loader.php"
    
/home/blackdev/domains/verbrugge.blackdesk.dev/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/blackdev/domains/verbrugge.blackdesk.dev/public_html/wp-blog-header.php"
    

Environment & details:

Key Value
query_vars
array:1 [
  "author_name" => "lenardo"
]
query_string
"author_name=lenardo"
request
"author/lenardo"
matched_rule
"author/([^/]+)/?$"
matched_query
"author_name=lenardo"
did_permalink
true
Key Value
query
array:1 [
  "author_name" => "lenardo"
]
query_vars
array:65 [
  "author_name" => "lenardo"
  "error" => ""
  "m" => ""
  "p" => 0
  "post_parent" => ""
  "subpost" => ""
  "subpost_id" => ""
  "attachment" => ""
  "attachment_id" => 0
  "name" => ""
  "pagename" => ""
  "page_id" => 0
  "second" => ""
  "minute" => ""
  "hour" => ""
  "day" => 0
  "monthnum" => 0
  "year" => 0
  "w" => 0
  "category_name" => ""
  "tag" => ""
  "cat" => ""
  "tag_id" => ""
  "author" => 1
  "feed" => ""
  "tb" => ""
  "paged" => 0
  "meta_key" => ""
  "meta_value" => ""
  "preview" => ""
  "s" => ""
  "sentence" => ""
  "title" => ""
  "fields" => "all"
  "menu_order" => ""
  "embed" => ""
  "category__in" => []
  "category__not_in" => []
  "category__and" => []
  "post__in" => []
  "post__not_in" => []
  "post_name__in" => []
  "tag__in" => []
  "tag__not_in" => []
  "tag__and" => []
  "tag_slug__in" => []
  "tag_slug__and" => []
  "post_parent__in" => []
  "post_parent__not_in" => []
  "author__in" => []
  "author__not_in" => []
  "search_columns" => []
  "ignore_sticky_posts" => false
  "suppress_filters" => false
  "cache_results" => true
  "update_post_term_cache" => true
  "update_menu_item_cache" => false
  "lazy_load_term_meta" => true
  "update_post_meta_cache" => true
  "post_type" => ""
  "posts_per_page" => 10
  "nopaging" => false
  "comments_per_page" => "50"
  "no_found_rows" => false
  "order" => "DESC"
]
tax_query
WP_Tax_Query {#3590}
meta_query
WP_Meta_Query {#2333}
queried_object
WP_User {#2284}
queried_object_id
1
request
"""
SELECT SQL_CALC_FOUND_ROWS  wp_posts.ID\n
\t\t\t\t\t FROM wp_posts \n
\t\t\t\t\t WHERE 1=1  AND (wp_posts.post_author = 1) AND ((wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'acf-disabled')))\n
\t\t\t\t\t \n
\t\t\t\t\t ORDER BY wp_posts.post_date DESC\n
\t\t\t\t\t LIMIT 0, 10
"""
post_count
1
current_post
-1
before_loop
true
current_comment
-1
found_posts
1
max_num_pages
1
is_archive
true
is_author
true
Key Value
ID
1
post_author
"1"
post_date
"2021-11-25 08:36:33"
post_date_gmt
"2021-11-25 08:36:33"
post_content
"""
<!-- wp:paragraph -->\n
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n
<!-- /wp:paragraph -->
"""
post_title
"Hello world!"
post_excerpt
""
post_status
"publish"
comment_status
"open"
ping_status
"open"
post_password
""
post_name
"hello-world"
to_ping
""
pinged
""
post_modified
"2021-11-25 08:36:33"
post_modified_gmt
"2021-11-25 08:36:33"
post_content_filtered
""
post_parent
0
guid
"https://verbrugge.blackdesk.dev/?p=1"
menu_order
0
post_type
"post"
post_mime_type
""
comment_count
"0"
filter
"raw"
empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache/2"
REQUEST_URI
"/author/lenardo/"
USER
"blackdev"
HOME
"/home/blackdev"
SCRIPT_NAME
"/index.php"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.0"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/author/lenardo/"
REMOTE_PORT
"37676"
SCRIPT_FILENAME
"/home/blackdev/domains/verbrugge.blackdesk.dev/private_html/index.php"
SERVER_ADMIN
"webmaster@verbrugge.blackdesk.dev"
CONTEXT_DOCUMENT_ROOT
"/home/blackdev/domains/verbrugge.blackdesk.dev/private_html"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/home/blackdev/domains/verbrugge.blackdesk.dev/private_html"
REMOTE_ADDR
"18.97.9.171"
SERVER_PORT
"443"
SERVER_ADDR
"185.223.163.48"
SERVER_NAME
"verbrugge.blackdesk.dev"
SERVER_SIGNATURE
""
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_IF_MODIFIED_SINCE
"Wed, 22 Jan 2025 06:38:45 GMT"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_CONNECTION
"close"
HTTP_X_FORWARDED_FOR
"18.97.9.171"
HTTP_HOST
"verbrugge.blackdesk.dev"
HTTP_X_ACCEL_INTERNAL
"/nginx_static_files"
proxy-nokeepalive
"1"
HTTPS
"on"
HTTP_AUTHORIZATION
""
SCRIPT_URI
"https://verbrugge.blackdesk.dev/author/lenardo/"
SCRIPT_URL
"/author/lenardo/"
UNIQUE_ID
"aCmkGFie-YbHwJEPAaCVJwAAAH8"
REDIRECT_STATUS
"200"
REDIRECT_HTTPS
"on"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_SCRIPT_URI
"https://verbrugge.blackdesk.dev/author/lenardo/"
REDIRECT_SCRIPT_URL
"/author/lenardo/"
REDIRECT_UNIQUE_ID
"aCmkGFie-YbHwJEPAaCVJwAAAH8"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1747559448.7127
REQUEST_TIME
1747559448
empty
0. Whoops\Handler\PrettyPageHandler