La Maison Palmier
- Abidjan, Ivoorkust
- Oracle Hospitality OPERA PMS
- Oracle MICROS Simphony POS
- Oracle Hospitality Materials Control
Whoops \ Exception \ ErrorException
(E_WARNING)
12
Whoops\Exception\ErrorException
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php44
11
Whoops\Run
handleError
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php44
10
require
/nas/content/live/vanhessen/wp-includes/template.php792
9
load_template
/nas/content/live/vanhessen/wp-includes/template.php725
8
locate_template
/nas/content/live/vanhessen/wp-includes/general-template.php206
7
get_template_part
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/flexible-sections.php11
6
require
/nas/content/live/vanhessen/wp-includes/template.php792
5
load_template
/nas/content/live/vanhessen/wp-includes/template.php725
4
locate_template
/nas/content/live/vanhessen/wp-includes/general-template.php206
3
get_template_part
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/page.php4
2
include
/nas/content/live/vanhessen/wp-includes/template-loader.php106
1
require_once
/nas/content/live/vanhessen/wp-blog-header.php19
0
require
/nas/content/live/vanhessen/index.php17
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php
<?php endif; ?>
<?php if ( $colorscheme == 'light' ) : ?>
<div class="bluegradient"></div>
<?php endif; ?>
<?php if ( $wysiwyg_editor_sh ) : ?>
<div class="saffourty safpadding">
<div class="saftd400">
<div class="saftd1">
<div class="saftd2">
<div class="saftextspan <?php echo $colorscheme == 'light' ? 'whitetext' : ''; ?>">
<?php echo $wysiwyg_editor_sh; ?>
</div>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if ( $image_upload == '1' ) : ?>
<div class="safsixty"
style=" background-image:url('<?php echo $image['sizes']['full_width_image']; ?>'); background-repeat:no-repeat; background-size:contain; background-position:bottom center;"></div>
<?php endif; ?>
</div>
Arguments
"Trying to access array offset on value of type bool"
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php
<?php endif; ?>
<?php if ( $colorscheme == 'light' ) : ?>
<div class="bluegradient"></div>
<?php endif; ?>
<?php if ( $wysiwyg_editor_sh ) : ?>
<div class="saffourty safpadding">
<div class="saftd400">
<div class="saftd1">
<div class="saftd2">
<div class="saftextspan <?php echo $colorscheme == 'light' ? 'whitetext' : ''; ?>">
<?php echo $wysiwyg_editor_sh; ?>
</div>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if ( $image_upload == '1' ) : ?>
<div class="safsixty"
style=" background-image:url('<?php echo $image['sizes']['full_width_image']; ?>'); background-repeat:no-repeat; background-size:contain; background-position:bottom center;"></div>
<?php endif; ?>
</div>
Arguments
2
"Trying to access array offset on value of type bool"
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php"
44
/nas/content/live/vanhessen/wp-includes/template.php
if ( isset( $s ) ) {
$s = esc_attr( $s );
}
/**
* Fires before a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_before_load_template', $_template_file, $load_once, $args );
if ( $load_once ) {
require_once $_template_file;
} else {
require $_template_file;
}
/**
* Fires after a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_after_load_template', $_template_file, $load_once, $args );
}
Arguments
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php"
/nas/content/live/vanhessen/wp-includes/template.php
$located = '';
foreach ( (array) $template_names as $template_name ) {
if ( ! $template_name ) {
continue;
}
if ( file_exists( $stylesheet_path . '/' . $template_name ) ) {
$located = $stylesheet_path . '/' . $template_name;
break;
} elseif ( $is_child_theme && file_exists( $template_path . '/' . $template_name ) ) {
$located = $template_path . '/' . $template_name;
break;
} elseif ( file_exists( ABSPATH . WPINC . '/theme-compat/' . $template_name ) ) {
$located = ABSPATH . WPINC . '/theme-compat/' . $template_name;
break;
}
}
if ( $load && '' !== $located ) {
load_template( $located, $load_once, $args );
}
return $located;
}
/**
* Requires the template file with WordPress environment.
*
* The globals are set up for the template file to ensure that the WordPress
* environment is available from within the function. The query variables are
* also available.
*
* @since 1.5.0
* @since 5.5.0 The `$args` parameter was added.
*
* @global array $posts
* @global WP_Post $post Global post object.
* @global bool $wp_did_header
* @global WP_Query $wp_query WordPress Query object.
* @global WP_Rewrite $wp_rewrite WordPress rewrite component.
Arguments
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/content/02_simplehero.php"
false
[]
/nas/content/live/vanhessen/wp-includes/general-template.php
$templates[] = "{$slug}-{$name}.php";
}
$templates[] = "{$slug}.php";
/**
* Fires before an attempt is made to locate and load a template part.
*
* @since 5.2.0
* @since 5.5.0 The `$args` parameter was added.
*
* @param string $slug The slug name for the generic template.
* @param string $name The name of the specialized template or an empty
* string if there is none.
* @param string[] $templates Array of template files to search for, in order.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'get_template_part', $slug, $name, $templates, $args );
if ( ! locate_template( $templates, true, false, $args ) ) {
return false;
}
}
/**
* Displays search form.
*
* Will first attempt to locate the searchform.php file in either the child or
* the parent, then load it. If it doesn't exist, then the default search form
* will be displayed. The default search form is HTML, which will be displayed.
* There is a filter applied to the search form HTML in order to edit or replace
* it. The filter is {@see 'get_search_form'}.
*
* This function is primarily used by themes which want to hardcode the search
* form into the sidebar and also by the search widget in WordPress.
*
* There is also an action that is called whenever the function is run called,
* {@see 'pre_get_search_form'}. This can be useful for outputting JavaScript that the
* search relies on or various formatting that applies to the beginning of the
* search. To give a few examples of what it can be used for.
Arguments
array:1 [ 0 => "template-parts/content/02_simplehero.php" ]
true
false
[]
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/flexible-sections.php
<?php
$flex_prefix = '';
if ( is_post_type_archive( 'blog' ) ) {
$flex_prefix = 'option';
}
?>
<?php if ( have_rows( 'flexible_sections', $flex_prefix ) ): $ids = 1; ?>
<?php while ( have_rows( 'flexible_sections', $flex_prefix ) ) : the_row(); ?>
<?php Registry::Instance()->CreateOrUpdate( 'ids', $ids++ ); ?>
<?php get_template_part( 'template-parts/content/' . get_row_layout() ); ?>
<?php endwhile; ?>
<?php endif; ?>
Arguments
"template-parts/content/02_simplehero"
/nas/content/live/vanhessen/wp-includes/template.php
if ( isset( $s ) ) {
$s = esc_attr( $s );
}
/**
* Fires before a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_before_load_template', $_template_file, $load_once, $args );
if ( $load_once ) {
require_once $_template_file;
} else {
require $_template_file;
}
/**
* Fires after a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_after_load_template', $_template_file, $load_once, $args );
}
Arguments
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/flexible-sections.php"
/nas/content/live/vanhessen/wp-includes/template.php
$located = '';
foreach ( (array) $template_names as $template_name ) {
if ( ! $template_name ) {
continue;
}
if ( file_exists( $stylesheet_path . '/' . $template_name ) ) {
$located = $stylesheet_path . '/' . $template_name;
break;
} elseif ( $is_child_theme && file_exists( $template_path . '/' . $template_name ) ) {
$located = $template_path . '/' . $template_name;
break;
} elseif ( file_exists( ABSPATH . WPINC . '/theme-compat/' . $template_name ) ) {
$located = ABSPATH . WPINC . '/theme-compat/' . $template_name;
break;
}
}
if ( $load && '' !== $located ) {
load_template( $located, $load_once, $args );
}
return $located;
}
/**
* Requires the template file with WordPress environment.
*
* The globals are set up for the template file to ensure that the WordPress
* environment is available from within the function. The query variables are
* also available.
*
* @since 1.5.0
* @since 5.5.0 The `$args` parameter was added.
*
* @global array $posts
* @global WP_Post $post Global post object.
* @global bool $wp_did_header
* @global WP_Query $wp_query WordPress Query object.
* @global WP_Rewrite $wp_rewrite WordPress rewrite component.
Arguments
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/template-parts/flexible-sections.php"
false
[]
/nas/content/live/vanhessen/wp-includes/general-template.php
$templates[] = "{$slug}-{$name}.php";
}
$templates[] = "{$slug}.php";
/**
* Fires before an attempt is made to locate and load a template part.
*
* @since 5.2.0
* @since 5.5.0 The `$args` parameter was added.
*
* @param string $slug The slug name for the generic template.
* @param string $name The name of the specialized template or an empty
* string if there is none.
* @param string[] $templates Array of template files to search for, in order.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'get_template_part', $slug, $name, $templates, $args );
if ( ! locate_template( $templates, true, false, $args ) ) {
return false;
}
}
/**
* Displays search form.
*
* Will first attempt to locate the searchform.php file in either the child or
* the parent, then load it. If it doesn't exist, then the default search form
* will be displayed. The default search form is HTML, which will be displayed.
* There is a filter applied to the search form HTML in order to edit or replace
* it. The filter is {@see 'get_search_form'}.
*
* This function is primarily used by themes which want to hardcode the search
* form into the sidebar and also by the search widget in WordPress.
*
* There is also an action that is called whenever the function is run called,
* {@see 'pre_get_search_form'}. This can be useful for outputting JavaScript that the
* search relies on or various formatting that applies to the beginning of the
* search. To give a few examples of what it can be used for.
Arguments
array:1 [ 0 => "template-parts/flexible-sections.php" ]
true
false
[]
/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/page.php
<?php get_header(); ?>
<main class="main">
<?php get_template_part('template-parts/flexible-sections'); ?>
</main>
<?php get_footer(); ?>
Arguments
"template-parts/flexible-sections"
/nas/content/live/vanhessen/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
"/nas/content/live/vanhessen/wp-content/themes/vanhessen-child-theme/page.php"
/nas/content/live/vanhessen/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
"/nas/content/live/vanhessen/wp-includes/template-loader.php"
/nas/content/live/vanhessen/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
"/nas/content/live/vanhessen/wp-blog-header.php"
Environment & details:
Key | Value |
query_vars | array:2 [ "page" => "" "pagename" => "klantgetuigenis-la-maison-palmier-abidjan" ] |
query_string | "pagename=klantgetuigenis-la-maison-palmier-abidjan"
|
request | "klantgetuigenis-la-maison-palmier-abidjan"
|
matched_rule | "(.?.+?)(?:/([0-9]+))?/?$"
|
matched_query | "pagename=klantgetuigenis-la-maison-palmier-abidjan&page="
|
did_permalink | true
|
Key | Value |
query | array:2 [ "page" => "" "pagename" => "klantgetuigenis-la-maison-palmier-abidjan" ] |
query_vars | array:9 [ "pagename" => "klantgetuigenis-la-maison-palmier-abidjan" "name" => "klantgetuigenis-la-maison-palmier-abidjan" "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" "order" => "DESC" ] |
meta_query | WP_Meta_Query {#10873} |
queried_object | WP_Post {#10870} |
queried_object_id | 3007
|
request | """ \n \t\t\t\t\tSELECT wp_va_25_posts.ID\n \t\t\t\t\tFROM wp_va_25_posts \n \t\t\t\t\tWHERE 1=1 AND (wp_va_25_posts.ID = '3007') AND wp_va_25_posts.post_type = 'page'\n \t\t\t\t\t\n \t\t\t\t\tORDER BY wp_va_25_posts.menu_order, wp_va_25_posts.post_date DESC\n \t\t\t\t\t\n \t\t\t\t """ |
post_count | 1
|
current_post | -1
|
before_loop | true
|
current_comment | -1
|
found_posts | 1
|
is_page | true
|
is_singular | true
|
Key | Value |
ID | 3007
|
post_author | "6"
|
post_date | "2022-10-25 13:19:25"
|
post_date_gmt | "2022-10-25 11:19:25"
|
post_content | "" |
post_title | "Klant aan het woord: La Maison Palmier Abidjan"
|
post_excerpt | "" |
post_status | "publish"
|
comment_status | "closed"
|
ping_status | "closed"
|
post_password | "" |
post_name | "klantgetuigenis-la-maison-palmier-abidjan"
|
to_ping | "" |
pinged | "" |
post_modified | "2022-11-09 14:22:06"
|
post_modified_gmt | "2022-11-09 13:22:06"
|
post_content_filtered | "" |
post_parent | 0
|
guid | "https://www.vanhessen.be/nl/?page_id=3007"
|
menu_order | 0
|
post_type | "page"
|
post_mime_type | "" |
comment_count | "0"
|
filter | "raw"
|
empty
empty
empty
empty
empty
Key | Value |
SERVER_SOFTWARE | "nginx"
|
REQUEST_URI | "/nl/klantgetuigenis-la-maison-palmier-abidjan/"
|
USER | "fpm200055"
|
HOME | "/home/fpm200055"
|
HTTP_ACCEPT_ENCODING | "gzip"
|
HTTP_X_CACHE_GROUP | "bot"
|
HTTP_X_BOT_CACHE | "YES"
|
HTTP_RAWHOST | "www.vanhessen.be"
|
HTTP_X_UA_ORIGINAL | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
HTTP_VIA | "1.1 pod-217057 (Varnish/7.4)"
|
HTTP_X_WORDPRESS_TYPE | "SUBDIR"
|
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_X_FORWARDED_PROTO | "https"
|
HTTP_X_WPE_LOCAL_SSL | "1"
|
HTTP_X_WPE_REQUEST_ID | "4345c5151cfa4eb26179be1fc5678cbd"
|
HTTP_CF_CONNECTING_IP | "35.172.165.64, 35.172.165.64"
|
HTTP_WPE_READONLY | "on"
|
HTTP_X_WPE_SSL | "1"
|
HTTP_X_WPENGINE_PHP_VERSION | "8.2"
|
HTTP_X_WPE_INSTALL_NAME | "vanhessen"
|
HTTP_X_FORWARDED_HOST | "www.vanhessen.be"
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
HTTP_X_IS_BOT | "1"
|
HTTP_CONNECTION | "close"
|
HTTP_HOST | "www.vanhessen.be"
|
PATH_INFO | "" |
HTTPS | "on"
|
REDIRECT_STATUS | "200"
|
SERVER_NAME | "www.vanhessen.be"
|
SERVER_PORT | "80"
|
SERVER_ADDR | "127.0.0.1"
|
REMOTE_PORT | "" |
REMOTE_ADDR | "35.172.165.64"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REQUEST_SCHEME | "http"
|
SERVER_PROTOCOL | "HTTP/1.0"
|
DOCUMENT_ROOT | "/nas/content/live/vanhessen"
|
DOCUMENT_URI | "/index.php"
|
SCRIPT_NAME | "/index.php"
|
CONTENT_LENGTH | "" |
CONTENT_TYPE | "" |
REQUEST_METHOD | "GET"
|
QUERY_STRING | "" |
IS_WPE | "1"
|
PHP_VALUE | """ \n upload_max_filesize=50M;\n post_max_size=100M; """ |
PHP_ADMIN_VALUE | """ \n sendmail_path=/bin/sendmail-wrapper.sh 0475e4ec6f04f9bb3e105ad93c463319e3ca73bc /usr/sbin/sendmail -t -i;\n syslog.ident=phperr-vanhessen;\n newrelic.enabled=off;\n newrelic.license=;\n newrelic.appname=vanhessen;\n newrelic.browser_monitoring.auto_instrument=off; """ |
SYSLOG_IDENT | "phperr-vanhessen"
|
SCRIPT_FILENAME | "/nas/content/live/vanhessen/index.php"
|
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1701339877.66
|
REQUEST_TIME | 1701339877
|
Key | Value |
USER | "fpm200055"
|
HOME | "/home/fpm200055"
|
HTTP_ACCEPT_ENCODING | "gzip"
|
HTTP_X_CACHE_GROUP | "bot"
|
HTTP_X_BOT_CACHE | "YES"
|
HTTP_RAWHOST | "www.vanhessen.be"
|
HTTP_X_UA_ORIGINAL | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
HTTP_VIA | "1.1 pod-217057 (Varnish/7.4)"
|
HTTP_X_WORDPRESS_TYPE | "SUBDIR"
|
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_X_FORWARDED_PROTO | "https"
|
HTTP_X_WPE_LOCAL_SSL | "1"
|
HTTP_X_WPE_REQUEST_ID | "4345c5151cfa4eb26179be1fc5678cbd"
|
HTTP_CF_CONNECTING_IP | "35.172.165.64, 35.172.165.64"
|
HTTP_WPE_READONLY | "on"
|
HTTP_X_WPE_SSL | "1"
|
HTTP_X_WPENGINE_PHP_VERSION | "8.2"
|
HTTP_X_WPE_INSTALL_NAME | "vanhessen"
|
HTTP_X_FORWARDED_HOST | "www.vanhessen.be"
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
HTTP_X_IS_BOT | "1"
|
HTTP_CONNECTION | "close"
|
HTTP_HOST | "www.vanhessen.be"
|
PATH_INFO | "" |
HTTPS | "on"
|
REDIRECT_STATUS | "200"
|
SERVER_NAME | "www.vanhessen.be"
|
SERVER_PORT | "80"
|
SERVER_ADDR | "127.0.0.1"
|
REMOTE_PORT | "" |
REMOTE_ADDR | "35.172.165.64"
|
SERVER_SOFTWARE | "nginx"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REQUEST_SCHEME | "http"
|
SERVER_PROTOCOL | "HTTP/1.0"
|
DOCUMENT_ROOT | "/nas/content/live/vanhessen"
|
DOCUMENT_URI | "/index.php"
|
REQUEST_URI | "/nl/klantgetuigenis-la-maison-palmier-abidjan/"
|
SCRIPT_NAME | "/index.php"
|
CONTENT_LENGTH | "" |
CONTENT_TYPE | "" |
REQUEST_METHOD | "GET"
|
QUERY_STRING | "" |
IS_WPE | "1"
|
PHP_VALUE | """ \n upload_max_filesize=50M;\n post_max_size=100M; """ |
PHP_ADMIN_VALUE | """ \n sendmail_path=/bin/sendmail-wrapper.sh 0475e4ec6f04f9bb3e105ad93c463319e3ca73bc /usr/sbin/sendmail -t -i;\n syslog.ident=phperr-vanhessen;\n newrelic.enabled=off;\n newrelic.license=;\n newrelic.appname=vanhessen;\n newrelic.browser_monitoring.auto_instrument=off; """ |
SYSLOG_IDENT | "phperr-vanhessen"
|
SCRIPT_FILENAME | "/nas/content/live/vanhessen/index.php"
|
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1701339877.66
|
REQUEST_TIME | 1701339877
|
0. Whoops\Handler\PrettyPageHandler