', $wrapper_attributes, $avatar_block );
}
/**
* Generates class names and styles to apply the border support styles for
* the Avatar block.
*
* @since 6.3.0
*
* @param array $attributes The block attributes.
* @return array The border-related classnames and styles for the block.
*/
function get_block_core_avatar_border_attributes( $attributes ) {
$border_styles = array();
$sides = array( 'top', 'right', 'bottom', 'left' );
// Border radius.
if ( isset( $attributes['style']['border']['radius'] ) ) {
$border_styles['radius'] = $attributes['style']['border']['radius'];
}
// Border style.
if ( isset( $attributes['style']['border']['style'] ) ) {
$border_styles['style'] = $attributes['style']['border']['style'];
}
// Border width.
if ( isset( $attributes['style']['border']['width'] ) ) {
$border_styles['width'] = $attributes['style']['border']['width'];
}
// Border color.
$preset_color = array_key_exists( 'borderColor', $attributes ) ? "var:preset|color|{$attributes['borderColor']}" : null;
$custom_color = $attributes['style']['border']['color'] ?? null;
$border_styles['color'] = $preset_color ? $preset_color : $custom_color;
// Individual border styles e.g. top, left etc.
foreach ( $sides as $side ) {
$border = $attributes['style']['border'][ $side ] ?? null;
$border_styles[ $side ] = array(
'color' => $border['color'] ?? null,
'style' => $border['style'] ?? null,
'width' => $border['width'] ?? null,
);
}
$styles = wp_style_engine_get_styles( array( 'border' => $border_styles ) );
$attributes = array();
if ( ! empty( $styles['classnames'] ) ) {
$attributes['class'] = $styles['classnames'];
}
if ( ! empty( $styles['css'] ) ) {
$attributes['style'] = $styles['css'];
}
return $attributes;
}
/**
* Registers the `core/avatar` block on the server.
*
* @since 6.0.0
*/
function register_block_core_avatar() {
register_block_type_from_metadata(
__DIR__ . '/avatar',
array(
'render_callback' => 'render_block_core_avatar',
)
);
}
add_action( 'init', 'register_block_core_avatar' );
term-template.php 0000644 00000010646 15246340743 0010054 0 ustar 00 context ) || empty( $block->context['termQuery'] ) ) {
return '';
}
$query = $block->context['termQuery'];
$query_args = array(
'number' => $query['perPage'],
'order' => $query['order'],
'orderby' => $query['orderBy'],
'hide_empty' => $query['hideEmpty'],
);
$inherit_query = isset( $query['inherit'] )
&& $query['inherit']
&& ( is_tax() || is_category() || is_tag() );
if ( $inherit_query ) {
// Get the current term and taxonomy from the queried object.
$queried_object = get_queried_object();
// For hierarchical taxonomies, show children of the current term.
// For non-hierarchical taxonomies, show all terms (don't set parent).
if ( is_taxonomy_hierarchical( $queried_object->taxonomy ) ) {
// If showNested is true, use child_of to include nested terms.
// Otherwise, use parent to show only direct children.
if ( ! empty( $query['showNested'] ) ) {
$query_args['child_of'] = $queried_object->term_id;
} else {
$query_args['parent'] = $queried_object->term_id;
}
}
$query_args['taxonomy'] = $queried_object->taxonomy;
} else {
// If not inheriting set `taxonomy` from the block attribute.
$query_args['taxonomy'] = $query['taxonomy'];
// If we are including specific terms we ignore `showNested` argument.
if ( ! empty( $query['include'] ) ) {
$query_args['include'] = array_unique( array_map( 'intval', $query['include'] ) );
$query_args['orderby'] = 'include';
$query_args['order'] = 'asc';
} elseif ( is_taxonomy_hierarchical( $query['taxonomy'] ) && empty( $query['showNested'] ) ) {
// We set parent only when inheriting from the taxonomy archive context or not
// showing nested terms, otherwise nested terms are not displayed.
$query_args['parent'] = 0;
}
}
$terms_query = new WP_Term_Query( $query_args );
$terms = $terms_query->get_terms();
if ( ! $terms || is_wp_error( $terms ) ) {
return '';
}
$content = '';
foreach ( $terms as $term ) {
// Get an instance of the current Term Template block.
$block_instance = $block->parsed_block;
// Set the block name to one that does not correspond to an existing registered block.
// This ensures that for the inner instances of the Term Template block, we do not render any block supports.
$block_instance['blockName'] = 'core/null';
$term_id = $term->term_id;
$taxonomy = $term->taxonomy;
$filter_block_context = static function ( $context ) use ( $term_id, $taxonomy ) {
$context['termId'] = $term_id;
$context['taxonomy'] = $taxonomy;
return $context;
};
// Use an early priority to so that other 'render_block_context' filters have access to the values.
add_filter( 'render_block_context', $filter_block_context, 1 );
// Render the inner blocks of the Term Template block with `dynamic` set to `false` to prevent calling
// `render_callback` and ensure that no wrapper markup is included.
$block_content = ( new WP_Block( $block_instance ) )->render( array( 'dynamic' => false ) );
remove_filter( 'render_block_context', $filter_block_context, 1 );
// Wrap the render inner blocks in a `li` element with the appropriate term classes.
$term_classes = "wp-block-term term-{$term->term_id} {$term->taxonomy} taxonomy-{$term->taxonomy}";
$content .= '
)/',
'$1' . $image_tag,
$content
);
$image_tag_processor = new WP_HTML_Tag_Processor( $content );
if ( $image_tag_processor->next_tag(
array(
'tag_name' => 'figure',
'id' => $unique_id,
)
) ) {
// The ID is only used to ensure that the correct figure tag is selected,
// and can now be removed.
$image_tag_processor->remove_attribute( 'id' );
if ( $image_tag_processor->next_tag(
array(
'tag_name' => 'img',
'class_name' => 'wp-block-media-text__featured_image',
)
) ) {
$image_tag_processor->set_attribute( 'src', esc_url( $current_featured_image ) );
$image_tag_processor->set_attribute( 'class', 'wp-image-' . get_post_thumbnail_id() . ' size-' . $media_size_slug );
$image_tag_processor->set_attribute( 'alt', trim( strip_tags( get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true ) ) ) );
if ( $image_fill ) {
$image_tag_processor->set_attribute( 'style', 'object-position:' . $focal_point . ';' );
}
$content = $image_tag_processor->get_updated_html();
}
}
return $content;
}
/**
* Registers the `core/media-text` block renderer on server.
*
* @since 6.6.0
*/
function register_block_core_media_text() {
register_block_type_from_metadata(
__DIR__ . '/media-text',
array(
'render_callback' => 'render_block_core_media_text',
)
);
}
add_action( 'init', 'register_block_core_media_text' );
image.php 0000644 00000042352 15246340743 0006355 0 ustar 00 set_bookmark( 'here' );
$opener = $this->bookmarks['here'];
// Allow comments within the definition of “empty.”
while ( $this->next_token() && '#comment' === $this->get_token_name() ) {
continue;
}
if ( 'FIGCAPTION' !== $this->get_tag() || ! $this->is_tag_closer() ) {
return false;
}
$this->set_bookmark( 'here' );
$closer = $this->bookmarks['here'];
return new WP_HTML_Span( $opener->start, $closer->start + $closer->length - $opener->start );
}
};
if ( ! $processor->next_tag( 'img' ) || ! $processor->get_attribute( 'src' ) ) {
return '';
}
$has_id_binding = isset( $attributes['metadata']['bindings']['id'] ) && isset( $attributes['id'] );
// Ensure the `wp-image-id` classname on the image block supports block bindings.
if ( $has_id_binding ) {
// If there's a mismatch with the 'wp-image-' class and the actual id, the id was
// probably overridden by block bindings. Update it to the correct value.
// See https://github.com/WordPress/gutenberg/issues/62886 for why this is needed.
$id = $attributes['id'];
$image_classnames = $processor->get_attribute( 'class' );
$class_with_binding_value = "wp-image-$id";
if ( is_string( $image_classnames ) && ! str_contains( $image_classnames, $class_with_binding_value ) ) {
$image_classnames = preg_replace( '/wp-image-(\d+)/', $class_with_binding_value, $image_classnames );
$processor->set_attribute( 'class', $image_classnames );
}
}
// For backwards compatibility, the data-id html attribute is only set for
// image blocks nested in a gallery. Detect if the image is in a gallery by
// checking the data-id attribute.
// See the `block_core_gallery_data_id_backcompatibility` function.
if ( isset( $attributes['data-id'] ) ) {
// If there's a binding for the `id`, the `id` attribute is used for the
// value, since `data-id` does not support block bindings.
// Else the `data-id` is used for backwards compatibility, since
// third parties may be filtering its value.
$data_id = $has_id_binding ? $attributes['id'] : $attributes['data-id'];
$processor->set_attribute( 'data-id', $data_id );
}
/*
* If the `caption` attribute is empty and we encounter a `` element,
* we take note of its span so we can remove it later.
*/
if ( $processor->next_tag( 'FIGCAPTION' ) && empty( $attributes['caption'] ) ) {
$figcaption_span = $processor->block_core_image_extract_empty_figcaption_element();
}
$link_destination = $attributes['linkDestination'] ?? 'none';
$lightbox_settings = block_core_image_get_lightbox_settings( $block->parsed_block );
/*
* If the lightbox is enabled and the image is not linked, adds the filter and
* the JavaScript view file.
*/
if (
isset( $lightbox_settings ) &&
'none' === $link_destination &&
isset( $lightbox_settings['enabled'] ) &&
true === $lightbox_settings['enabled']
) {
wp_enqueue_script_module( '@wordpress/block-library/image/view' );
/*
* This render needs to happen in a filter with priority 15 to ensure that
* it runs after the duotone filter and that duotone styles are applied to
* the image in the lightbox. Lightbox has to work with any plugins that
* might use filters as well. Removing this can be considered in the future
* if the way the blocks are rendered changes, or if a new kind of filter is
* introduced.
*/
add_filter( 'render_block_core/image', 'block_core_image_render_lightbox', 15, 3 );
} else {
/*
* Remove the filter if previously added by other Image blocks.
*/
remove_filter( 'render_block_core/image', 'block_core_image_render_lightbox', 15 );
}
$output = $processor->get_updated_html();
if ( ! empty( $figcaption_span ) ) {
return substr( $output, 0, $figcaption_span->start ) . substr( $output, $figcaption_span->start + $figcaption_span->length );
}
return $output;
}
/**
* Adds the lightboxEnabled flag to the block data.
*
* This is used to determine whether the lightbox should be rendered or not.
*
* @since 6.4.0
*
* @param array $block Block data.
*
* @return array|null Filtered block data.
*/
function block_core_image_get_lightbox_settings( $block ) {
// Gets the lightbox setting from the block attributes.
if ( isset( $block['attrs']['lightbox'] ) ) {
$lightbox_settings = $block['attrs']['lightbox'];
}
if ( ! isset( $lightbox_settings ) ) {
$lightbox_settings = wp_get_global_settings( array( 'lightbox' ), array( 'block_name' => 'core/image' ) );
// If not present in global settings, check the top-level global settings.
//
// NOTE: If no block-level settings are found, the previous call to
// `wp_get_global_settings` will return the whole `theme.json` structure in
// which case we can check if the "lightbox" key is present at the top-level
// of the global settings and use its value.
if ( isset( $lightbox_settings['lightbox'] ) ) {
$lightbox_settings = wp_get_global_settings( array( 'lightbox' ) );
}
}
return $lightbox_settings ?? null;
}
/**
* Adds the directives and layout needed for the lightbox behavior.
*
* @since 6.4.0
*
* @param string $block_content Rendered block content.
* @param array $block Block object.
* @param WP_Block $block_instance Block instance.
*
* @return string Filtered block content.
*/
function block_core_image_render_lightbox( $block_content, array $block, WP_Block $block_instance ) {
/*
* If there's no IMG tag in the block then return the given block content
* as-is. There's nothing that this code can knowingly modify to add the
* lightbox behavior.
*/
$processor = new WP_HTML_Tag_Processor( $block_content );
if ( $processor->next_tag( 'figure' ) ) {
$processor->set_bookmark( 'figure' );
}
if ( ! $processor->next_tag( 'img' ) ) {
return $block_content;
}
$alt = $processor->get_attribute( 'alt' );
$img_uploaded_src = $processor->get_attribute( 'src' );
$img_class_names = $processor->get_attribute( 'class' );
$img_styles = $processor->get_attribute( 'style' );
$img_width = 'none';
$img_height = 'none';
$img_srcset = false;
wp_interactivity_config(
'core/image',
array(
'defaultAriaLabel' => __( 'Enlarged image' ),
'closeButtonText' => esc_html__( 'Close' ),
'prevButtonText' => esc_html_x( 'Previous', 'previous image in lightbox' ),
'nextButtonText' => esc_html_x( 'Next', 'next image in lightbox' ),
)
);
if ( $alt ) {
/* translators: %s: Image alt text. */
$custom_aria_label = sprintf( __( 'Enlarged image: %s' ), $alt );
}
if ( isset( $block['attrs']['id'] ) ) {
$img_uploaded_src = wp_get_attachment_url( $block['attrs']['id'] );
$img_metadata = wp_get_attachment_metadata( $block['attrs']['id'] );
$has_dimensions = ( $img_metadata['width'] ?? '' ) && ( $img_metadata['height'] ?? '' );
$srcset_size = $has_dimensions ? array( $img_metadata['width'], $img_metadata['height'] ) : 'large';
$img_srcset = wp_get_attachment_image_srcset( $block['attrs']['id'], $srcset_size );
$img_width = $img_metadata['width'] ?? 'none';
$img_height = $img_metadata['height'] ?? 'none';
}
// Figure.
$processor->seek( 'figure' );
$figure_class_names = $processor->get_attribute( 'class' );
$figure_styles = $processor->get_attribute( 'style' );
// Create unique id and set the image metadata in the state.
$unique_image_id = uniqid();
wp_interactivity_state(
'core/image',
array(
'metadata' => array(
$unique_image_id => array(
'uploadedSrc' => $img_uploaded_src,
'lightboxSrcset' => $img_srcset,
'figureClassNames' => $figure_class_names,
'figureStyles' => $figure_styles,
'imgClassNames' => $img_class_names,
'imgStyles' => $img_styles,
'targetWidth' => $img_width,
'targetHeight' => $img_height,
'scaleAttr' => $block['attrs']['scale'] ?? false,
'alt' => $alt,
'galleryId' => $block_instance->context['galleryId'] ?? null,
'customAriaLabel' => $custom_aria_label ?? null,
'navigationButtonType' => $block_instance->context['navigationButtonType'] ?? 'icon',
'triggerButtonAriaLabel' => __( 'Enlarge' ),
),
),
)
);
$processor->add_class( 'wp-lightbox-container' );
$processor->set_attribute( 'data-wp-interactive', 'core/image' );
$processor->set_attribute(
'data-wp-context',
wp_json_encode(
array( 'imageId' => $unique_image_id ),
JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP
)
);
$processor->set_attribute( 'data-wp-key', $unique_image_id );
// Image.
$processor->next_tag( 'img' );
$processor->set_attribute( 'data-wp-init', 'callbacks.setButtonStyles' );
$processor->set_attribute( 'data-wp-on--load', 'callbacks.setButtonStyles' );
$processor->set_attribute( 'data-wp-on-window--resize', 'callbacks.setButtonStyles' );
// Set an event to preload the image on pointerenter and pointerdown(mobile).
// Pointerleave is used to cancel the preload if the user hovers away from the image
// before the predefined delay.
$processor->set_attribute( 'data-wp-on--pointerenter', 'actions.preloadImageWithDelay' );
$processor->set_attribute( 'data-wp-on--pointerdown', 'actions.preloadImage' );
$processor->set_attribute( 'data-wp-on--pointerleave', 'actions.cancelPreload' );
// Sets an event callback on the `img` because the `figure` element can also
// contain a caption, and we don't want to trigger the lightbox when the
// caption is clicked.
$processor->set_attribute( 'data-wp-on--click', 'actions.showLightbox' );
$processor->set_attribute( 'data-wp-class--hide', 'state.isContentHidden' );
$processor->set_attribute( 'data-wp-class--show', 'state.isContentVisible' );
$body_content = $processor->get_updated_html();
// Adds a button alongside image in the body content.
$img = null;
preg_match( '/]+>/', $body_content, $img );
$button =
$img[0]
. '';
$body_content = preg_replace( '/]+>/', $button, $body_content );
add_action( 'wp_footer', 'block_core_image_print_lightbox_overlay' );
return $body_content;
}
/**
* @since 6.5.0
*/
function block_core_image_print_lightbox_overlay() {
$dialog_label = esc_attr__( 'Enlarged images' );
$close_button_text = esc_attr__( 'Close' );
$prev_button_text = esc_attr_x( 'Previous', 'previous image in lightbox' );
$next_button_text = esc_attr_x( 'Next', 'next image in lightbox' );
$close_button_icon = '';
$prev_button_icon = '';
$next_button_icon = '';
// If the current theme does NOT have a `theme.json`, or the colors are not
// defined, it needs to set the background color & close button color to some
// default values because it can't get them from the Global Styles.
$background_color = '#fff';
$close_button_color = '#000';
if ( wp_theme_has_theme_json() ) {
$global_styles_color = wp_get_global_styles( array( 'color' ) );
if ( ! empty( $global_styles_color['background'] ) ) {
$background_color = esc_attr( $global_styles_color['background'] );
}
if ( ! empty( $global_styles_color['text'] ) ) {
$close_button_color = esc_attr( $global_styles_color['text'] );
}
}
echo <<
';
return $html;
}
/**
* Returns a navigation link variation
*
* @since 5.9.0
*
* @param WP_Taxonomy|WP_Post_Type $entity post type or taxonomy entity.
* @param string $kind string of value 'taxonomy' or 'post-type'.
*
* @return array
*/
function build_variation_for_navigation_link( $entity, $kind ) {
$title = '';
$description = '';
// Get default labels based on entity type
$default_labels = null;
if ( $entity instanceof WP_Post_Type ) {
$default_labels = WP_Post_Type::get_default_labels();
} elseif ( $entity instanceof WP_Taxonomy ) {
$default_labels = WP_Taxonomy::get_default_labels();
}
// Get title and check if it's default
$is_default_title = false;
if ( property_exists( $entity->labels, 'item_link' ) ) {
$title = $entity->labels->item_link;
if ( isset( $default_labels['item_link'] ) ) {
$is_default_title = in_array( $title, $default_labels['item_link'], true );
}
}
// Get description and check if it's default
$is_default_description = false;
if ( property_exists( $entity->labels, 'item_link_description' ) ) {
$description = $entity->labels->item_link_description;
if ( isset( $default_labels['item_link_description'] ) ) {
$is_default_description = in_array( $description, $default_labels['item_link_description'], true );
}
}
// Calculate singular name once (used for both title and description)
$singular = $entity->labels->singular_name ?? ucfirst( $entity->name );
// Set default title if needed
if ( $is_default_title || '' === $title ) {
/* translators: %s: Singular label of the entity. */
$title = sprintf( __( '%s link' ), $singular );
}
// Default description if needed.
// Use a single space character instead of an empty string to prevent fallback to the
// block.json default description ("Add a page, link, or another item to your navigation.").
// An empty string would be treated as missing and trigger the fallback, while a single
// space appears blank in the UI but prevents the fallback behavior.
// We avoid generating descriptions like "A link to a %s" to prevent grammatical errors
// (e.g., "A link to a event" should be "A link to an event").
if ( $is_default_description || '' === $description ) {
$description = ' ';
}
$variation = array(
'name' => $entity->name,
'title' => $title,
'description' => $description,
'attributes' => array(
'type' => $entity->name,
'kind' => $kind,
),
);
// Tweak some value for the variations.
$variation_overrides = array(
'post_tag' => array(
'name' => 'tag',
'attributes' => array(
'type' => 'tag',
'kind' => $kind,
),
),
'post_format' => array(
// The item_link and item_link_description for post formats is the
// same as for tags, so need to be overridden.
'title' => __( 'Post Format Link' ),
'description' => __( 'A link to a post format' ),
'attributes' => array(
'type' => 'post_format',
'kind' => $kind,
),
),
);
if ( array_key_exists( $entity->name, $variation_overrides ) ) {
$variation = array_merge(
$variation,
$variation_overrides[ $entity->name ]
);
}
return $variation;
}
/**
* Filters the registered variations for a block type.
* Returns the dynamically built variations for all post-types and taxonomies.
*
* @since 6.5.0
*
* @param array $variations Array of registered variations for a block type.
* @param WP_Block_Type $block_type The full block type object.
* @return array Numerically indexed array of block variations.
*/
function block_core_navigation_link_filter_variations( $variations, $block_type ) {
if ( 'core/navigation-link' !== $block_type->name ) {
return $variations;
}
$generated_variations = block_core_navigation_link_build_variations();
/*
* IMPORTANT: Order matters for deduplication.
*
* The variations returned from this filter are bootstrapped to JavaScript and
* processed by the block variations reducer. The reducer uses `getUniqueItemsByName()`
* (packages/blocks/src/store/reducer.js:51-57) which keeps the FIRST variation with
* a given 'name' and discards later duplicates when processing the array in order.
*
* By placing generated variations first in `array_merge()`, the improved
* labels (e.g., "Product link" instead of generic "Post Link") are processed first
* and preserved. The generic incoming variations are then discarded as duplicates.
*
* Why `array_merge()` instead of manual deduplication?
* - Both arrays use numeric indices (0, 1, 2...), so `array_merge()` concatenates
* and re-indexes them sequentially, preserving order
* - The reducer handles deduplication, so it is not needed here
* - This keeps the PHP code simple and relies on the established JavaScript behavior
*
* See: https://github.com/WordPress/gutenberg/pull/72517
*/
return array_merge( $generated_variations, $variations );
}
/**
* Returns an array of variations for the navigation link block.
*
* @since 6.5.0
*
* @return array
*/
function block_core_navigation_link_build_variations() {
$post_types = get_post_types( array( 'show_in_nav_menus' => true ), 'objects' );
$taxonomies = get_taxonomies( array( 'show_in_nav_menus' => true ), 'objects' );
/*
* Use two separate arrays as a way to order the variations in the UI.
* Known variations (like Post Link and Page Link) are added to the
* `built_ins` array. Variations for custom post types and taxonomies are
* added to the `variations` array and will always appear after `built-ins.
*/
$built_ins = array();
$variations = array();
if ( $post_types ) {
foreach ( $post_types as $post_type ) {
$variation = build_variation_for_navigation_link( $post_type, 'post-type' );
if ( $post_type->_builtin ) {
$built_ins[] = $variation;
} else {
$variations[] = $variation;
}
}
}
if ( $taxonomies ) {
foreach ( $taxonomies as $taxonomy ) {
$variation = build_variation_for_navigation_link( $taxonomy, 'taxonomy' );
if ( $taxonomy->_builtin ) {
$built_ins[] = $variation;
} else {
$variations[] = $variation;
}
}
}
$all_variations = array_merge( $built_ins, $variations );
return $all_variations;
}
/**
* Registers the navigation link block.
*
* @since 5.9.0
*
* @uses render_block_core_navigation_link()
* @throws WP_Error An WP_Error exception parsing the block definition.
*/
function register_block_core_navigation_link() {
register_block_type_from_metadata(
__DIR__ . '/navigation-link',
array(
'render_callback' => 'render_block_core_navigation_link',
)
);
}
add_action( 'init', 'register_block_core_navigation_link' );
/**
* Creates all variations for post types / taxonomies dynamically (= each time when variations are requested).
* Do not use variation_callback, to also account for unregistering post types/taxonomies later on.
*/
add_filter( 'get_block_type_variations', 'block_core_navigation_link_filter_variations', 10, 2 );
calendar.php 0000644 00000013673 15246340743 0007050 0 ustar 00 ' . __( 'The calendar block is hidden because there are no published posts.' ) . '';
}
return '';
}
$previous_monthnum = $monthnum;
$previous_year = $year;
if ( isset( $attributes['month'] ) && isset( $attributes['year'] ) ) {
$permalink_structure = get_option( 'permalink_structure' );
if (
str_contains( $permalink_structure, '%monthnum%' ) &&
str_contains( $permalink_structure, '%year%' )
) {
$monthnum = $attributes['month'];
$year = $attributes['year'];
}
}
$color_block_styles = array();
// Text color.
$preset_text_color = array_key_exists( 'textColor', $attributes ) ? "var:preset|color|{$attributes['textColor']}" : null;
$custom_text_color = $attributes['style']['color']['text'] ?? null;
$color_block_styles['text'] = $preset_text_color ? $preset_text_color : $custom_text_color;
// Background Color.
$preset_background_color = array_key_exists( 'backgroundColor', $attributes ) ? "var:preset|color|{$attributes['backgroundColor']}" : null;
$custom_background_color = $attributes['style']['color']['background'] ?? null;
$color_block_styles['background'] = $preset_background_color ? $preset_background_color : $custom_background_color;
// Generate color styles and classes.
$styles = wp_style_engine_get_styles( array( 'color' => $color_block_styles ), array( 'convert_vars_to_classnames' => true ) );
$inline_styles = empty( $styles['css'] ) ? '' : sprintf( ' style="%s"', esc_attr( $styles['css'] ) );
$classnames = empty( $styles['classnames'] ) ? '' : ' ' . esc_attr( $styles['classnames'] );
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
$classnames .= ' has-link-color';
}
// Apply color classes and styles to the calendar.
$calendar = str_replace( '
%2$s',
$wrapper_attributes,
$calendar
);
$monthnum = $previous_monthnum;
$year = $previous_year;
return $output;
}
/**
* Registers the `core/calendar` block on server.
*
* @since 5.2.0
*/
function register_block_core_calendar() {
register_block_type_from_metadata(
__DIR__ . '/calendar',
array(
'render_callback' => 'render_block_core_calendar',
)
);
}
add_action( 'init', 'register_block_core_calendar' );
/**
* Returns whether or not there are any published posts.
*
* Used to hide the calendar block when there are no published posts.
* This compensates for a known Core bug: https://core.trac.wordpress.org/ticket/12016
*
* @since 5.9.0
*
* @return bool Has any published posts or not.
*/
function block_core_calendar_has_published_posts() {
// Multisite already has an option that stores the count of the published posts.
// Let's use that for multisites.
if ( is_multisite() ) {
return 0 < (int) get_option( 'post_count' );
}
// On single sites we try our own cached option first.
$has_published_posts = get_option( 'wp_calendar_block_has_published_posts', null );
if ( null !== $has_published_posts ) {
return (bool) $has_published_posts;
}
// No cache hit, let's update the cache and return the cached value.
return block_core_calendar_update_has_published_posts();
}
/**
* Queries the database for any published post and saves
* a flag whether any published post exists or not.
*
* @since 5.9.0
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @return bool Has any published posts or not.
*/
function block_core_calendar_update_has_published_posts() {
global $wpdb;
$has_published_posts = (bool) $wpdb->get_var( "SELECT 1 as test FROM {$wpdb->posts} WHERE post_type = 'post' AND post_status = 'publish' LIMIT 1" );
update_option( 'wp_calendar_block_has_published_posts', $has_published_posts );
return $has_published_posts;
}
// We only want to register these functions and actions when
// we are on single sites. On multi sites we use `post_count` option.
if ( ! is_multisite() ) {
/**
* Handler for updating the has published posts flag when a post is deleted.
*
* @since 5.9.0
*
* @param int $post_id Deleted post ID.
*/
function block_core_calendar_update_has_published_post_on_delete( $post_id ) {
$post = get_post( $post_id );
if ( ! $post || 'publish' !== $post->post_status || 'post' !== $post->post_type ) {
return;
}
block_core_calendar_update_has_published_posts();
}
/**
* Handler for updating the has published posts flag when a post status changes.
*
* @since 5.9.0
*
* @param string $new_status The status the post is changing to.
* @param string $old_status The status the post is changing from.
* @param WP_Post $post Post object.
*/
function block_core_calendar_update_has_published_post_on_transition_post_status( $new_status, $old_status, $post ) {
if ( $new_status === $old_status ) {
return;
}
if ( 'post' !== get_post_type( $post ) ) {
return;
}
if ( 'publish' !== $new_status && 'publish' !== $old_status ) {
return;
}
block_core_calendar_update_has_published_posts();
}
add_action( 'delete_post', 'block_core_calendar_update_has_published_post_on_delete' );
add_action( 'transition_post_status', 'block_core_calendar_update_has_published_post_on_transition_post_status', 10, 3 );
}
pattern/block.json 0000644 00000000662 15246340743 0010222 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/pattern",
"title": "Pattern Placeholder",
"category": "theme",
"description": "Show a block pattern.",
"supports": {
"html": false,
"inserter": false,
"renaming": false,
"visibility": false,
"interactivity": {
"clientNavigation": true
}
},
"textdomain": "default",
"attributes": {
"slug": {
"type": "string"
}
}
}
rss/editor.min.css 0000644 00000000260 15246340743 0010143 0 ustar 00 .wp-block-rss li a>div{display:inline}.wp-block-rss__placeholder-form .wp-block-rss__placeholder-input{flex:1 1 auto}.wp-block-rss .wp-block-rss{all:inherit;margin:0;padding:0} rss/block.json 0000644 00000002647 15246340743 0007361 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/rss",
"title": "RSS",
"category": "widgets",
"description": "Display entries from any RSS or Atom feed.",
"keywords": [ "atom", "feed" ],
"textdomain": "default",
"attributes": {
"columns": {
"type": "number",
"default": 2
},
"blockLayout": {
"type": "string",
"default": "list"
},
"feedURL": {
"type": "string",
"default": "",
"role": "content"
},
"itemsToShow": {
"type": "number",
"default": 5
},
"displayExcerpt": {
"type": "boolean",
"default": false
},
"displayAuthor": {
"type": "boolean",
"default": false
},
"displayDate": {
"type": "boolean",
"default": false
},
"excerptLength": {
"type": "number",
"default": 55
},
"openInNewTab": {
"type": "boolean",
"default": false
},
"rel": {
"type": "string"
}
},
"supports": {
"anchor": true,
"align": true,
"html": false,
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true
},
"spacing": {
"margin": true,
"padding": true,
"__experimentalDefaultControls": {
"padding": false,
"margin": false
}
},
"color": {
"background": true,
"text": true,
"gradients": true,
"link": true
}
},
"editorStyle": "wp-block-rss-editor",
"style": "wp-block-rss"
}
rss/style-rtl.css 0000644 00000005304 15246340743 0010036 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
ul.wp-block-rss.alignleft {
margin-right: 2em;
}
ul.wp-block-rss.alignright {
margin-left: 2em;
}
ul.wp-block-rss.is-grid {
display: flex;
flex-wrap: wrap;
padding: 0;
}
ul.wp-block-rss.is-grid li {
margin: 0 0 1em 1em;
width: 100%;
}
@media (min-width: 600px) {
ul.wp-block-rss.columns-2 li {
width: calc(100% / 2 - 1em);
}
ul.wp-block-rss.columns-3 li {
width: calc(100% / 3 - 1em);
}
ul.wp-block-rss.columns-4 li {
width: calc(100% / 4 - 1em);
}
ul.wp-block-rss.columns-5 li {
width: calc(100% / 5 - 1em);
}
ul.wp-block-rss.columns-6 li {
width: calc(100% / 6 - 1em);
}
}
.wp-block-rss__item-publish-date,
.wp-block-rss__item-author {
display: block;
font-size: 0.8125em;
}
.wp-block-rss {
box-sizing: border-box;
list-style: none;
padding: 0;
} rss/style.min.css 0000644 00000001214 15246340743 0010015 0 ustar 00 ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-rss{box-sizing:border-box;list-style:none;padding:0} rss/editor-rtl.min.css 0000644 00000000260 15246340743 0010742 0 ustar 00 .wp-block-rss li a>div{display:inline}.wp-block-rss__placeholder-form .wp-block-rss__placeholder-input{flex:1 1 auto}.wp-block-rss .wp-block-rss{all:inherit;margin:0;padding:0} rss/style.css 0000644 00000005346 15246340743 0007245 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
ul.wp-block-rss.alignleft {
/*rtl:ignore*/
margin-right: 2em;
}
ul.wp-block-rss.alignright {
/*rtl:ignore*/
margin-left: 2em;
}
ul.wp-block-rss.is-grid {
display: flex;
flex-wrap: wrap;
padding: 0;
}
ul.wp-block-rss.is-grid li {
margin: 0 1em 1em 0;
width: 100%;
}
@media (min-width: 600px) {
ul.wp-block-rss.columns-2 li {
width: calc(100% / 2 - 1em);
}
ul.wp-block-rss.columns-3 li {
width: calc(100% / 3 - 1em);
}
ul.wp-block-rss.columns-4 li {
width: calc(100% / 4 - 1em);
}
ul.wp-block-rss.columns-5 li {
width: calc(100% / 5 - 1em);
}
ul.wp-block-rss.columns-6 li {
width: calc(100% / 6 - 1em);
}
}
.wp-block-rss__item-publish-date,
.wp-block-rss__item-author {
display: block;
font-size: 0.8125em;
}
.wp-block-rss {
box-sizing: border-box;
list-style: none;
padding: 0;
} rss/style-rtl.min.css 0000644 00000001214 15246340743 0010614 0 ustar 00 ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0}ul.wp-block-rss.is-grid li{margin:0 0 1em 1em;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-rss{box-sizing:border-box;list-style:none;padding:0} rss/editor-rtl.css 0000644 00000000323 15246340743 0010160 0 ustar 00 .wp-block-rss li a > div {
display: inline;
}
.wp-block-rss__placeholder-form .wp-block-rss__placeholder-input {
flex: 1 1 auto;
}
.wp-block-rss .wp-block-rss {
all: inherit;
margin: 0;
padding: 0;
} rss/editor.css 0000644 00000000323 15246340743 0007361 0 ustar 00 .wp-block-rss li a > div {
display: inline;
}
.wp-block-rss__placeholder-form .wp-block-rss__placeholder-input {
flex: 1 1 auto;
}
.wp-block-rss .wp-block-rss {
all: inherit;
margin: 0;
padding: 0;
} spacer/editor.min.css 0000644 00000001703 15246340743 0010614 0 ustar 00 .block-editor-block-list__block[data-type="core/spacer"]:before{content:"";display:block;height:100%;min-height:8px;min-width:8px;position:absolute;width:100%;z-index:1}.block-library-spacer__resize-container.has-show-handle,.wp-block-spacer.is-hovered .block-library-spacer__resize-container,.wp-block-spacer.is-selected.custom-sizes-disabled{background:rgba(0,0,0,.1)}.is-dark-theme .block-library-spacer__resize-container.has-show-handle,.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,.is-dark-theme .wp-block-spacer.is-selected.custom-sizes-disabled{background:hsla(0,0%,100%,.15)}.block-library-spacer__resize-container{clear:both}.block-library-spacer__resize-container:not(.is-resizing){height:100%!important;width:100%!important}.block-library-spacer__resize-container .components-resizable-box__handle:before{content:none}.block-library-spacer__resize-container.resize-horizontal{height:100%!important;margin-bottom:0} spacer/block.json 0000644 00000001245 15246340743 0010020 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/spacer",
"title": "Spacer",
"category": "design",
"description": "Add white space between blocks and customize its height.",
"textdomain": "default",
"attributes": {
"height": {
"type": "string",
"default": "100px"
},
"width": {
"type": "string"
}
},
"usesContext": [ "orientation" ],
"supports": {
"anchor": true,
"spacing": {
"margin": [ "top", "bottom" ],
"__experimentalDefaultControls": {
"margin": true
}
},
"interactivity": {
"clientNavigation": true
}
},
"editorStyle": "wp-block-spacer-editor",
"style": "wp-block-spacer"
}
spacer/style-rtl.css 0000644 00000000043 15246340743 0010477 0 ustar 00 .wp-block-spacer {
clear: both;
} spacer/style.min.css 0000644 00000000034 15246340743 0010462 0 ustar 00 .wp-block-spacer{clear:both} spacer/editor-rtl.min.css 0000644 00000001703 15246340743 0011413 0 ustar 00 .block-editor-block-list__block[data-type="core/spacer"]:before{content:"";display:block;height:100%;min-height:8px;min-width:8px;position:absolute;width:100%;z-index:1}.block-library-spacer__resize-container.has-show-handle,.wp-block-spacer.is-hovered .block-library-spacer__resize-container,.wp-block-spacer.is-selected.custom-sizes-disabled{background:rgba(0,0,0,.1)}.is-dark-theme .block-library-spacer__resize-container.has-show-handle,.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,.is-dark-theme .wp-block-spacer.is-selected.custom-sizes-disabled{background:hsla(0,0%,100%,.15)}.block-library-spacer__resize-container{clear:both}.block-library-spacer__resize-container:not(.is-resizing){height:100%!important;width:100%!important}.block-library-spacer__resize-container .components-resizable-box__handle:before{content:none}.block-library-spacer__resize-container.resize-horizontal{height:100%!important;margin-bottom:0} spacer/style.css 0000644 00000000043 15246340743 0007700 0 ustar 00 .wp-block-spacer {
clear: both;
} spacer/style-rtl.min.css 0000644 00000000034 15246340743 0011261 0 ustar 00 .wp-block-spacer{clear:both} spacer/editor-rtl.css 0000644 00000003477 15246340743 0010643 0 ustar 00 /**
* Colors
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.block-editor-block-list__block[data-type="core/spacer"]::before {
content: "";
display: block;
position: absolute;
z-index: 1;
width: 100%;
min-height: 8px;
min-width: 8px;
height: 100%;
}
.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.block-library-spacer__resize-container.has-show-handle,
.wp-block-spacer.is-selected.custom-sizes-disabled {
background: rgba(0, 0, 0, 0.1);
}
.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.is-dark-theme .block-library-spacer__resize-container.has-show-handle,
.is-dark-theme .wp-block-spacer.is-selected.custom-sizes-disabled {
background: rgba(255, 255, 255, 0.15);
}
.block-library-spacer__resize-container {
clear: both;
}
.block-library-spacer__resize-container:not(.is-resizing) {
height: 100% !important;
width: 100% !important;
}
.block-library-spacer__resize-container .components-resizable-box__handle::before {
content: none;
}
.block-library-spacer__resize-container.resize-horizontal {
margin-bottom: 0;
height: 100% !important;
} spacer/editor.css 0000644 00000003477 15246340743 0010044 0 ustar 00 /**
* Colors
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.block-editor-block-list__block[data-type="core/spacer"]::before {
content: "";
display: block;
position: absolute;
z-index: 1;
width: 100%;
min-height: 8px;
min-width: 8px;
height: 100%;
}
.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.block-library-spacer__resize-container.has-show-handle,
.wp-block-spacer.is-selected.custom-sizes-disabled {
background: rgba(0, 0, 0, 0.1);
}
.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.is-dark-theme .block-library-spacer__resize-container.has-show-handle,
.is-dark-theme .wp-block-spacer.is-selected.custom-sizes-disabled {
background: rgba(255, 255, 255, 0.15);
}
.block-library-spacer__resize-container {
clear: both;
}
.block-library-spacer__resize-container:not(.is-resizing) {
height: 100% !important;
width: 100% !important;
}
.block-library-spacer__resize-container .components-resizable-box__handle::before {
content: none;
}
.block-library-spacer__resize-container.resize-horizontal {
margin-bottom: 0;
height: 100% !important;
} comment-content.php 0000644 00000004633 15246340743 0010405 0 ustar 00 context['commentId'] ) ) {
return '';
}
$comment = get_comment( $block->context['commentId'] );
$commenter = wp_get_current_commenter();
$show_pending_links = isset( $commenter['comment_author'] ) && $commenter['comment_author'];
if ( empty( $comment ) ) {
return '';
}
$args = array();
$comment_text = get_comment_text( $comment, $args );
if ( ! $comment_text ) {
return '';
}
/** This filter is documented in wp-includes/comment-template.php */
$comment_text = apply_filters( 'comment_text', $comment_text, $comment, $args );
$moderation_note = '';
if ( '0' === $comment->comment_approved ) {
$commenter = wp_get_current_commenter();
if ( $commenter['comment_author_email'] ) {
$moderation_note = __( 'Your comment is awaiting moderation.' );
} else {
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' );
}
$moderation_note = '
',
$wrapper_attributes,
$moderation_note,
$comment_text
);
}
/**
* Registers the `core/comment-content` block on the server.
*
* @since 6.0.0
*/
function register_block_core_comment_content() {
register_block_type_from_metadata(
__DIR__ . '/comment-content',
array(
'render_callback' => 'render_block_core_comment_content',
)
);
}
add_action( 'init', 'register_block_core_comment_content' );
post-excerpt.php 0000644 00000010333 15246340743 0007722 0 ustar 00 context['postId'] ) ) {
return '';
}
$more_text = ! empty( $attributes['moreText'] ) ? '' . wp_kses_post( $attributes['moreText'] ) . '' : '';
$filter_excerpt_more = static function ( $more ) use ( $more_text ) {
return empty( $more_text ) ? $more : '';
};
/**
* Some themes might use `excerpt_more` filter to handle the
* `more` link displayed after a trimmed excerpt. Since the
* block has a `more text` attribute we have to check and
* override if needed the return value from this filter.
* So if the block's attribute is not empty override the
* `excerpt_more` filter and return nothing. This will
* result in showing only one `read more` link at a time.
*
* This hook needs to be applied before the excerpt is retrieved with get_the_excerpt.
* Otherwise, the read more link filter from the theme is not removed.
*/
add_filter( 'excerpt_more', $filter_excerpt_more );
/*
* The purpose of the excerpt length setting is to limit the length of both
* automatically generated and user-created excerpts.
* Because the excerpt_length filter only applies to auto generated excerpts,
* wp_trim_words is used instead.
*
* To ensure the block's excerptLength setting works correctly for auto-generated
* excerpts, we temporarily override excerpt_length to 101 (the max block setting)
* so that wp_trim_excerpt doesn't pre-trim the content before wp_trim_words can
* apply the user's desired length.
*/
$excerpt_length = $attributes['excerptLength'];
add_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX );
$excerpt = get_the_excerpt( $block->context['postId'] );
remove_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX );
if ( isset( $excerpt_length ) ) {
$excerpt = wp_trim_words( $excerpt, $excerpt_length );
}
$classes = array();
if ( isset( $attributes['textAlign'] ) ) {
$classes[] = 'has-text-align-' . $attributes['textAlign'];
}
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
$classes[] = 'has-link-color';
}
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );
$content = '
';
}
/*
* Use this function to restore the context of the template tags
* from a secondary query loop back to the main query loop.
* Since we use two custom loops, it's safest to always restore.
*/
wp_reset_postdata();
return sprintf(
'
%2$s
',
$wrapper_attributes,
$content
);
}
/**
* Registers the `core/post-template` block on the server.
*
* @since 5.8.0
*/
function register_block_core_post_template() {
register_block_type_from_metadata(
__DIR__ . '/post-template',
array(
'render_callback' => 'render_block_core_post_template',
'skip_inner_blocks' => true,
)
);
}
add_action( 'init', 'register_block_core_post_template' );
read-more/block.json 0000644 00000002430 15246340743 0010413 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/read-more",
"title": "Read More",
"category": "theme",
"description": "Displays the link of a post, page, or any other content-type.",
"textdomain": "default",
"attributes": {
"content": {
"type": "string",
"role": "content"
},
"linkTarget": {
"type": "string",
"default": "_self"
}
},
"usesContext": [ "postId" ],
"supports": {
"anchor": true,
"html": false,
"color": {
"gradients": true,
"text": true
},
"typography": {
"fontSize": true,
"lineHeight": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalLetterSpacing": true,
"__experimentalTextDecoration": true,
"__experimentalDefaultControls": {
"fontSize": true,
"textDecoration": true
}
},
"spacing": {
"margin": [ "top", "bottom" ],
"padding": true,
"__experimentalDefaultControls": {
"padding": true
}
},
"__experimentalBorder": {
"color": true,
"radius": true,
"width": true,
"__experimentalDefaultControls": {
"width": true
}
},
"interactivity": {
"clientNavigation": true
}
},
"style": "wp-block-read-more"
}
read-more/style-rtl.css 0000644 00000000520 15246340743 0011075 0 ustar 00 .wp-block-read-more {
display: block;
width: -moz-fit-content;
width: fit-content;
}
.wp-block-read-more:where(:not([style*=text-decoration])) {
text-decoration: none;
}
.wp-block-read-more:where(:not([style*=text-decoration])):focus, .wp-block-read-more:where(:not([style*=text-decoration])):active {
text-decoration: none;
} read-more/style.min.css 0000644 00000000460 15246340743 0011063 0 ustar 00 .wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none} read-more/style.css 0000644 00000000520 15246340743 0010276 0 ustar 00 .wp-block-read-more {
display: block;
width: -moz-fit-content;
width: fit-content;
}
.wp-block-read-more:where(:not([style*=text-decoration])) {
text-decoration: none;
}
.wp-block-read-more:where(:not([style*=text-decoration])):focus, .wp-block-read-more:where(:not([style*=text-decoration])):active {
text-decoration: none;
} read-more/style-rtl.min.css 0000644 00000000460 15246340743 0011662 0 ustar 00 .wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none} pullquote/theme-rtl.min.css 0000644 00000000433 15246340743 0012003 0 ustar 00 .wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote :where(cite),.wp-block-pullquote :where(footer),.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase} pullquote/theme.css 0000644 00000000537 15246340743 0010427 0 ustar 00 .wp-block-pullquote {
border-top: 4px solid currentColor;
border-bottom: 4px solid currentColor;
margin-bottom: 1.75em;
color: currentColor;
}
.wp-block-pullquote :where(cite),
.wp-block-pullquote :where(footer), .wp-block-pullquote__citation {
color: currentColor;
text-transform: uppercase;
font-size: 0.8125em;
font-style: normal;
} pullquote/editor.min.css 0000644 00000000336 15246340743 0011372 0 ustar 00 .wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote__citation{color:inherit} pullquote/block.json 0000644 00000003527 15246340743 0010602 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/pullquote",
"title": "Pullquote",
"category": "text",
"description": "Give special visual emphasis to a quote from your text.",
"textdomain": "default",
"attributes": {
"value": {
"type": "rich-text",
"source": "rich-text",
"selector": "p",
"role": "content"
},
"citation": {
"type": "rich-text",
"source": "rich-text",
"selector": "cite",
"role": "content"
}
},
"supports": {
"anchor": true,
"align": [ "left", "right", "wide", "full" ],
"background": {
"backgroundImage": true,
"backgroundSize": true,
"gradient": true,
"__experimentalDefaultControls": {
"backgroundImage": true,
"gradient": true
}
},
"color": {
"gradients": true,
"background": true,
"link": true,
"__experimentalDefaultControls": {
"background": true,
"text": true
}
},
"dimensions": {
"minHeight": true
},
"spacing": {
"margin": true,
"padding": true
},
"typography": {
"fontSize": true,
"lineHeight": true,
"textAlign": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalTextDecoration": true,
"__experimentalLetterSpacing": true,
"__experimentalDefaultControls": {
"fontSize": true
}
},
"__experimentalBorder": {
"color": true,
"radius": true,
"style": true,
"width": true,
"__experimentalDefaultControls": {
"color": true,
"radius": true,
"style": true,
"width": true
}
},
"__experimentalStyle": {
"typography": {
"fontSize": "1.5em",
"lineHeight": "1.6"
}
},
"interactivity": {
"clientNavigation": true
}
},
"editorStyle": "wp-block-pullquote-editor",
"style": "wp-block-pullquote"
}
pullquote/style-rtl.css 0000644 00000004033 15246340743 0011257 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.wp-block-pullquote {
text-align: center;
overflow-wrap: break-word;
box-sizing: border-box;
margin: 0 0 1em 0;
padding: 4em 0;
}
.wp-block-pullquote p,
.wp-block-pullquote blockquote {
color: inherit;
}
.wp-block-pullquote blockquote {
margin: 0;
}
.wp-block-pullquote p {
margin-top: 0;
}
.wp-block-pullquote p:last-child {
margin-bottom: 0;
}
.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
max-width: 420px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
position: relative;
}
.wp-block-pullquote .has-text-color a {
color: inherit;
}
.wp-block-pullquote.has-text-align-left blockquote {
text-align: right;
}
.wp-block-pullquote.has-text-align-right blockquote {
text-align: left;
}
.wp-block-pullquote.has-text-align-center blockquote {
text-align: center;
}
.wp-block-pullquote.is-style-solid-color {
border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
margin-right: auto;
margin-left: auto;
max-width: 60%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
margin-top: 0;
margin-bottom: 0;
font-size: 2em;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
text-transform: none;
font-style: normal;
}
.wp-block-pullquote :where(cite) {
color: inherit;
display: block;
} pullquote/theme.min.css 0000644 00000000433 15246340743 0011204 0 ustar 00 .wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote :where(cite),.wp-block-pullquote :where(footer),.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase} pullquote/theme-rtl.css 0000644 00000000537 15246340743 0011226 0 ustar 00 .wp-block-pullquote {
border-top: 4px solid currentColor;
border-bottom: 4px solid currentColor;
margin-bottom: 1.75em;
color: currentColor;
}
.wp-block-pullquote :where(cite),
.wp-block-pullquote :where(footer), .wp-block-pullquote__citation {
color: currentColor;
text-transform: uppercase;
font-size: 0.8125em;
font-style: normal;
} pullquote/style.min.css 0000644 00000002136 15246340743 0011244 0 ustar 00 .wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.has-text-align-center blockquote{text-align:center}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote :where(cite){color:inherit;display:block} pullquote/editor-rtl.min.css 0000644 00000000336 15246340743 0012171 0 ustar 00 .wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote__citation{color:inherit} pullquote/style.css 0000644 00000004033 15246340743 0010460 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.wp-block-pullquote {
text-align: center;
overflow-wrap: break-word;
box-sizing: border-box;
margin: 0 0 1em 0;
padding: 4em 0;
}
.wp-block-pullquote p,
.wp-block-pullquote blockquote {
color: inherit;
}
.wp-block-pullquote blockquote {
margin: 0;
}
.wp-block-pullquote p {
margin-top: 0;
}
.wp-block-pullquote p:last-child {
margin-bottom: 0;
}
.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
max-width: 420px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
position: relative;
}
.wp-block-pullquote .has-text-color a {
color: inherit;
}
.wp-block-pullquote.has-text-align-left blockquote {
text-align: left;
}
.wp-block-pullquote.has-text-align-right blockquote {
text-align: right;
}
.wp-block-pullquote.has-text-align-center blockquote {
text-align: center;
}
.wp-block-pullquote.is-style-solid-color {
border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
margin-left: auto;
margin-right: auto;
max-width: 60%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
margin-top: 0;
margin-bottom: 0;
font-size: 2em;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
text-transform: none;
font-style: normal;
}
.wp-block-pullquote :where(cite) {
color: inherit;
display: block;
} pullquote/style-rtl.min.css 0000644 00000002136 15246340743 0012043 0 ustar 00 .wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:right}.wp-block-pullquote.has-text-align-right blockquote{text-align:left}.wp-block-pullquote.has-text-align-center blockquote{text-align:center}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote :where(cite){color:inherit;display:block} pullquote/editor-rtl.css 0000644 00000000372 15246340743 0011407 0 ustar 00 .wp-block-pullquote.is-style-solid-color blockquote p {
font-size: 32px;
}
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
text-transform: none;
font-style: normal;
}
.wp-block-pullquote__citation {
color: inherit;
} pullquote/editor.css 0000644 00000000372 15246340743 0010610 0 ustar 00 .wp-block-pullquote.is-style-solid-color blockquote p {
font-size: 32px;
}
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
text-transform: none;
font-style: normal;
}
.wp-block-pullquote__citation {
color: inherit;
} template-part/theme-rtl.min.css 0000644 00000000151 15246340743 0012525 0 ustar 00 :root :where(.wp-block-template-part.has-background){margin-bottom:0;margin-top:0;padding:1.25em 2.375em} template-part/theme.css 0000644 00000001604 15246340743 0011150 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
:root :where(.wp-block-template-part.has-background) {
padding: 1.25em 2.375em;
margin-top: 0;
margin-bottom: 0;
} template-part/editor.min.css 0000644 00000002654 15246340743 0012124 0 ustar 00 .block-editor-template-part__selection-modal{z-index:1000001}.block-editor-template-part__selection-modal .block-editor-block-patterns-list{-moz-column-count:2;column-count:2;-moz-column-gap:24px;column-gap:24px}@media (min-width:1280px){.block-editor-template-part__selection-modal .block-editor-block-patterns-list{-moz-column-count:3;column-count:3}}.block-editor-template-part__selection-modal .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{-moz-column-break-inside:avoid;break-inside:avoid-column}.block-library-template-part__selection-search{background:#fff;padding:16px 0;position:sticky;top:0;z-index:2}.block-editor-block-list__block:not(.remove-outline).is-reusable.block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__block:not(.remove-outline).is-reusable.is-highlighted:after,.block-editor-block-list__block:not(.remove-outline).is-reusable.is-selected:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-highlighted:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-selected:after{outline-color:var(--wp-block-synced-color)}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.has-editable-outline:after{border:none} template-part/block.json 0000644 00000001240 15246340743 0011315 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/template-part",
"title": "Template Part",
"category": "theme",
"description": "Edit the different global regions of your site, like the header, footer, sidebar, or create your own.",
"textdomain": "default",
"attributes": {
"slug": {
"type": "string"
},
"theme": {
"type": "string"
},
"tagName": {
"type": "string"
},
"area": {
"type": "string"
}
},
"supports": {
"align": true,
"html": false,
"reusable": false,
"renaming": false,
"interactivity": {
"clientNavigation": true
}
},
"editorStyle": "wp-block-template-part-editor"
}
template-part/theme.min.css 0000644 00000000151 15246340743 0011726 0 ustar 00 :root :where(.wp-block-template-part.has-background){margin-bottom:0;margin-top:0;padding:1.25em 2.375em} template-part/theme-rtl.css 0000644 00000001604 15246340743 0011747 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
:root :where(.wp-block-template-part.has-background) {
padding: 1.25em 2.375em;
margin-top: 0;
margin-bottom: 0;
} template-part/editor-rtl.min.css 0000644 00000002654 15246340743 0012723 0 ustar 00 .block-editor-template-part__selection-modal{z-index:1000001}.block-editor-template-part__selection-modal .block-editor-block-patterns-list{-moz-column-count:2;column-count:2;-moz-column-gap:24px;column-gap:24px}@media (min-width:1280px){.block-editor-template-part__selection-modal .block-editor-block-patterns-list{-moz-column-count:3;column-count:3}}.block-editor-template-part__selection-modal .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{-moz-column-break-inside:avoid;break-inside:avoid-column}.block-library-template-part__selection-search{background:#fff;padding:16px 0;position:sticky;top:0;z-index:2}.block-editor-block-list__block:not(.remove-outline).is-reusable.block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__block:not(.remove-outline).is-reusable.is-highlighted:after,.block-editor-block-list__block:not(.remove-outline).is-reusable.is-selected:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-highlighted:after,.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-selected:after{outline-color:var(--wp-block-synced-color)}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.has-editable-outline:after{border:none} template-part/editor-rtl.css 0000644 00000006776 15246340743 0012152 0 ustar 00 /**
* Colors
*/
/**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.block-editor-template-part__selection-modal {
z-index: 1000001;
}
.block-editor-template-part__selection-modal .block-editor-block-patterns-list {
-moz-column-count: 2;
column-count: 2;
-moz-column-gap: 24px;
column-gap: 24px;
}
@media (min-width: 1280px) {
.block-editor-template-part__selection-modal .block-editor-block-patterns-list {
-moz-column-count: 3;
column-count: 3;
}
}
.block-editor-template-part__selection-modal .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
-moz-column-break-inside: avoid;
break-inside: avoid-column;
}
.block-library-template-part__selection-search {
background: #fff;
position: sticky;
top: 0;
padding: 16px 0;
z-index: 2;
}
.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-highlighted::after, .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-selected::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.is-highlighted::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.is-selected::after {
outline-color: var(--wp-block-synced-color);
}
.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.block-editor-block-list__block:not([contenteditable]):focus::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.block-editor-block-list__block:not([contenteditable]):focus::after {
outline-color: var(--wp-block-synced-color);
}
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.has-editable-outline::after {
border: none;
} template-part/editor.css 0000644 00000006776 15246340743 0011353 0 ustar 00 /**
* Colors
*/
/**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.block-editor-template-part__selection-modal {
z-index: 1000001;
}
.block-editor-template-part__selection-modal .block-editor-block-patterns-list {
-moz-column-count: 2;
column-count: 2;
-moz-column-gap: 24px;
column-gap: 24px;
}
@media (min-width: 1280px) {
.block-editor-template-part__selection-modal .block-editor-block-patterns-list {
-moz-column-count: 3;
column-count: 3;
}
}
.block-editor-template-part__selection-modal .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
-moz-column-break-inside: avoid;
break-inside: avoid-column;
}
.block-library-template-part__selection-search {
background: #fff;
position: sticky;
top: 0;
padding: 16px 0;
z-index: 2;
}
.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-highlighted::after, .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.is-selected::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.is-highlighted::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.is-selected::after {
outline-color: var(--wp-block-synced-color);
}
.block-editor-block-list__block:not(.remove-outline).wp-block-template-part.block-editor-block-list__block:not([contenteditable]):focus::after,
.block-editor-block-list__block:not(.remove-outline).is-reusable.block-editor-block-list__block:not([contenteditable]):focus::after {
outline-color: var(--wp-block-synced-color);
}
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).wp-block-template-part.has-editable-outline::after {
border: none;
} legacy-widget.php 0000644 00000007653 15246340743 0010025 0 ustar 00 get_widget_key( $id_base );
$widget_object = $wp_widget_factory->get_widget_object( $id_base );
if ( ! $widget_key || ! $widget_object ) {
return '';
}
if ( isset( $attributes['instance']['encoded'], $attributes['instance']['hash'] ) ) {
$serialized_instance = base64_decode( $attributes['instance']['encoded'] );
if ( ! hash_equals( wp_hash( $serialized_instance ), (string) $attributes['instance']['hash'] ) ) {
return '';
}
$instance = unserialize( $serialized_instance );
} else {
$instance = array();
}
$args = array(
'widget_id' => $widget_object->id,
'widget_name' => $widget_object->name,
);
ob_start();
the_widget( $widget_key, $instance, $args );
return ob_get_clean();
}
/**
* Registers the 'core/legacy-widget' block.
*
* @since 5.8.0
*/
function register_block_core_legacy_widget() {
register_block_type_from_metadata(
__DIR__ . '/legacy-widget',
array(
'render_callback' => 'render_block_core_legacy_widget',
)
);
}
add_action( 'init', 'register_block_core_legacy_widget' );
/**
* Intercepts any request with legacy-widget-preview in the query param and, if
* set, renders a page containing a preview of the requested Legacy Widget
* block.
*
* @since 5.8.0
*/
function handle_legacy_widget_preview_iframe() {
if ( empty( $_GET['legacy-widget-preview'] ) ) {
return;
}
if ( ! current_user_can( 'edit_theme_options' ) ) {
return;
}
define( 'IFRAME_REQUEST', true );
?>
>
>
';
}
/**
* Registers the `core/post-author` block on the server.
*
* @since 5.9.0
*/
function register_block_core_post_author() {
register_block_type_from_metadata(
__DIR__ . '/post-author',
array(
'render_callback' => 'render_block_core_post_author',
)
);
}
add_action( 'init', 'register_block_core_post_author' );
comments-title.php 0000644 00000005343 15246340743 0010236 0 ustar 00 $align_class_name ) );
$comments_count = get_comments_number();
$post_title = get_the_title();
$tag_name = 'h2';
if ( isset( $attributes['level'] ) ) {
$tag_name = 'h' . $attributes['level'];
}
if ( '0' === $comments_count ) {
return;
}
if ( $show_comments_count ) {
if ( $show_post_title ) {
if ( '1' === $comments_count ) {
/* translators: %s: Post title. */
$comments_title = sprintf( __( 'One response to “%s”' ), $post_title );
} else {
$comments_title = sprintf(
/* translators: 1: Number of comments, 2: Post title. */
_n(
'%1$s response to “%2$s”',
'%1$s responses to “%2$s”',
$comments_count
),
number_format_i18n( $comments_count ),
$post_title
);
}
} elseif ( '1' === $comments_count ) {
$comments_title = __( 'One response' );
} else {
$comments_title = sprintf(
/* translators: %s: Number of comments. */
_n( '%s response', '%s responses', $comments_count ),
number_format_i18n( $comments_count )
);
}
} elseif ( $show_post_title ) {
if ( '1' === $comments_count ) {
/* translators: %s: Post title. */
$comments_title = sprintf( __( 'Response to “%s”' ), $post_title );
} else {
/* translators: %s: Post title. */
$comments_title = sprintf( __( 'Responses to “%s”' ), $post_title );
}
} elseif ( '1' === $comments_count ) {
$comments_title = __( 'Response' );
} else {
$comments_title = __( 'Responses' );
}
return sprintf(
'<%1$s id="comments" %2$s>%3$s%1$s>',
$tag_name,
$wrapper_attributes,
$comments_title
);
}
/**
* Registers the `core/comments-title` block on the server.
*
* @since 6.0.0
*/
function register_block_core_comments_title() {
register_block_type_from_metadata(
__DIR__ . '/comments-title',
array(
'render_callback' => 'render_block_core_comments_title',
)
);
}
add_action( 'init', 'register_block_core_comments_title' );
image/theme-rtl.min.css 0000644 00000000306 15246340743 0011032 0 ustar 00 :root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:hsla(0,0%,100%,.65)}.wp-block-image{margin:0 0 1em} image/theme.css 0000644 00000004204 15246340743 0007452 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
:root :where(.wp-block-image figcaption) {
color: #555;
font-size: 13px;
text-align: center;
}
.is-dark-theme :root :where(.wp-block-image figcaption) {
color: rgba(255, 255, 255, 0.65);
}
.wp-block-image {
margin: 0 0 1em 0;
} image/editor.min.css 0000644 00000005062 15246340743 0010423 0 ustar 00 .wp-block-image.wp-block-image .block-editor-media-placeholder.is-small{min-height:60px}figure.wp-block-image:not(.wp-block){margin:0}.wp-block-image{position:relative}.wp-block-image.is-transient:not(.alignwide):not(.alignfull),.wp-block-image:has(img.is-swapping-media):not(.alignwide):not(.alignfull){width:-moz-fit-content;width:fit-content}.wp-block-image .is-applying img,.wp-block-image img.is-swapping-media,.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%)}.wp-block-image__placeholder{aspect-ratio:4/3}.wp-block-image__placeholder.has-illustration:before{background:#fff;opacity:.8}.wp-block-image__placeholder .components-placeholder__illustration{opacity:.1}.wp-block-image.is-selected .block-editor-media-placeholder{filter:none!important}.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{margin:-1px}}[data-align=full]>.wp-block-image img,[data-align=wide]>.wp-block-image img{height:auto;width:100%}.wp-block[data-align=center]>.wp-block-image,.wp-block[data-align=left]>.wp-block-image,.wp-block[data-align=right]>.wp-block-image{display:table}.wp-block[data-align=center]>.wp-block-image>figcaption,.wp-block[data-align=left]>.wp-block-image>figcaption,.wp-block[data-align=right]>.wp-block-image>figcaption{caption-side:bottom;display:table-caption}.wp-block[data-align=left]>.wp-block-image{margin:.5em 1em .5em 0}.wp-block[data-align=right]>.wp-block-image{margin:.5em 0 .5em 1em}.wp-block[data-align=center]>.wp-block-image{margin-left:auto;margin-right:auto;text-align:center}.wp-block[data-align]:has(>.wp-block-image){position:relative}.wp-block-image__crop-area{max-width:100%;overflow:hidden;position:relative;width:100%}.wp-block-image__crop-area .reactEasyCrop_Container{pointer-events:auto}.wp-block-image__crop-area .reactEasyCrop_Container .reactEasyCrop_Image{border:none;border-radius:0}.wp-block-image__crop-icon{align-items:center;display:flex;justify-content:center;min-width:48px;padding:0 8px}.wp-block-image__crop-icon svg{fill:currentColor}.wp-block-image__zoom .components-popover__content{min-width:260px;overflow:visible!important}.wp-block-image__toolbar_content_textarea__container{padding:8px}.wp-block-image__toolbar_content_textarea{width:250px} image/block.json 0000644 00000006217 15246340743 0007631 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/image",
"title": "Image",
"category": "media",
"usesContext": [
"allowResize",
"imageCrop",
"fixedHeight",
"navigationButtonType",
"postId",
"postType",
"queryId",
"galleryId"
],
"description": "Insert an image to make a visual statement.",
"keywords": [ "img", "photo", "picture" ],
"textdomain": "default",
"attributes": {
"blob": {
"type": "string",
"role": "local"
},
"url": {
"type": "string",
"source": "attribute",
"selector": "img",
"attribute": "src",
"role": "content"
},
"alt": {
"type": "string",
"source": "attribute",
"selector": "img",
"attribute": "alt",
"default": "",
"role": "content"
},
"caption": {
"type": "rich-text",
"source": "rich-text",
"selector": "figcaption",
"role": "content"
},
"lightbox": {
"type": "object",
"enabled": {
"type": "boolean"
}
},
"title": {
"type": "string",
"source": "attribute",
"selector": "img",
"attribute": "title",
"role": "content"
},
"href": {
"type": "string",
"source": "attribute",
"selector": "figure > a",
"attribute": "href",
"role": "content"
},
"rel": {
"type": "string",
"source": "attribute",
"selector": "figure > a",
"attribute": "rel"
},
"linkClass": {
"type": "string",
"source": "attribute",
"selector": "figure > a",
"attribute": "class"
},
"id": {
"type": "number",
"role": "content"
},
"width": {
"type": "string"
},
"height": {
"type": "string"
},
"aspectRatio": {
"type": "string"
},
"scale": {
"type": "string"
},
"focalPoint": {
"type": "object"
},
"sizeSlug": {
"type": "string"
},
"linkDestination": {
"type": "string"
},
"linkTarget": {
"type": "string",
"source": "attribute",
"selector": "figure > a",
"attribute": "target"
},
"isDecorative": {
"type": "boolean",
"default": false
}
},
"supports": {
"interactivity": true,
"align": [ "left", "center", "right", "wide", "full" ],
"anchor": true,
"color": {
"text": false,
"background": false
},
"filter": {
"duotone": true
},
"spacing": {
"margin": true
},
"__experimentalBorder": {
"color": true,
"radius": true,
"width": true,
"__experimentalSkipSerialization": true,
"__experimentalDefaultControls": {
"color": true,
"radius": true,
"width": true
}
},
"shadow": {
"__experimentalSkipSerialization": true
}
},
"selectors": {
"dimensions": ".wp-block-image img, .wp-block-image .components-placeholder",
"border": ".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",
"shadow": ".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",
"filter": {
"duotone": ".wp-block-image img, .wp-block-image .components-placeholder"
}
},
"styles": [
{
"name": "default",
"label": "Default",
"isDefault": true
},
{ "name": "rounded", "label": "Rounded" }
],
"editorStyle": "wp-block-image-editor",
"style": "wp-block-image"
}
image/style-rtl.css 0000644 00000030300 15246340743 0010303 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.wp-block-image > a,
.wp-block-image > figure > a {
display: inline-block;
}
.wp-block-image img {
height: auto;
max-width: 100%;
vertical-align: bottom;
box-sizing: border-box;
}
@media not (prefers-reduced-motion) {
.wp-block-image img.hide {
visibility: hidden;
}
.wp-block-image img.show {
animation: show-content-image 0.4s;
}
}
.wp-block-image[style*=border-radius] > a,
.wp-block-image[style*=border-radius] img {
border-radius: inherit;
}
.wp-block-image.has-custom-border img {
box-sizing: border-box;
}
.wp-block-image.aligncenter {
text-align: center;
}
.wp-block-image.alignfull > a, .wp-block-image.alignwide > a {
width: 100%;
}
.wp-block-image.alignfull img, .wp-block-image.alignwide img {
height: auto;
width: 100%;
}
.wp-block-image.alignleft, .wp-block-image.alignright, .wp-block-image.aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .aligncenter {
display: table;
}
.wp-block-image.alignleft > figcaption, .wp-block-image.alignright > figcaption, .wp-block-image.aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .aligncenter > figcaption {
display: table-caption;
caption-side: bottom;
}
.wp-block-image .alignleft {
float: left;
margin-left: 0;
margin-right: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block-image .alignright {
float: right;
margin-right: 0;
margin-left: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block-image .aligncenter {
margin-right: auto;
margin-left: auto;
}
.wp-block-image :where(figcaption) {
margin-top: 0.5em;
margin-bottom: 1em;
}
.wp-block-image.is-style-circle-mask img {
border-radius: 9999px;
}
@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
.wp-block-image.is-style-circle-mask img {
-webkit-mask-image: url('data:image/svg+xml;utf8,');
mask-image: url('data:image/svg+xml;utf8,');
mask-mode: alpha;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center;
mask-position: center;
border-radius: 0;
}
}
:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
border-radius: 9999px;
}
.wp-block-image figure {
margin: 0;
}
.wp-lightbox-container {
position: relative;
display: flex;
flex-direction: column;
}
.wp-lightbox-container img {
cursor: zoom-in;
}
.wp-lightbox-container img:hover + button {
opacity: 1;
}
.wp-lightbox-container button {
opacity: 0;
border: none;
background-color: rgba(90, 90, 90, 0.25);
backdrop-filter: blur(16px) saturate(180%);
cursor: zoom-in;
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
position: absolute;
z-index: 100;
top: 16px;
left: 16px;
text-align: center;
padding: 0;
border-radius: 4px;
}
@media not (prefers-reduced-motion) {
.wp-lightbox-container button {
transition: opacity 0.2s ease;
}
}
.wp-lightbox-container button:focus-visible {
outline: 3px auto rgba(90, 90, 90, 0.25);
outline: 3px auto -webkit-focus-ring-color;
outline-offset: 3px;
}
.wp-lightbox-container button:hover {
cursor: pointer;
opacity: 1;
}
.wp-lightbox-container button:focus {
opacity: 1;
}
.wp-lightbox-container button:hover, .wp-lightbox-container button:focus, .wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
background-color: rgba(90, 90, 90, 0.25);
border: none;
}
.wp-lightbox-overlay {
position: fixed;
top: 0;
right: 0;
z-index: 100000;
overflow: hidden;
width: 100%;
height: 100vh;
box-sizing: border-box;
visibility: hidden;
cursor: zoom-out;
}
.wp-lightbox-overlay .wp-lightbox-close-button {
font-family: inherit;
position: absolute;
top: calc(env(safe-area-inset-top) + 16px);
left: calc(env(safe-area-inset-left) + 16px);
padding: 0 4px;
cursor: pointer;
z-index: 5000000;
min-width: 40px;
min-height: 40px;
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
line-height: 1;
}
.wp-lightbox-overlay .wp-lightbox-close-button:hover, .wp-lightbox-overlay .wp-lightbox-close-button:focus, .wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background) {
background: none;
border: none;
}
.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg {
height: 1em;
width: 1em;
}
.wp-lightbox-overlay .wp-lightbox-close-icon svg {
display: block;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
position: absolute;
padding: 0 8px;
z-index: 2000002;
font-family: inherit;
min-width: 40px;
min-height: 40px;
gap: 4px;
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
bottom: 16px;
line-height: 1;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden],
.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden] {
display: none;
}
@media (min-width: 960px) {
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
bottom: 50%;
transform: translateY(-50%);
}
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover, .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus, .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background),
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background) {
background: none;
border: none;
padding: 0 8px;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg {
width: 1.5em;
height: 1.5em;
display: block;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev {
right: calc(env(safe-area-inset-right) + 16px);
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
left: calc(env(safe-area-inset-left) + 16px);
}
.wp-lightbox-overlay .wp-lightbox-navigation-icon svg {
vertical-align: middle;
}
.wp-lightbox-overlay .lightbox-image-container {
position: absolute;
overflow: hidden;
top: 50%;
right: 50%;
transform-origin: top right;
transform: translate(50%, -50%);
width: var(--wp--lightbox-container-width);
height: var(--wp--lightbox-container-height);
z-index: 2000001;
}
.wp-lightbox-overlay .wp-block-image {
position: relative;
transform-origin: 100% 0;
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
box-sizing: border-box;
z-index: 3000000;
margin: 0;
}
.wp-lightbox-overlay .wp-block-image img {
min-width: var(--wp--lightbox-image-width);
min-height: var(--wp--lightbox-image-height);
width: var(--wp--lightbox-image-width);
height: var(--wp--lightbox-image-height);
}
.wp-lightbox-overlay .wp-block-image figcaption {
display: none;
}
.wp-lightbox-overlay button {
border: none;
background: none;
}
.wp-lightbox-overlay .scrim {
width: 100%;
height: 100%;
position: absolute;
z-index: 2000000;
background-color: rgb(255, 255, 255);
opacity: 0.9;
}
.wp-lightbox-overlay.active {
visibility: visible;
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.active {
animation: both turn-on-visibility 0.25s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.active img {
animation: both turn-on-visibility 0.35s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.show-closing-animation:not(.active) {
animation: both turn-off-visibility 0.35s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.show-closing-animation:not(.active) img {
animation: both turn-off-visibility 0.25s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.zoom.active {
opacity: 1;
visibility: visible;
animation: none;
}
.wp-lightbox-overlay.zoom.active .lightbox-image-container {
animation: lightbox-zoom-in 0.4s;
}
.wp-lightbox-overlay.zoom.active .lightbox-image-container img {
animation: none;
}
.wp-lightbox-overlay.zoom.active .scrim {
animation: turn-on-visibility 0.4s forwards;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) {
animation: none;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container {
animation: lightbox-zoom-out 0.4s;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img {
animation: none;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim {
animation: turn-off-visibility 0.4s forwards;
}
}
@keyframes show-content-image {
0% {
visibility: hidden;
}
99% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
@keyframes turn-on-visibility {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes turn-off-visibility {
0% {
opacity: 1;
visibility: visible;
}
99% {
opacity: 0;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}
@keyframes lightbox-zoom-in {
0% {
transform: translate(calc(-1*((-100vw + var(--wp--lightbox-scrollbar-width)) / 2 + var(--wp--lightbox-initial-left-position))), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
}
100% {
transform: translate(50%, -50%) scale(1, 1);
}
}
@keyframes lightbox-zoom-out {
0% {
visibility: visible;
transform: translate(50%, -50%) scale(1, 1);
}
99% {
visibility: visible;
}
100% {
visibility: hidden;
transform: translate(calc(-1*((-100vw + var(--wp--lightbox-scrollbar-width)) / 2 + var(--wp--lightbox-initial-left-position))), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
}
} image/theme.min.css 0000644 00000000306 15246340743 0010233 0 ustar 00 :root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:hsla(0,0%,100%,.65)}.wp-block-image{margin:0 0 1em} image/theme-rtl.css 0000644 00000004204 15246340743 0010251 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
:root :where(.wp-block-image figcaption) {
color: #555;
font-size: 13px;
text-align: center;
}
.is-dark-theme :root :where(.wp-block-image figcaption) {
color: rgba(255, 255, 255, 0.65);
}
.wp-block-image {
margin: 0 0 1em 0;
} image/style.min.css 0000644 00000021153 15246340743 0010274 0 ustar 00 .wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:rgba(90,90,90,.25);border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto rgba(90,90,90,.25);outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:rgba(90,90,90,.25);border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}} image/editor-rtl.min.css 0000644 00000005062 15246340743 0011222 0 ustar 00 .wp-block-image.wp-block-image .block-editor-media-placeholder.is-small{min-height:60px}figure.wp-block-image:not(.wp-block){margin:0}.wp-block-image{position:relative}.wp-block-image.is-transient:not(.alignwide):not(.alignfull),.wp-block-image:has(img.is-swapping-media):not(.alignwide):not(.alignfull){width:-moz-fit-content;width:fit-content}.wp-block-image .is-applying img,.wp-block-image img.is-swapping-media,.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{margin:0;position:absolute;right:50%;top:50%;transform:translate(50%,-50%)}.wp-block-image__placeholder{aspect-ratio:4/3}.wp-block-image__placeholder.has-illustration:before{background:#fff;opacity:.8}.wp-block-image__placeholder .components-placeholder__illustration{opacity:.1}.wp-block-image.is-selected .block-editor-media-placeholder{filter:none!important}.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{margin:-1px}}[data-align=full]>.wp-block-image img,[data-align=wide]>.wp-block-image img{height:auto;width:100%}.wp-block[data-align=center]>.wp-block-image,.wp-block[data-align=left]>.wp-block-image,.wp-block[data-align=right]>.wp-block-image{display:table}.wp-block[data-align=center]>.wp-block-image>figcaption,.wp-block[data-align=left]>.wp-block-image>figcaption,.wp-block[data-align=right]>.wp-block-image>figcaption{caption-side:bottom;display:table-caption}.wp-block[data-align=left]>.wp-block-image{margin:.5em 0 .5em 1em}.wp-block[data-align=right]>.wp-block-image{margin:.5em 1em .5em 0}.wp-block[data-align=center]>.wp-block-image{margin-left:auto;margin-right:auto;text-align:center}.wp-block[data-align]:has(>.wp-block-image){position:relative}.wp-block-image__crop-area{max-width:100%;overflow:hidden;position:relative;width:100%}.wp-block-image__crop-area .reactEasyCrop_Container{pointer-events:auto}.wp-block-image__crop-area .reactEasyCrop_Container .reactEasyCrop_Image{border:none;border-radius:0}.wp-block-image__crop-icon{align-items:center;display:flex;justify-content:center;min-width:48px;padding:0 8px}.wp-block-image__crop-icon svg{fill:currentColor}.wp-block-image__zoom .components-popover__content{min-width:260px;overflow:visible!important}.wp-block-image__toolbar_content_textarea__container{padding:8px}.wp-block-image__toolbar_content_textarea{width:250px} image/style.css 0000644 00000030434 15246340743 0007514 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.wp-block-image > a,
.wp-block-image > figure > a {
display: inline-block;
}
.wp-block-image img {
height: auto;
max-width: 100%;
vertical-align: bottom;
box-sizing: border-box;
}
@media not (prefers-reduced-motion) {
.wp-block-image img.hide {
visibility: hidden;
}
.wp-block-image img.show {
animation: show-content-image 0.4s;
}
}
.wp-block-image[style*=border-radius] > a,
.wp-block-image[style*=border-radius] img {
border-radius: inherit;
}
.wp-block-image.has-custom-border img {
box-sizing: border-box;
}
.wp-block-image.aligncenter {
text-align: center;
}
.wp-block-image.alignfull > a, .wp-block-image.alignwide > a {
width: 100%;
}
.wp-block-image.alignfull img, .wp-block-image.alignwide img {
height: auto;
width: 100%;
}
.wp-block-image.alignleft, .wp-block-image.alignright, .wp-block-image.aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .aligncenter {
display: table;
}
.wp-block-image.alignleft > figcaption, .wp-block-image.alignright > figcaption, .wp-block-image.aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .aligncenter > figcaption {
display: table-caption;
caption-side: bottom;
}
.wp-block-image .alignleft {
/*rtl:ignore*/
float: left;
/*rtl:ignore*/
margin-left: 0;
/*rtl:ignore*/
margin-right: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block-image .alignright {
/*rtl:ignore*/
float: right;
/*rtl:ignore*/
margin-right: 0;
/*rtl:ignore*/
margin-left: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block-image .aligncenter {
margin-left: auto;
margin-right: auto;
}
.wp-block-image :where(figcaption) {
margin-top: 0.5em;
margin-bottom: 1em;
}
.wp-block-image.is-style-circle-mask img {
border-radius: 9999px;
}
@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
.wp-block-image.is-style-circle-mask img {
-webkit-mask-image: url('data:image/svg+xml;utf8,');
mask-image: url('data:image/svg+xml;utf8,');
mask-mode: alpha;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center;
mask-position: center;
border-radius: 0;
}
}
:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
border-radius: 9999px;
}
.wp-block-image figure {
margin: 0;
}
.wp-lightbox-container {
position: relative;
display: flex;
flex-direction: column;
}
.wp-lightbox-container img {
cursor: zoom-in;
}
.wp-lightbox-container img:hover + button {
opacity: 1;
}
.wp-lightbox-container button {
opacity: 0;
border: none;
background-color: rgba(90, 90, 90, 0.25);
backdrop-filter: blur(16px) saturate(180%);
cursor: zoom-in;
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
position: absolute;
z-index: 100;
top: 16px;
right: 16px;
text-align: center;
padding: 0;
border-radius: 4px;
}
@media not (prefers-reduced-motion) {
.wp-lightbox-container button {
transition: opacity 0.2s ease;
}
}
.wp-lightbox-container button:focus-visible {
outline: 3px auto rgba(90, 90, 90, 0.25);
outline: 3px auto -webkit-focus-ring-color;
outline-offset: 3px;
}
.wp-lightbox-container button:hover {
cursor: pointer;
opacity: 1;
}
.wp-lightbox-container button:focus {
opacity: 1;
}
.wp-lightbox-container button:hover, .wp-lightbox-container button:focus, .wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
background-color: rgba(90, 90, 90, 0.25);
border: none;
}
.wp-lightbox-overlay {
position: fixed;
top: 0;
left: 0;
z-index: 100000;
overflow: hidden;
width: 100%;
height: 100vh;
box-sizing: border-box;
visibility: hidden;
cursor: zoom-out;
}
.wp-lightbox-overlay .wp-lightbox-close-button {
font-family: inherit;
position: absolute;
top: calc(env(safe-area-inset-top) + 16px);
right: calc(env(safe-area-inset-right) + 16px);
padding: 0 4px;
cursor: pointer;
z-index: 5000000;
min-width: 40px;
min-height: 40px;
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
line-height: 1;
}
.wp-lightbox-overlay .wp-lightbox-close-button:hover, .wp-lightbox-overlay .wp-lightbox-close-button:focus, .wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background) {
background: none;
border: none;
}
.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg {
height: 1em;
width: 1em;
}
.wp-lightbox-overlay .wp-lightbox-close-icon svg {
display: block;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
position: absolute;
padding: 0 8px;
z-index: 2000002;
font-family: inherit;
min-width: 40px;
min-height: 40px;
gap: 4px;
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
bottom: 16px;
line-height: 1;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden],
.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden] {
display: none;
}
@media (min-width: 960px) {
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
bottom: 50%;
transform: translateY(-50%);
}
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover, .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus, .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background),
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background) {
background: none;
border: none;
padding: 0 8px;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,
.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg {
width: 1.5em;
height: 1.5em;
display: block;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-prev {
left: calc(env(safe-area-inset-left) + 16px);
}
.wp-lightbox-overlay .wp-lightbox-navigation-button-next {
right: calc(env(safe-area-inset-right) + 16px);
}
.wp-lightbox-overlay .wp-lightbox-navigation-icon svg {
vertical-align: middle;
}
.wp-lightbox-overlay .lightbox-image-container {
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
transform-origin: top left;
transform: translate(-50%, -50%);
width: var(--wp--lightbox-container-width);
height: var(--wp--lightbox-container-height);
z-index: 2000001;
}
.wp-lightbox-overlay .wp-block-image {
position: relative;
transform-origin: 0 0;
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
box-sizing: border-box;
z-index: 3000000;
margin: 0;
}
.wp-lightbox-overlay .wp-block-image img {
min-width: var(--wp--lightbox-image-width);
min-height: var(--wp--lightbox-image-height);
width: var(--wp--lightbox-image-width);
height: var(--wp--lightbox-image-height);
}
.wp-lightbox-overlay .wp-block-image figcaption {
display: none;
}
.wp-lightbox-overlay button {
border: none;
background: none;
}
.wp-lightbox-overlay .scrim {
width: 100%;
height: 100%;
position: absolute;
z-index: 2000000;
background-color: rgb(255, 255, 255);
opacity: 0.9;
}
.wp-lightbox-overlay.active {
visibility: visible;
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.active {
animation: both turn-on-visibility 0.25s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.active img {
animation: both turn-on-visibility 0.35s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.show-closing-animation:not(.active) {
animation: both turn-off-visibility 0.35s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.show-closing-animation:not(.active) img {
animation: both turn-off-visibility 0.25s;
}
}
@media not (prefers-reduced-motion) {
.wp-lightbox-overlay.zoom.active {
opacity: 1;
visibility: visible;
animation: none;
}
.wp-lightbox-overlay.zoom.active .lightbox-image-container {
animation: lightbox-zoom-in 0.4s;
}
.wp-lightbox-overlay.zoom.active .lightbox-image-container img {
animation: none;
}
.wp-lightbox-overlay.zoom.active .scrim {
animation: turn-on-visibility 0.4s forwards;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) {
animation: none;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container {
animation: lightbox-zoom-out 0.4s;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img {
animation: none;
}
.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim {
animation: turn-off-visibility 0.4s forwards;
}
}
@keyframes show-content-image {
0% {
visibility: hidden;
}
99% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
@keyframes turn-on-visibility {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes turn-off-visibility {
0% {
opacity: 1;
visibility: visible;
}
99% {
opacity: 0;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}
@keyframes lightbox-zoom-in {
0% {
transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width)) / 2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
}
100% {
transform: translate(-50%, -50%) scale(1, 1);
}
}
@keyframes lightbox-zoom-out {
0% {
visibility: visible;
transform: translate(-50%, -50%) scale(1, 1);
}
99% {
visibility: visible;
}
100% {
visibility: hidden;
transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width)) / 2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
}
} image/style-rtl.min.css 0000644 00000021165 15246340743 0011076 0 ustar 00 .wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:rgba(90,90,90,.25);border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;left:16px;opacity:0;padding:0;position:absolute;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto rgba(90,90,90,.25);outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:rgba(90,90,90,.25);border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;left:calc(env(safe-area-inset-left) + 16px);line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);overflow:hidden;position:absolute;right:50%;top:50%;transform:translate(50%,-50%);transform-origin:top right;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:100% 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc(((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position))*-1),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc(((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position))*-1),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}} image/editor-rtl.css 0000644 00000011667 15246340743 0010450 0 ustar 00 /**
* Colors
*/
/**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.wp-block-image.wp-block-image .block-editor-media-placeholder.is-small {
min-height: 60px;
}
figure.wp-block-image:not(.wp-block) {
margin: 0;
}
.wp-block-image {
position: relative;
}
.wp-block-image.is-transient:not(.alignwide):not(.alignfull), .wp-block-image:has(img.is-swapping-media):not(.alignwide):not(.alignfull) {
width: -moz-fit-content;
width: fit-content;
}
.wp-block-image .is-applying img, .wp-block-image.is-transient img,
.wp-block-image img.is-swapping-media {
opacity: 0.3;
}
.wp-block-image figcaption img {
display: inline;
}
.wp-block-image .components-spinner {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
margin: 0;
}
.wp-block-image__placeholder {
aspect-ratio: 4/3;
}
.wp-block-image__placeholder.has-illustration::before {
background: #fff;
opacity: 0.8;
}
.wp-block-image__placeholder .components-placeholder__illustration {
opacity: 0.1;
}
.wp-block-image.is-selected .block-editor-media-placeholder {
filter: none !important;
}
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
position: absolute;
right: 0;
left: 0;
margin: -1px 0;
}
@media (min-width: 600px) {
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
margin: -1px;
}
}
[data-align=wide] > .wp-block-image img,
[data-align=full] > .wp-block-image img {
height: auto;
width: 100%;
}
.wp-block[data-align=left] > .wp-block-image,
.wp-block[data-align=center] > .wp-block-image,
.wp-block[data-align=right] > .wp-block-image {
display: table;
}
.wp-block[data-align=left] > .wp-block-image > figcaption,
.wp-block[data-align=center] > .wp-block-image > figcaption,
.wp-block[data-align=right] > .wp-block-image > figcaption {
display: table-caption;
caption-side: bottom;
}
.wp-block[data-align=left] > .wp-block-image {
margin-left: 1em;
margin-right: 0;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block[data-align=right] > .wp-block-image {
margin-right: 1em;
margin-left: 0;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block[data-align=center] > .wp-block-image {
margin-right: auto;
margin-left: auto;
text-align: center;
}
.wp-block[data-align]:has(> .wp-block-image) {
position: relative;
}
.wp-block-image__crop-area {
position: relative;
max-width: 100%;
width: 100%;
overflow: hidden;
}
.wp-block-image__crop-area .reactEasyCrop_Container {
pointer-events: auto;
}
.wp-block-image__crop-area .reactEasyCrop_Container .reactEasyCrop_Image {
border: none;
border-radius: 0;
}
.wp-block-image__crop-icon {
padding: 0 8px;
min-width: 48px;
display: flex;
justify-content: center;
align-items: center;
}
.wp-block-image__crop-icon svg {
fill: currentColor;
}
.wp-block-image__zoom .components-popover__content {
min-width: 260px;
overflow: visible !important;
}
.wp-block-image__toolbar_content_textarea__container {
padding: 8px;
}
.wp-block-image__toolbar_content_textarea {
width: 250px;
} image/editor.css 0000644 00000011667 15246340743 0007651 0 ustar 00 /**
* Colors
*/
/**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.wp-block-image.wp-block-image .block-editor-media-placeholder.is-small {
min-height: 60px;
}
figure.wp-block-image:not(.wp-block) {
margin: 0;
}
.wp-block-image {
position: relative;
}
.wp-block-image.is-transient:not(.alignwide):not(.alignfull), .wp-block-image:has(img.is-swapping-media):not(.alignwide):not(.alignfull) {
width: -moz-fit-content;
width: fit-content;
}
.wp-block-image .is-applying img, .wp-block-image.is-transient img,
.wp-block-image img.is-swapping-media {
opacity: 0.3;
}
.wp-block-image figcaption img {
display: inline;
}
.wp-block-image .components-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
}
.wp-block-image__placeholder {
aspect-ratio: 4/3;
}
.wp-block-image__placeholder.has-illustration::before {
background: #fff;
opacity: 0.8;
}
.wp-block-image__placeholder .components-placeholder__illustration {
opacity: 0.1;
}
.wp-block-image.is-selected .block-editor-media-placeholder {
filter: none !important;
}
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
position: absolute;
left: 0;
right: 0;
margin: -1px 0;
}
@media (min-width: 600px) {
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
margin: -1px;
}
}
[data-align=wide] > .wp-block-image img,
[data-align=full] > .wp-block-image img {
height: auto;
width: 100%;
}
.wp-block[data-align=left] > .wp-block-image,
.wp-block[data-align=center] > .wp-block-image,
.wp-block[data-align=right] > .wp-block-image {
display: table;
}
.wp-block[data-align=left] > .wp-block-image > figcaption,
.wp-block[data-align=center] > .wp-block-image > figcaption,
.wp-block[data-align=right] > .wp-block-image > figcaption {
display: table-caption;
caption-side: bottom;
}
.wp-block[data-align=left] > .wp-block-image {
margin-right: 1em;
margin-left: 0;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block[data-align=right] > .wp-block-image {
margin-left: 1em;
margin-right: 0;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.wp-block[data-align=center] > .wp-block-image {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.wp-block[data-align]:has(> .wp-block-image) {
position: relative;
}
.wp-block-image__crop-area {
position: relative;
max-width: 100%;
width: 100%;
overflow: hidden;
}
.wp-block-image__crop-area .reactEasyCrop_Container {
pointer-events: auto;
}
.wp-block-image__crop-area .reactEasyCrop_Container .reactEasyCrop_Image {
border: none;
border-radius: 0;
}
.wp-block-image__crop-icon {
padding: 0 8px;
min-width: 48px;
display: flex;
justify-content: center;
align-items: center;
}
.wp-block-image__crop-icon svg {
fill: currentColor;
}
.wp-block-image__zoom .components-popover__content {
min-width: 260px;
overflow: visible !important;
}
.wp-block-image__toolbar_content_textarea__container {
padding: 8px;
}
.wp-block-image__toolbar_content_textarea {
width: 250px;
} freeform/editor.min.css 0000644 00000001615 15246340743 0011146 0 ustar 00 .block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe{height:50vh!important}@media (min-width:960px){.block-editor-freeform-modal .block-editor-freeform-modal__content:not(.is-full-screen){height:9999rem}.block-editor-freeform-modal .block-editor-freeform-modal__content .components-modal__header+div{height:100%}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-tinymce{height:calc(100% - 52px)}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-container-body{display:flex;flex-direction:column;height:100%;min-width:50vw}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area{display:flex;flex-direction:column;flex-grow:1}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe{flex-grow:1;height:10px!important}}.block-editor-freeform-modal__actions{margin-top:16px} freeform/block.json 0000644 00000001007 15246340743 0010344 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/freeform",
"title": "Classic",
"category": "text",
"description": "Use the classic WordPress editor.",
"textdomain": "default",
"attributes": {
"content": {
"type": "string",
"source": "raw"
}
},
"supports": {
"className": false,
"customClassName": false,
"lock": false,
"reusable": false,
"renaming": false,
"visibility": false,
"customCSS": false
},
"editorStyle": "wp-block-freeform-editor"
}
freeform/editor-rtl.min.css 0000644 00000001615 15246340743 0011745 0 ustar 00 .block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe{height:50vh!important}@media (min-width:960px){.block-editor-freeform-modal .block-editor-freeform-modal__content:not(.is-full-screen){height:9999rem}.block-editor-freeform-modal .block-editor-freeform-modal__content .components-modal__header+div{height:100%}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-tinymce{height:calc(100% - 52px)}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-container-body{display:flex;flex-direction:column;height:100%;min-width:50vw}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area{display:flex;flex-direction:column;flex-grow:1}.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe{flex-grow:1;height:10px!important}}.block-editor-freeform-modal__actions{margin-top:16px} freeform/editor-rtl.css 0000644 00000005671 15246340743 0011171 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Typography
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe {
height: 50vh !important;
}
@media (min-width: 960px) {
.block-editor-freeform-modal .block-editor-freeform-modal__content:not(.is-full-screen) {
height: 9999rem;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .components-modal__header + div {
height: 100%;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-tinymce {
height: calc(100% - 36px - 16px);
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-container-body {
height: 100%;
display: flex;
flex-direction: column;
min-width: 50vw;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe {
flex-grow: 1;
height: 10px !important;
}
}
.block-editor-freeform-modal__actions {
margin-top: 16px;
} freeform/editor.css 0000644 00000005671 15246340743 0010372 0 ustar 00 /**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Typography
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe {
height: 50vh !important;
}
@media (min-width: 960px) {
.block-editor-freeform-modal .block-editor-freeform-modal__content:not(.is-full-screen) {
height: 9999rem;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .components-modal__header + div {
height: 100%;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-tinymce {
height: calc(100% - 36px - 16px);
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-container-body {
height: 100%;
display: flex;
flex-direction: column;
min-width: 50vw;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.block-editor-freeform-modal .block-editor-freeform-modal__content .mce-edit-area iframe {
flex-grow: 1;
height: 10px !important;
}
}
.block-editor-freeform-modal__actions {
margin-top: 16px;
} tab-list/editor.min.css 0000644 00000000134 15246340743 0011053 0 ustar 00 @media (min-width:600px){.wp-block-tab-list__mover-button{min-width:0!important;width:24px}} tab-list/block.json 0000644 00000003277 15246340743 0010271 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/tab-list",
"title": "Tab List",
"description": "Display the tab buttons for a tabbed interface.",
"category": "design",
"textdomain": "default",
"parent": [ "core/tabs" ],
"usesContext": [ "core/tabs-list" ],
"attributes": {
"tabs": {
"type": "array",
"source": "query",
"selector": "button",
"query": {
"label": {
"type": "rich-text",
"source": "rich-text",
"role": "content"
}
},
"default": []
}
},
"supports": {
"html": false,
"ariaLabel": true,
"visibility": false,
"lock": false,
"color": {
"background": true,
"text": true,
"__experimentalSkipSerialization": true,
"__experimentalDefaultControls": {
"background": true,
"text": true
}
},
"typography": {
"fontSize": true,
"__experimentalFontFamily": true
},
"__experimentalBorder": {
"color": true,
"radius": true,
"style": true,
"width": true,
"__experimentalSkipSerialization": true
},
"layout": {
"default": {
"type": "flex",
"flexWrap": "wrap"
},
"allowVerticalAlignment": false,
"allowOrientation": false,
"allowWrap": false
},
"spacing": {
"padding": true,
"blockGap": true,
"__experimentalSkipSerialization": [ "padding" ],
"__experimentalDefaultControls": {
"padding": true,
"blockGap": true
}
}
},
"selectors": {
"border": ".wp-block-tab-list button",
"color": {
"background": ".wp-block-tab-list button",
"text": ".wp-block-tab-list button"
},
"spacing": {
"padding": ".wp-block-tab-list button"
}
},
"style": "wp-block-tab-list",
"editorStyle": "wp-block-tab-list-editor"
}
tab-list/style-rtl.css 0000644 00000001551 15246340743 0010746 0 ustar 00 :where(.wp-block-tab-list button) {
box-sizing: border-box;
color: inherit;
display: block;
width: -moz-max-content;
width: max-content;
text-decoration: none;
cursor: pointer;
flex-basis: inherit !important;
flex-grow: inherit !important;
position: relative;
border: none;
background: none;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
margin: 0;
padding: var(--wp--preset--spacing--20, 0.5em) var(--wp--preset--spacing--30, 1em);
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
text-align: inherit;
}
:where(.wp-block-tab-list button)[aria-selected=true]::before {
content: "";
position: absolute;
border-bottom: 2px solid currentColor;
pointer-events: none;
right: 0;
width: 100%;
bottom: 0;
} tab-list/style.min.css 0000644 00000001315 15246340743 0010727 0 ustar 00 :where(.wp-block-tab-list button){-moz-appearance:none;appearance:none;-webkit-appearance:none;background:none;border:none;box-sizing:border-box;color:inherit;cursor:pointer;display:block;flex-basis:inherit!important;flex-grow:inherit!important;font-family:inherit;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:var(--wp--preset--spacing--20,.5em) var(--wp--preset--spacing--30,1em);position:relative;text-align:inherit;text-decoration:none;text-transform:inherit;width:-moz-max-content;width:max-content}:where(.wp-block-tab-list button)[aria-selected=true]:before{border-bottom:2px solid;bottom:0;content:"";left:0;pointer-events:none;position:absolute;width:100%} tab-list/editor-rtl.min.css 0000644 00000000134 15246340743 0011652 0 ustar 00 @media (min-width:600px){.wp-block-tab-list__mover-button{min-width:0!important;width:24px}} tab-list/style.css 0000644 00000001550 15246340743 0010146 0 ustar 00 :where(.wp-block-tab-list button) {
box-sizing: border-box;
color: inherit;
display: block;
width: -moz-max-content;
width: max-content;
text-decoration: none;
cursor: pointer;
flex-basis: inherit !important;
flex-grow: inherit !important;
position: relative;
border: none;
background: none;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
margin: 0;
padding: var(--wp--preset--spacing--20, 0.5em) var(--wp--preset--spacing--30, 1em);
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
text-align: inherit;
}
:where(.wp-block-tab-list button)[aria-selected=true]::before {
content: "";
position: absolute;
border-bottom: 2px solid currentColor;
pointer-events: none;
left: 0;
width: 100%;
bottom: 0;
} tab-list/style-rtl.min.css 0000644 00000001316 15246340743 0011527 0 ustar 00 :where(.wp-block-tab-list button){-moz-appearance:none;appearance:none;-webkit-appearance:none;background:none;border:none;box-sizing:border-box;color:inherit;cursor:pointer;display:block;flex-basis:inherit!important;flex-grow:inherit!important;font-family:inherit;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:var(--wp--preset--spacing--20,.5em) var(--wp--preset--spacing--30,1em);position:relative;text-align:inherit;text-decoration:none;text-transform:inherit;width:-moz-max-content;width:max-content}:where(.wp-block-tab-list button)[aria-selected=true]:before{border-bottom:2px solid;bottom:0;content:"";pointer-events:none;position:absolute;right:0;width:100%} tab-list/editor-rtl.css 0000644 00000004012 15246340743 0011067 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
@media (min-width: 600px) {
.wp-block-tab-list__mover-button {
width: 24px;
min-width: 0 !important;
}
} tab-list/editor.css 0000644 00000004012 15246340743 0010270 0 ustar 00 /**
* Typography
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoints & Media Queries
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Standard focus rings for the WordPress Design System.
*
* Apply `outset-ring__focus` inside the relevant pseudo-class at the call site,
* e.g. `&:focus { @include outset-ring__focus(); }`.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* Creates a checkerboard pattern background to indicate transparency.
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
*/
@media (min-width: 600px) {
.wp-block-tab-list__mover-button {
width: 24px;
min-width: 0 !important;
}
} error_log 0000644 00002252442 15246340743 0006504 0 ustar 00 [08-Oct-2021 13:44:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2021 13:44:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2021 13:44:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2021 13:44:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Nov-2021 11:33:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Nov-2021 11:33:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Nov-2021 11:33:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Nov-2021 11:33:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Nov-2021 19:55:49 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Nov-2021 19:55:49 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Nov-2021 19:55:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Nov-2021 19:55:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Nov-2021 15:29:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Nov-2021 15:29:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Nov-2021 15:29:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Nov-2021 15:29:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:32:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:32:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:32:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:32:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:36:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:36:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:36:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Nov-2021 09:36:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 04:37:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 04:37:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 04:37:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 04:37:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 15:13:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 15:13:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 15:13:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Dec-2021 15:13:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Dec-2021 04:18:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Dec-2021 04:18:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Dec-2021 04:18:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Dec-2021 04:18:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 15:33:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 15:33:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 15:33:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 15:33:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 19:13:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 19:13:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 19:13:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Dec-2021 19:13:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Dec-2021 02:48:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Dec-2021 02:48:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Dec-2021 02:48:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Dec-2021 02:48:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Dec-2021 18:14:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Dec-2021 18:14:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Dec-2021 18:14:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Dec-2021 18:14:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Dec-2021 18:54:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Dec-2021 18:54:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Dec-2021 18:54:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Dec-2021 18:54:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Dec-2021 02:35:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Dec-2021 02:35:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Dec-2021 02:35:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Dec-2021 02:35:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 07:06:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 07:06:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 07:06:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 07:06:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 15:49:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 15:49:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 15:49:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jan-2022 15:49:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 03:55:49 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 03:55:49 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 03:55:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 03:55:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 19:04:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 19:04:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 19:04:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jan-2022 19:04:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jan-2022 16:27:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jan-2022 16:27:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jan-2022 16:27:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jan-2022 16:27:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jan-2022 11:03:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jan-2022 11:03:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jan-2022 11:03:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jan-2022 11:03:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Jan-2022 00:56:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Jan-2022 00:56:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Jan-2022 00:56:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Jan-2022 00:56:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jan-2022 16:58:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jan-2022 16:58:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jan-2022 16:58:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jan-2022 16:58:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 17:13:20 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 17:13:20 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 17:13:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 17:13:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 18:13:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 18:13:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 18:13:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jan-2022 18:13:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 03:55:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 03:55:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 03:55:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 03:55:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 22:06:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 22:06:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 22:06:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jan-2022 22:06:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 02:17:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 02:17:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 02:17:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 02:17:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:01:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:01:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:01:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:01:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:05:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:05:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:05:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jan-2022 23:05:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Feb-2022 12:52:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Feb-2022 12:52:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Feb-2022 12:52:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Feb-2022 12:52:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Feb-2022 17:12:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Feb-2022 17:12:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Feb-2022 17:12:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Feb-2022 17:12:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Feb-2022 07:42:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Feb-2022 07:42:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Feb-2022 07:42:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Feb-2022 07:42:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Feb-2022 18:23:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Feb-2022 18:23:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Feb-2022 18:23:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Feb-2022 18:23:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Mar-2022 09:41:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Mar-2022 09:41:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Mar-2022 09:41:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Mar-2022 09:41:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Apr-2022 06:47:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Apr-2022 06:47:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Apr-2022 06:47:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Apr-2022 06:47:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Apr-2022 21:56:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Apr-2022 21:56:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Apr-2022 21:56:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Apr-2022 21:56:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-May-2022 04:03:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-May-2022 04:03:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-May-2022 04:03:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-May-2022 04:03:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 09:41:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 09:41:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 09:41:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 09:41:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 15:21:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 15:21:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 15:21:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-May-2022 15:21:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-May-2022 06:44:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-May-2022 06:44:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-May-2022 06:44:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-May-2022 06:44:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-May-2022 05:48:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-May-2022 05:48:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-May-2022 05:48:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-May-2022 05:48:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-May-2022 18:56:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-May-2022 18:56:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-May-2022 18:56:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-May-2022 18:56:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-May-2022 16:39:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-May-2022 16:39:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-May-2022 16:39:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-May-2022 16:39:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-May-2022 07:33:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-May-2022 07:33:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-May-2022 07:33:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-May-2022 07:33:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-May-2022 08:01:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-May-2022 08:01:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-May-2022 08:01:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-May-2022 08:01:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-May-2022 04:57:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-May-2022 04:57:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-May-2022 04:57:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-May-2022 04:57:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-May-2022 20:45:20 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-May-2022 20:45:20 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-May-2022 20:45:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-May-2022 20:45:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Jun-2022 18:14:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Jun-2022 18:14:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Jun-2022 18:14:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Jun-2022 18:14:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 09:49:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 09:49:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 09:49:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 09:49:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 16:04:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 16:04:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 16:04:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jun-2022 16:04:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jun-2022 21:34:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jun-2022 21:34:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jun-2022 21:34:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jun-2022 21:34:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 05:48:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 05:48:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 05:48:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 05:48:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 16:36:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 16:36:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 16:36:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jun-2022 16:36:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Jun-2022 11:03:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Jun-2022 11:03:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Jun-2022 11:03:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Jun-2022 11:03:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Jun-2022 11:04:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Jun-2022 11:04:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Jun-2022 11:04:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Jun-2022 11:04:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jun-2022 10:52:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jun-2022 10:52:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jun-2022 10:52:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jun-2022 10:52:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jul-2022 04:02:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jul-2022 04:02:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jul-2022 04:02:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Jul-2022 04:02:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jul-2022 03:42:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jul-2022 03:42:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jul-2022 03:42:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Jul-2022 03:42:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 02:59:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 02:59:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 02:59:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 02:59:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 22:37:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 22:37:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 22:37:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[06-Jul-2022 22:37:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Jul-2022 02:00:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Jul-2022 02:00:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Jul-2022 02:00:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Jul-2022 02:00:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jul-2022 03:25:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jul-2022 03:25:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jul-2022 03:25:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Jul-2022 03:25:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jul-2022 14:36:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jul-2022 14:36:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jul-2022 14:36:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Jul-2022 14:36:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 15:27:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 15:27:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 15:27:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 15:27:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 21:13:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 21:13:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 21:13:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Jul-2022 21:13:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Jul-2022 06:28:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Jul-2022 06:28:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Jul-2022 06:28:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Jul-2022 06:28:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 02:10:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 02:10:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 02:10:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 02:10:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 18:01:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 18:01:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 18:01:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Jul-2022 18:01:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 08:24:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 08:24:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 08:24:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 08:24:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 23:15:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 23:15:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 23:15:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Jul-2022 23:15:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Jul-2022 21:08:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Jul-2022 21:08:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Jul-2022 21:08:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Jul-2022 21:08:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 02:58:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 02:58:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 02:58:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 02:58:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 20:17:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 20:17:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 20:17:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Jul-2022 20:17:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jul-2022 13:17:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jul-2022 13:17:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jul-2022 13:17:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Jul-2022 13:17:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 09:48:20 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 09:48:20 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 09:48:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 09:48:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 21:42:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 21:42:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 21:42:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Jul-2022 21:42:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jul-2022 14:13:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jul-2022 14:13:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jul-2022 14:13:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Jul-2022 14:13:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Jul-2022 12:42:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Jul-2022 12:42:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Jul-2022 12:42:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Jul-2022 12:42:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Jul-2022 14:16:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Jul-2022 14:16:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Jul-2022 14:16:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Jul-2022 14:16:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jul-2022 06:36:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jul-2022 06:36:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jul-2022 06:36:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Jul-2022 06:36:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 03:01:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 03:01:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 03:01:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 03:01:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 19:56:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 19:56:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 19:56:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Jul-2022 19:56:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[27-Jul-2022 07:29:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[27-Jul-2022 07:29:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[27-Jul-2022 07:29:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[27-Jul-2022 07:29:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Jul-2022 11:25:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Jul-2022 11:25:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Jul-2022 11:25:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Jul-2022 11:25:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 06:46:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 06:46:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 06:46:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 06:46:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 13:46:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 13:46:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 13:46:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Jul-2022 13:46:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 05:57:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 05:57:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 05:57:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 05:57:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 22:38:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 22:38:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 22:38:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[31-Jul-2022 22:38:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Aug-2022 15:23:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Aug-2022 15:23:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Aug-2022 15:23:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[02-Aug-2022 15:23:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Aug-2022 13:52:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Aug-2022 13:52:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Aug-2022 13:52:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Aug-2022 13:52:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Aug-2022 09:58:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Aug-2022 09:58:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Aug-2022 09:58:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Aug-2022 09:58:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Aug-2022 06:39:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Aug-2022 06:39:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Aug-2022 06:39:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[05-Aug-2022 06:39:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Aug-2022 00:55:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Aug-2022 00:55:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Aug-2022 00:55:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[07-Aug-2022 00:55:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 00:54:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 00:54:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 00:54:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 00:54:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 01:08:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 01:08:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 01:08:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Aug-2022 01:08:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Aug-2022 19:57:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Aug-2022 19:57:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Aug-2022 19:57:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[10-Aug-2022 19:57:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Aug-2022 20:17:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Aug-2022 20:17:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Aug-2022 20:17:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[13-Aug-2022 20:17:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Aug-2022 23:00:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Aug-2022 23:00:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Aug-2022 23:00:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Aug-2022 23:00:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Aug-2022 11:35:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Aug-2022 11:35:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Aug-2022 11:35:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Aug-2022 11:35:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Aug-2022 21:14:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Aug-2022 21:14:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Aug-2022 21:14:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[17-Aug-2022 21:14:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 18:44:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 18:44:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 18:44:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 18:44:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 20:11:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 20:11:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 20:11:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[18-Aug-2022 20:11:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Aug-2022 09:59:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Aug-2022 09:59:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Aug-2022 09:59:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Aug-2022 09:59:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Aug-2022 05:26:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Aug-2022 05:26:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Aug-2022 05:26:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[20-Aug-2022 05:26:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 00:15:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 00:15:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 00:15:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 00:15:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 20:51:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 20:51:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 20:51:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Aug-2022 20:51:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Aug-2022 01:38:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Aug-2022 01:38:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Aug-2022 01:38:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Aug-2022 01:38:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Aug-2022 01:48:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Aug-2022 01:48:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Aug-2022 01:48:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[25-Aug-2022 01:48:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Aug-2022 23:01:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Aug-2022 23:01:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Aug-2022 23:01:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[26-Aug-2022 23:01:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Aug-2022 19:04:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Aug-2022 19:04:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Aug-2022 19:04:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Aug-2022 19:04:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Sep-2022 00:02:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Sep-2022 00:02:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Sep-2022 00:02:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Sep-2022 00:02:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Sep-2022 19:19:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Sep-2022 19:19:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Sep-2022 19:19:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Sep-2022 19:19:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 17:55:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 17:55:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 17:55:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 17:55:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 20:49:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 20:49:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 20:49:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[15-Sep-2022 20:49:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Sep-2022 01:54:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Sep-2022 01:54:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Sep-2022 01:54:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Sep-2022 01:54:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 01:51:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 01:51:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 01:51:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 01:51:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 10:11:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 10:11:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 10:11:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 10:11:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 23:00:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 23:00:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 23:00:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Sep-2022 23:00:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Sep-2022 00:37:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Sep-2022 00:37:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Sep-2022 00:37:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[21-Sep-2022 00:37:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 00:25:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 00:25:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 00:25:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 00:25:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 13:02:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 13:02:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 13:02:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 13:02:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 15:44:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 15:44:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 15:44:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Sep-2022 15:44:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 03:31:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 03:31:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 03:31:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 03:31:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 17:56:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 17:56:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 17:56:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Sep-2022 17:56:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Sep-2022 22:33:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Sep-2022 22:33:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Sep-2022 22:33:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Sep-2022 22:33:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Oct-2022 06:56:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Oct-2022 06:56:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Oct-2022 06:56:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[01-Oct-2022 06:56:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 12:03:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 12:03:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 12:03:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 12:03:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 13:12:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 13:12:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 13:12:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 13:12:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 22:47:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 22:47:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 22:47:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[04-Oct-2022 22:47:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2022 11:26:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2022 11:26:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2022 11:26:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[08-Oct-2022 11:26:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 00:34:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 00:34:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 00:34:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 00:34:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 09:49:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 09:49:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 09:49:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 09:49:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 11:10:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 11:10:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 11:10:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 11:10:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 21:01:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 21:01:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 21:01:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[09-Oct-2022 21:01:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Oct-2022 07:36:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Oct-2022 07:36:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Oct-2022 07:36:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[11-Oct-2022 07:36:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Oct-2022 11:20:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Oct-2022 11:20:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Oct-2022 11:20:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[12-Oct-2022 11:20:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Oct-2022 18:40:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Oct-2022 18:40:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Oct-2022 18:40:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[14-Oct-2022 18:40:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Oct-2022 08:35:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Oct-2022 08:35:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Oct-2022 08:35:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[16-Oct-2022 08:35:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Oct-2022 07:40:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Oct-2022 07:40:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Oct-2022 07:40:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[19-Oct-2022 07:40:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Oct-2022 01:24:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Oct-2022 01:24:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Oct-2022 01:24:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[22-Oct-2022 01:24:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Oct-2022 17:09:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Oct-2022 17:09:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Oct-2022 17:09:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[23-Oct-2022 17:09:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Oct-2022 11:32:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Oct-2022 11:32:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Oct-2022 11:32:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[24-Oct-2022 11:32:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Oct-2022 01:55:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Oct-2022 01:55:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Oct-2022 01:55:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[28-Oct-2022 01:55:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Oct-2022 22:03:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Oct-2022 22:03:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Oct-2022 22:03:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[29-Oct-2022 22:03:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[30-Oct-2022 20:27:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[30-Oct-2022 20:27:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[30-Oct-2022 20:27:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[30-Oct-2022 20:27:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 9
[03-Nov-2022 01:47:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Nov-2022 01:47:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Nov-2022 01:47:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Nov-2022 01:47:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Nov-2022 20:16:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Nov-2022 20:16:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Nov-2022 20:16:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Nov-2022 20:16:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2022 20:26:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2022 20:26:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2022 20:26:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2022 20:26:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2022 16:26:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2022 16:26:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2022 16:26:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2022 16:26:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2022 16:54:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2022 16:54:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2022 16:54:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2022 16:54:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Nov-2022 20:57:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Nov-2022 20:57:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Nov-2022 20:57:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Nov-2022 20:57:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Nov-2022 20:01:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Nov-2022 20:01:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Nov-2022 20:01:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Nov-2022 20:01:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Nov-2022 06:46:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Nov-2022 06:46:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Nov-2022 06:46:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Nov-2022 06:46:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Nov-2022 08:59:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Nov-2022 08:59:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Nov-2022 08:59:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Nov-2022 08:59:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Nov-2022 09:55:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Nov-2022 09:55:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Nov-2022 09:55:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Nov-2022 09:55:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Nov-2022 11:32:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Nov-2022 11:32:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Nov-2022 11:32:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Nov-2022 11:32:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Nov-2022 07:06:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Nov-2022 07:06:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Nov-2022 07:06:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Nov-2022 07:06:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Nov-2022 20:53:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Nov-2022 20:53:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Nov-2022 20:53:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Nov-2022 20:53:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Nov-2022 21:17:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Nov-2022 21:17:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Nov-2022 21:17:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Nov-2022 21:17:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Nov-2022 06:16:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Nov-2022 06:16:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Nov-2022 06:16:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Nov-2022 06:16:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Nov-2022 11:56:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Nov-2022 11:56:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Nov-2022 11:56:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Nov-2022 11:56:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Nov-2022 17:05:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Nov-2022 17:05:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Nov-2022 17:05:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Nov-2022 17:05:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Nov-2022 23:54:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Nov-2022 23:54:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Nov-2022 23:54:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Nov-2022 23:54:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2022 12:48:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2022 12:48:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2022 12:48:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2022 12:48:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2022 18:52:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2022 18:52:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2022 18:52:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2022 18:52:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 00:24:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 00:24:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 00:24:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 00:24:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 10:50:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 10:50:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 10:50:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 10:50:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 22:41:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 22:41:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2022 22:41:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2022 22:41:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Nov-2022 03:15:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Nov-2022 03:15:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Nov-2022 03:15:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Nov-2022 03:15:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Nov-2022 23:01:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Nov-2022 23:01:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Nov-2022 23:01:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Nov-2022 23:01:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Nov-2022 09:37:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Nov-2022 09:37:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Nov-2022 09:37:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Nov-2022 09:37:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Nov-2022 18:15:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Nov-2022 18:15:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Nov-2022 18:15:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Nov-2022 18:15:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2022 05:18:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2022 05:18:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2022 05:18:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2022 05:18:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2022 20:57:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2022 20:57:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2022 20:57:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2022 20:57:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Dec-2022 10:16:20 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Dec-2022 10:16:20 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Dec-2022 10:16:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Dec-2022 10:16:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 03:50:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 03:50:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 03:50:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 03:50:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 12:45:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 12:45:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 12:45:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 12:45:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 22:43:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 22:43:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2022 22:43:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2022 22:43:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Dec-2022 17:15:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Dec-2022 17:15:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Dec-2022 17:15:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Dec-2022 17:15:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Dec-2022 18:46:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Dec-2022 18:46:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Dec-2022 18:46:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Dec-2022 18:46:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Dec-2022 06:49:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Dec-2022 06:49:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Dec-2022 06:49:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Dec-2022 06:49:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Dec-2022 12:53:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Dec-2022 12:53:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Dec-2022 12:53:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Dec-2022 12:53:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Dec-2022 06:02:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Dec-2022 06:02:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Dec-2022 06:02:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Dec-2022 06:02:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Dec-2022 01:51:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Dec-2022 01:51:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Dec-2022 01:51:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Dec-2022 01:51:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Dec-2022 03:19:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Dec-2022 03:19:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Dec-2022 03:19:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Dec-2022 03:19:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Dec-2022 21:47:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Dec-2022 21:47:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Dec-2022 21:47:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Dec-2022 21:47:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Dec-2022 12:32:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Dec-2022 12:32:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Dec-2022 12:32:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Dec-2022 12:32:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Dec-2022 22:34:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Dec-2022 22:34:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Dec-2022 22:34:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Dec-2022 22:34:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Dec-2022 18:18:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Dec-2022 18:18:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Dec-2022 18:18:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Dec-2022 18:18:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Dec-2022 09:53:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Dec-2022 09:53:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Dec-2022 09:53:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Dec-2022 09:53:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jan-2023 12:12:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jan-2023 12:12:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jan-2023 12:12:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jan-2023 12:12:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jan-2023 22:57:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jan-2023 22:57:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jan-2023 22:57:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jan-2023 22:57:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jan-2023 05:09:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jan-2023 05:09:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jan-2023 05:09:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jan-2023 05:09:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jan-2023 02:28:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jan-2023 02:28:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jan-2023 02:28:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jan-2023 02:28:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jan-2023 09:16:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jan-2023 09:16:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jan-2023 09:16:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jan-2023 09:16:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2023 11:22:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2023 11:22:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2023 11:22:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2023 11:22:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2023 23:00:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2023 23:00:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2023 23:00:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2023 23:00:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Jan-2023 19:03:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Jan-2023 19:03:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Jan-2023 19:03:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Jan-2023 19:03:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jan-2023 03:41:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jan-2023 03:41:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jan-2023 03:41:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jan-2023 03:41:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jan-2023 11:53:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jan-2023 11:53:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jan-2023 11:53:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jan-2023 11:53:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Jan-2023 20:29:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Jan-2023 20:29:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Jan-2023 20:29:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Jan-2023 20:29:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Jan-2023 17:19:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Jan-2023 17:19:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Jan-2023 17:19:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Jan-2023 17:19:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jan-2023 19:18:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jan-2023 19:18:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jan-2023 19:18:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jan-2023 19:18:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jan-2023 03:56:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jan-2023 03:56:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jan-2023 03:56:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jan-2023 03:56:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Feb-2023 10:33:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Feb-2023 10:33:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Feb-2023 10:33:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Feb-2023 10:33:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Feb-2023 18:26:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Feb-2023 18:26:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Feb-2023 18:26:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Feb-2023 18:26:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Feb-2023 03:46:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Feb-2023 03:46:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Feb-2023 03:46:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Feb-2023 03:46:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Feb-2023 20:39:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Feb-2023 20:39:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Feb-2023 20:39:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Feb-2023 20:39:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Feb-2023 02:25:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Feb-2023 02:25:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Feb-2023 02:25:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Feb-2023 02:25:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Feb-2023 03:53:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Feb-2023 03:53:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Feb-2023 03:53:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Feb-2023 03:53:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2023 22:00:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2023 22:00:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2023 22:00:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2023 22:00:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2023 23:38:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2023 23:38:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2023 23:38:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2023 23:38:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Feb-2023 00:18:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Feb-2023 00:18:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Feb-2023 00:18:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Feb-2023 00:18:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Feb-2023 10:10:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Feb-2023 10:10:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Feb-2023 10:10:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Feb-2023 10:10:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Feb-2023 17:36:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Feb-2023 17:36:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Feb-2023 17:36:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Feb-2023 17:36:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Feb-2023 22:54:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Feb-2023 22:54:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Feb-2023 22:54:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Feb-2023 22:54:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Feb-2023 03:46:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Feb-2023 03:46:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Feb-2023 03:46:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Feb-2023 03:46:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Feb-2023 06:09:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Feb-2023 06:09:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Feb-2023 06:09:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Feb-2023 06:09:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Feb-2023 20:53:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Feb-2023 20:53:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Feb-2023 20:53:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Feb-2023 20:53:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Feb-2023 03:39:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Feb-2023 03:39:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Feb-2023 03:39:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Feb-2023 03:39:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Feb-2023 18:25:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Feb-2023 18:25:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Feb-2023 18:25:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Feb-2023 18:25:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Feb-2023 06:55:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Feb-2023 06:55:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Feb-2023 06:55:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Feb-2023 06:55:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Mar-2023 02:15:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Mar-2023 02:15:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Mar-2023 02:15:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Mar-2023 02:15:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Mar-2023 18:17:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Mar-2023 18:17:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Mar-2023 18:17:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Mar-2023 18:17:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Mar-2023 03:23:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Mar-2023 03:23:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Mar-2023 03:23:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Mar-2023 03:23:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 03:25:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 03:25:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 03:25:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 03:25:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 03:50:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 03:50:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 03:50:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 03:50:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 19:43:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 19:43:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Mar-2023 19:43:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Mar-2023 19:43:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Mar-2023 05:16:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Mar-2023 05:16:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Mar-2023 05:16:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Mar-2023 05:16:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Mar-2023 11:50:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Mar-2023 11:50:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Mar-2023 11:50:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Mar-2023 11:50:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Mar-2023 00:48:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Mar-2023 00:48:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Mar-2023 00:48:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Mar-2023 00:48:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Mar-2023 14:13:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Mar-2023 14:13:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Mar-2023 14:13:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Mar-2023 14:13:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2023 07:53:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2023 07:53:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2023 07:53:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2023 07:53:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2023 17:09:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2023 17:09:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2023 17:09:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2023 17:09:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2023 02:27:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2023 02:27:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2023 02:27:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2023 02:27:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2023 03:15:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2023 03:15:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2023 03:15:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2023 03:15:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Mar-2023 20:21:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Mar-2023 20:21:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Mar-2023 20:21:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Mar-2023 20:21:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Mar-2023 19:09:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Mar-2023 19:09:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Mar-2023 19:09:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Mar-2023 19:09:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Mar-2023 19:30:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Mar-2023 19:30:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Mar-2023 19:30:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Mar-2023 19:30:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Mar-2023 03:03:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Mar-2023 03:03:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Mar-2023 03:03:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Mar-2023 03:03:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Mar-2023 11:59:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Mar-2023 11:59:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Mar-2023 11:59:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Mar-2023 11:59:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Mar-2023 08:04:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Mar-2023 08:04:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Mar-2023 08:04:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Mar-2023 08:04:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Mar-2023 08:49:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Mar-2023 08:49:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Mar-2023 08:49:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Mar-2023 08:49:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Mar-2023 18:08:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Mar-2023 18:08:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Mar-2023 18:08:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Mar-2023 18:08:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Mar-2023 21:13:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Mar-2023 21:13:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Mar-2023 21:13:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Mar-2023 21:13:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Mar-2023 00:38:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Mar-2023 00:38:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Mar-2023 00:38:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Mar-2023 00:38:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Mar-2023 11:35:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Mar-2023 11:35:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Mar-2023 11:35:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Mar-2023 11:35:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Mar-2023 06:52:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Mar-2023 06:52:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Mar-2023 06:52:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Mar-2023 06:52:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Mar-2023 17:44:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Mar-2023 17:44:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Mar-2023 17:44:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Mar-2023 17:44:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Apr-2023 16:50:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Apr-2023 16:50:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Apr-2023 16:50:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Apr-2023 16:50:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Apr-2023 18:54:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Apr-2023 18:54:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Apr-2023 18:54:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Apr-2023 18:54:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Apr-2023 01:28:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Apr-2023 01:28:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Apr-2023 01:28:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Apr-2023 01:28:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Apr-2023 02:06:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Apr-2023 02:06:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Apr-2023 02:06:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Apr-2023 02:06:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Apr-2023 13:18:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Apr-2023 13:18:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Apr-2023 13:18:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Apr-2023 13:18:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 06:27:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 06:27:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 06:27:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 06:27:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 22:08:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 22:08:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 22:08:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 22:08:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 23:03:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 23:03:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2023 23:03:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2023 23:03:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2023 06:55:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2023 06:55:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2023 06:55:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2023 06:55:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2023 11:30:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2023 11:30:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2023 11:30:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2023 11:30:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Apr-2023 16:21:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Apr-2023 16:21:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Apr-2023 16:21:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Apr-2023 16:21:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Apr-2023 21:09:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Apr-2023 21:09:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Apr-2023 21:09:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Apr-2023 21:09:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Apr-2023 09:55:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Apr-2023 09:55:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Apr-2023 09:55:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Apr-2023 09:55:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Apr-2023 17:44:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Apr-2023 17:44:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Apr-2023 17:44:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Apr-2023 17:44:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Apr-2023 20:45:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Apr-2023 20:45:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Apr-2023 20:45:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Apr-2023 20:45:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Apr-2023 05:40:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Apr-2023 05:40:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Apr-2023 05:40:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Apr-2023 05:40:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Apr-2023 12:21:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Apr-2023 12:21:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Apr-2023 12:21:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Apr-2023 12:21:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Apr-2023 22:34:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Apr-2023 22:34:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Apr-2023 22:34:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Apr-2023 22:34:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2023 00:03:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2023 00:03:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2023 00:03:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2023 00:03:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Apr-2023 07:28:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Apr-2023 07:28:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Apr-2023 07:28:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Apr-2023 07:28:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2023 06:41:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2023 06:41:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2023 06:41:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2023 06:41:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2023 15:35:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2023 15:35:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2023 15:35:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2023 15:35:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Apr-2023 15:16:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Apr-2023 15:16:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Apr-2023 15:16:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Apr-2023 15:16:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Apr-2023 16:46:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Apr-2023 16:46:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Apr-2023 16:46:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Apr-2023 16:46:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Apr-2023 04:55:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Apr-2023 04:55:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Apr-2023 04:55:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Apr-2023 04:55:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 14:38:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 14:38:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 14:38:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 14:38:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 17:18:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 17:18:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 17:18:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 17:18:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 21:45:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 21:45:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Apr-2023 21:45:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Apr-2023 21:45:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2023 21:37:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2023 21:37:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2023 21:37:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2023 21:37:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2023 22:37:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2023 22:37:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2023 22:37:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2023 22:37:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 00:01:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 00:01:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 00:01:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 00:01:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 03:56:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 03:56:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 03:56:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 03:56:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 09:58:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 09:58:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Apr-2023 09:58:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Apr-2023 09:58:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Apr-2023 14:03:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Apr-2023 14:03:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Apr-2023 14:03:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Apr-2023 14:03:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2023 09:07:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2023 09:07:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2023 09:07:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2023 09:07:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2023 11:37:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2023 11:37:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2023 11:37:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2023 11:37:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Apr-2023 22:45:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Apr-2023 22:45:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Apr-2023 22:45:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Apr-2023 22:45:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 01:22:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 01:22:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 01:22:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 01:22:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 04:10:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 04:10:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 04:10:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 04:10:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 11:07:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 11:07:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-May-2023 11:07:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-May-2023 11:07:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-May-2023 15:44:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-May-2023 15:44:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-May-2023 15:44:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-May-2023 15:44:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-May-2023 15:28:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-May-2023 15:28:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-May-2023 15:28:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-May-2023 15:28:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2023 05:37:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2023 05:37:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2023 05:37:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2023 05:37:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-May-2023 10:17:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-May-2023 10:17:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-May-2023 10:17:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-May-2023 10:17:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2023 05:15:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2023 05:15:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2023 05:15:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2023 05:15:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2023 10:56:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2023 10:56:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2023 10:56:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2023 10:56:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-May-2023 13:52:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-May-2023 13:52:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-May-2023 13:52:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-May-2023 13:52:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-May-2023 00:04:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-May-2023 00:04:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-May-2023 00:04:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-May-2023 00:04:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-May-2023 18:29:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-May-2023 18:29:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-May-2023 18:29:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-May-2023 18:29:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-May-2023 15:49:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-May-2023 15:49:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-May-2023 15:49:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-May-2023 15:49:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 02:09:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 02:09:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 02:09:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 02:09:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 15:10:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 15:10:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 15:10:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 15:10:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 18:51:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 18:51:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2023 18:51:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2023 18:51:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-May-2023 10:10:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-May-2023 10:10:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-May-2023 10:10:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-May-2023 10:10:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-May-2023 05:19:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-May-2023 05:19:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-May-2023 05:19:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-May-2023 05:19:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-May-2023 00:01:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-May-2023 00:01:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-May-2023 00:01:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-May-2023 00:01:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-May-2023 04:56:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-May-2023 04:56:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-May-2023 04:56:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-May-2023 04:56:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-May-2023 01:34:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-May-2023 01:34:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-May-2023 01:34:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-May-2023 01:34:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-May-2023 19:48:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-May-2023 19:48:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-May-2023 19:48:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-May-2023 19:48:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-May-2023 21:49:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-May-2023 21:49:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-May-2023 21:49:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-May-2023 21:49:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-May-2023 03:51:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-May-2023 03:51:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-May-2023 03:51:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-May-2023 03:51:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-May-2023 15:40:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-May-2023 15:40:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-May-2023 15:40:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-May-2023 15:40:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-May-2023 15:51:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-May-2023 15:51:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-May-2023 15:51:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-May-2023 15:51:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-May-2023 16:43:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-May-2023 16:43:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-May-2023 16:43:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-May-2023 16:43:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-May-2023 12:14:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-May-2023 12:14:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-May-2023 12:14:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-May-2023 12:14:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-May-2023 17:50:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-May-2023 17:50:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-May-2023 17:50:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-May-2023 17:50:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-May-2023 16:08:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-May-2023 16:08:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-May-2023 16:08:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-May-2023 16:08:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2023 00:16:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2023 00:16:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2023 00:16:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2023 00:16:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2023 13:00:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2023 13:00:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2023 13:00:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2023 13:00:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 01:44:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 01:44:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 01:44:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 01:44:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 02:15:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 02:15:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 02:15:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 02:15:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 16:35:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 16:35:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-May-2023 16:35:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-May-2023 16:35:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-May-2023 00:54:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-May-2023 00:54:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-May-2023 00:54:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-May-2023 00:54:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-May-2023 15:26:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-May-2023 15:26:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-May-2023 15:26:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-May-2023 15:26:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2023 19:36:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2023 19:36:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2023 19:36:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2023 19:36:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-May-2023 05:56:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-May-2023 05:56:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-May-2023 05:56:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-May-2023 05:56:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2023 20:18:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2023 20:18:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2023 20:18:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2023 20:18:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2023 21:53:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2023 21:53:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2023 21:53:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2023 21:53:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jun-2023 07:35:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jun-2023 07:35:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jun-2023 07:35:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jun-2023 07:35:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jun-2023 04:46:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jun-2023 04:46:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jun-2023 04:46:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jun-2023 04:46:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jun-2023 06:33:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jun-2023 06:33:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jun-2023 06:33:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jun-2023 06:33:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 02:50:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 02:50:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 02:50:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 02:50:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 03:17:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 03:17:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 03:17:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 03:17:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 07:25:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 07:25:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 07:25:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 07:25:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 18:04:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 18:04:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2023 18:04:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2023 18:04:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jun-2023 13:13:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jun-2023 13:13:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jun-2023 13:13:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jun-2023 13:13:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jun-2023 20:20:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jun-2023 20:20:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jun-2023 20:20:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jun-2023 20:20:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 00:36:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 00:36:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 00:36:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 00:36:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 17:20:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 17:20:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 17:20:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 17:20:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 18:50:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 18:50:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2023 18:50:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2023 18:50:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jun-2023 03:18:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jun-2023 03:18:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jun-2023 03:18:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jun-2023 03:18:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jun-2023 20:44:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jun-2023 20:44:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jun-2023 20:44:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jun-2023 20:44:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jun-2023 04:51:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jun-2023 04:51:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jun-2023 04:51:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jun-2023 04:51:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jun-2023 06:18:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jun-2023 06:18:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jun-2023 06:18:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jun-2023 06:18:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jun-2023 12:27:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jun-2023 12:27:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jun-2023 12:27:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jun-2023 12:27:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2023 04:55:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2023 04:55:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2023 04:55:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2023 04:55:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2023 22:18:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2023 22:18:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2023 22:18:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2023 22:18:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jun-2023 01:59:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jun-2023 01:59:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jun-2023 01:59:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jun-2023 01:59:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 00:12:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 00:12:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 00:12:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 00:12:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 05:28:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 05:28:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 05:28:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 05:28:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 10:22:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 10:22:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jun-2023 10:22:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jun-2023 10:22:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jun-2023 07:32:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jun-2023 07:32:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jun-2023 07:32:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jun-2023 07:32:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2023 02:39:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2023 02:39:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2023 02:39:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2023 02:39:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jun-2023 02:12:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jun-2023 02:12:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jun-2023 02:12:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jun-2023 02:12:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2023 03:06:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2023 03:06:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2023 03:06:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2023 03:06:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jun-2023 13:56:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jun-2023 13:56:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jun-2023 13:56:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jun-2023 13:56:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jun-2023 18:29:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jun-2023 18:29:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jun-2023 18:29:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jun-2023 18:29:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2023 06:48:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2023 06:48:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2023 06:48:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2023 06:48:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2023 14:25:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2023 14:25:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2023 14:25:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2023 14:25:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2023 04:11:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2023 04:11:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2023 04:11:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2023 04:11:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jul-2023 00:21:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jul-2023 00:21:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jul-2023 00:21:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jul-2023 00:21:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jul-2023 16:08:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jul-2023 16:08:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Jul-2023 16:08:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Jul-2023 16:08:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jul-2023 17:58:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jul-2023 17:58:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jul-2023 17:58:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jul-2023 17:58:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jul-2023 23:42:11 UTC] Error reading Wordfence Firewall config data, configuration file could be corrupted or inaccessible. Path: /home/veronikagstoette/public_html/wp-content/wflogs/config-synced.php
[04-Jul-2023 23:42:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jul-2023 23:42:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jul-2023 23:42:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jul-2023 23:42:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jul-2023 21:29:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jul-2023 21:29:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jul-2023 21:29:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jul-2023 21:29:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jul-2023 01:02:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jul-2023 01:02:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jul-2023 01:02:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jul-2023 01:02:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jul-2023 10:52:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jul-2023 10:52:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Jul-2023 10:52:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Jul-2023 10:52:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Jul-2023 13:55:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Jul-2023 13:55:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Jul-2023 13:55:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Jul-2023 13:55:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Jul-2023 18:44:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Jul-2023 18:44:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Jul-2023 18:44:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Jul-2023 18:44:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jul-2023 15:43:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jul-2023 15:43:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jul-2023 15:43:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jul-2023 15:43:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 05:37:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 05:37:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 05:37:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 05:37:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 09:03:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 09:03:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 09:03:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 09:03:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 19:38:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 19:38:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2023 19:38:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2023 19:38:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jul-2023 12:35:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jul-2023 12:35:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jul-2023 12:35:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jul-2023 12:35:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jul-2023 16:36:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jul-2023 16:36:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jul-2023 16:36:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jul-2023 16:36:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jul-2023 04:21:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jul-2023 04:21:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Jul-2023 04:21:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Jul-2023 04:21:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2023 17:04:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2023 17:04:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2023 17:04:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2023 17:04:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2023 19:40:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2023 19:40:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2023 19:40:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2023 19:40:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 03:03:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 03:03:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 03:03:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 03:03:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 06:29:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 06:29:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 06:29:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 06:29:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 19:47:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 19:47:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Jul-2023 19:47:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Jul-2023 19:47:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jul-2023 01:05:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jul-2023 01:05:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jul-2023 01:05:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jul-2023 01:05:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jul-2023 11:57:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jul-2023 11:57:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jul-2023 11:57:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jul-2023 11:57:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2023 03:27:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2023 03:27:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2023 03:27:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2023 03:27:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2023 05:07:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2023 05:07:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2023 05:07:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2023 05:07:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 01:01:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 01:01:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 01:01:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 01:01:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 19:10:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 19:10:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 19:10:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 19:10:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 23:15:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 23:15:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2023 23:15:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2023 23:15:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 10:29:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 10:29:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 10:29:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 10:29:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 15:38:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 15:38:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 15:38:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 15:38:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 16:04:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 16:04:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 16:04:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 16:04:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 16:08:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 16:08:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jul-2023 16:08:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jul-2023 16:08:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Jul-2023 22:45:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Jul-2023 22:45:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Jul-2023 22:45:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Jul-2023 22:45:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2023 03:04:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2023 03:04:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2023 03:04:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2023 03:04:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2023 20:59:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2023 20:59:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2023 20:59:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2023 20:59:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jul-2023 17:26:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jul-2023 17:26:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jul-2023 17:26:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jul-2023 17:26:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jul-2023 18:59:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jul-2023 18:59:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jul-2023 18:59:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jul-2023 18:59:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 07:46:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 07:46:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 07:46:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 07:46:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 14:48:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 14:48:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 14:48:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 14:48:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 18:38:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 18:38:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jul-2023 18:38:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jul-2023 18:38:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2023 06:35:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2023 06:35:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2023 06:35:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2023 06:35:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2023 15:08:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2023 15:08:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2023 15:08:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2023 15:08:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jul-2023 09:38:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jul-2023 09:38:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jul-2023 09:38:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jul-2023 09:38:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jul-2023 12:37:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jul-2023 12:37:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jul-2023 12:37:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jul-2023 12:37:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 14:14:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 14:14:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 14:14:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 14:14:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 16:31:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 16:31:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 16:31:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 16:31:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 19:37:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 19:37:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jul-2023 19:37:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jul-2023 19:37:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jul-2023 11:44:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jul-2023 11:44:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jul-2023 11:44:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jul-2023 11:44:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 12:55:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 12:55:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 12:55:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 12:55:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 13:33:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 13:33:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 13:33:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 13:33:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 15:24:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 15:24:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2023 15:24:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2023 15:24:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2023 11:28:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2023 11:28:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2023 11:28:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2023 11:28:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2023 13:26:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2023 13:26:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2023 13:26:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2023 13:26:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 00:54:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 00:54:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 00:54:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 00:54:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 06:57:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 06:57:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 06:57:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 06:57:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 15:14:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 15:14:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Aug-2023 15:14:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Aug-2023 15:14:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 09:27:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 09:27:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 09:27:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 09:27:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 10:32:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 10:32:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 10:32:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 10:32:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 19:39:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 19:39:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2023 19:39:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2023 19:39:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Aug-2023 03:51:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Aug-2023 03:51:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Aug-2023 03:51:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Aug-2023 03:51:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Aug-2023 07:00:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Aug-2023 07:00:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Aug-2023 07:00:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Aug-2023 07:00:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2023 03:06:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2023 03:06:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2023 03:06:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2023 03:06:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2023 23:58:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2023 23:58:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2023 23:58:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2023 23:58:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 17:23:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 17:23:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 17:23:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 17:23:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 23:40:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 23:40:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 23:40:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 23:40:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 23:54:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 23:54:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Aug-2023 23:54:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Aug-2023 23:54:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Aug-2023 01:35:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Aug-2023 01:35:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Aug-2023 01:35:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Aug-2023 01:35:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2023 06:12:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2023 06:12:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2023 06:12:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2023 06:12:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2023 23:33:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2023 23:33:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2023 23:33:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2023 23:33:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Aug-2023 06:12:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Aug-2023 06:12:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Aug-2023 06:12:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Aug-2023 06:12:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Aug-2023 17:37:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Aug-2023 17:37:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Aug-2023 17:37:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Aug-2023 17:37:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Aug-2023 00:22:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Aug-2023 00:22:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Aug-2023 00:22:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Aug-2023 00:22:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Aug-2023 01:42:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Aug-2023 01:42:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Aug-2023 01:42:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Aug-2023 01:42:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Aug-2023 11:31:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Aug-2023 11:31:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Aug-2023 11:31:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Aug-2023 11:31:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2023 05:06:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2023 05:06:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2023 05:06:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2023 05:06:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2023 17:34:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2023 17:34:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2023 17:34:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2023 17:34:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Aug-2023 19:25:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Aug-2023 19:25:47 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Aug-2023 19:25:47 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Aug-2023 19:25:47 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Aug-2023 05:31:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Aug-2023 05:31:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Aug-2023 05:31:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Aug-2023 05:31:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Aug-2023 08:41:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Aug-2023 08:41:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Aug-2023 08:41:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Aug-2023 08:41:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2023 17:37:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2023 17:37:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2023 17:37:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2023 17:37:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Aug-2023 01:40:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Aug-2023 01:40:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Aug-2023 01:40:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Aug-2023 01:40:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Aug-2023 12:24:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Aug-2023 12:24:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Aug-2023 12:24:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Aug-2023 12:24:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Aug-2023 00:33:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Aug-2023 00:33:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Aug-2023 00:33:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Aug-2023 00:33:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Aug-2023 00:48:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Aug-2023 00:48:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Aug-2023 00:48:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Aug-2023 00:48:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2023 19:04:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2023 19:04:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2023 19:04:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2023 19:04:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2023 13:14:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2023 13:14:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2023 13:14:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2023 13:14:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2023 17:39:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2023 17:39:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2023 17:39:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2023 17:39:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Sep-2023 00:10:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Sep-2023 00:10:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Sep-2023 00:10:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Sep-2023 00:10:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Sep-2023 21:14:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Sep-2023 21:14:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Sep-2023 21:14:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Sep-2023 21:14:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Sep-2023 22:10:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Sep-2023 22:10:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Sep-2023 22:10:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Sep-2023 22:10:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2023 01:18:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2023 01:18:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2023 01:18:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2023 01:18:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Sep-2023 14:27:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Sep-2023 14:27:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Sep-2023 14:27:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Sep-2023 14:27:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Nov-2023 10:34:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Nov-2023 10:34:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Nov-2023 10:34:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Nov-2023 10:34:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2023 18:00:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2023 18:00:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2023 18:00:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2023 18:00:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2023 09:54:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2023 09:54:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2023 09:54:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2023 09:54:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Nov-2023 13:54:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Nov-2023 13:54:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Nov-2023 13:54:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Nov-2023 13:54:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2023 12:41:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2023 12:41:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2023 12:41:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2023 12:41:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2023 02:37:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2023 02:37:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2023 02:37:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2023 02:37:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2023 18:29:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2023 18:29:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Nov-2023 18:29:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Nov-2023 18:29:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 18:57:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 18:57:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 18:57:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 18:57:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 19:19:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 19:19:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 19:19:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 19:19:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 23:49:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 23:49:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Nov-2023 23:49:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Nov-2023 23:49:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Nov-2023 14:32:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Nov-2023 14:32:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Nov-2023 14:32:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Nov-2023 14:32:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2023 19:02:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2023 19:02:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Dec-2023 19:02:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Dec-2023 19:02:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2023 17:09:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2023 17:09:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Dec-2023 17:09:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Dec-2023 17:09:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Dec-2023 01:27:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Dec-2023 01:27:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Dec-2023 01:27:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Dec-2023 01:27:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Dec-2023 21:41:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Dec-2023 21:41:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Dec-2023 21:41:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Dec-2023 21:41:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Dec-2023 12:47:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Dec-2023 12:47:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Dec-2023 12:47:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Dec-2023 12:47:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Dec-2023 20:16:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Dec-2023 20:16:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Dec-2023 20:16:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Dec-2023 20:16:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Dec-2023 19:31:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Dec-2023 19:31:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Dec-2023 19:31:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Dec-2023 19:31:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Dec-2023 18:19:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Dec-2023 18:19:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Dec-2023 18:19:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Dec-2023 18:19:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Dec-2023 20:59:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Dec-2023 20:59:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Dec-2023 20:59:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Dec-2023 20:59:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jan-2024 23:46:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jan-2024 23:46:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jan-2024 23:46:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jan-2024 23:46:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jan-2024 14:00:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jan-2024 14:00:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jan-2024 14:00:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jan-2024 14:00:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jan-2024 12:40:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jan-2024 12:40:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jan-2024 12:40:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jan-2024 12:40:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jan-2024 21:48:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jan-2024 21:48:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jan-2024 21:48:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jan-2024 21:48:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2024 14:32:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2024 14:32:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Jan-2024 14:32:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Jan-2024 14:32:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jan-2024 04:05:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jan-2024 04:05:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jan-2024 04:05:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jan-2024 04:05:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jan-2024 04:19:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jan-2024 04:19:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jan-2024 04:19:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jan-2024 04:19:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jan-2024 15:30:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jan-2024 15:30:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jan-2024 15:30:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jan-2024 15:30:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jan-2024 16:53:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jan-2024 16:53:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Jan-2024 16:53:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Jan-2024 16:53:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jan-2024 02:29:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jan-2024 02:29:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jan-2024 02:29:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jan-2024 02:29:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jan-2024 10:40:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jan-2024 10:40:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Jan-2024 10:40:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Jan-2024 10:40:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jan-2024 20:43:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jan-2024 20:43:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jan-2024 20:43:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jan-2024 20:43:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jan-2024 21:51:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jan-2024 21:51:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jan-2024 21:51:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jan-2024 21:51:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jan-2024 18:01:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jan-2024 18:01:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jan-2024 18:01:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jan-2024 18:01:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Feb-2024 20:31:49 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Feb-2024 20:31:49 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Feb-2024 20:31:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Feb-2024 20:31:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Feb-2024 02:25:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Feb-2024 02:25:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Feb-2024 02:25:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Feb-2024 02:25:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Feb-2024 05:35:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Feb-2024 05:35:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Feb-2024 05:35:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Feb-2024 05:35:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2024 04:14:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2024 04:14:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Feb-2024 04:14:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Feb-2024 04:14:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Feb-2024 05:25:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Feb-2024 05:25:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Feb-2024 05:25:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Feb-2024 05:25:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Feb-2024 18:20:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Feb-2024 18:20:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Feb-2024 18:20:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Feb-2024 18:20:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Feb-2024 01:45:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Feb-2024 01:45:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Feb-2024 01:45:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Feb-2024 01:45:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Feb-2024 02:42:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Feb-2024 02:42:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Feb-2024 02:42:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Feb-2024 02:42:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Feb-2024 03:26:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Feb-2024 03:26:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Feb-2024 03:26:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Feb-2024 03:26:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Mar-2024 20:17:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Mar-2024 20:17:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Mar-2024 20:17:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Mar-2024 20:17:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Mar-2024 17:35:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Mar-2024 17:35:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Mar-2024 17:35:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Mar-2024 17:35:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Mar-2024 13:43:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Mar-2024 13:43:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Mar-2024 13:43:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Mar-2024 13:43:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Mar-2024 23:27:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Mar-2024 23:27:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Mar-2024 23:27:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Mar-2024 23:27:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Mar-2024 04:58:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Mar-2024 04:58:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Mar-2024 04:58:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Mar-2024 04:58:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Mar-2024 05:27:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Mar-2024 05:27:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Mar-2024 05:27:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Mar-2024 05:27:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Mar-2024 05:42:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Mar-2024 05:42:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Mar-2024 05:42:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Mar-2024 05:42:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Mar-2024 09:37:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Mar-2024 09:37:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Mar-2024 09:37:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Mar-2024 09:37:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Mar-2024 07:52:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Mar-2024 07:52:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Mar-2024 07:52:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Mar-2024 07:52:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Mar-2024 07:15:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Mar-2024 07:15:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Mar-2024 07:15:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Mar-2024 07:15:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Mar-2024 01:25:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Mar-2024 01:25:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Mar-2024 01:25:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Mar-2024 01:25:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Mar-2024 13:09:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Mar-2024 13:09:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Mar-2024 13:09:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Mar-2024 13:09:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2024 08:59:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2024 08:59:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2024 08:59:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2024 08:59:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2024 18:47:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2024 18:47:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Mar-2024 18:47:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Mar-2024 18:47:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2024 04:15:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2024 04:15:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2024 04:15:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2024 04:15:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2024 23:33:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2024 23:33:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Mar-2024 23:33:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Mar-2024 23:33:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Mar-2024 11:19:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Mar-2024 11:19:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Mar-2024 11:19:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Mar-2024 11:19:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Mar-2024 11:31:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Mar-2024 11:31:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Mar-2024 11:31:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Mar-2024 11:31:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Mar-2024 16:01:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Mar-2024 16:01:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Mar-2024 16:01:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Mar-2024 16:01:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Apr-2024 02:43:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Apr-2024 02:43:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Apr-2024 02:43:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Apr-2024 02:43:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2024 08:49:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2024 08:49:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Apr-2024 08:49:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Apr-2024 08:49:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2024 13:54:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2024 13:54:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Apr-2024 13:54:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Apr-2024 13:54:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Apr-2024 02:20:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Apr-2024 02:20:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Apr-2024 02:20:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Apr-2024 02:20:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Apr-2024 19:12:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Apr-2024 19:12:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Apr-2024 19:12:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Apr-2024 19:12:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Apr-2024 04:11:43 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Apr-2024 04:11:43 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Apr-2024 04:11:43 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Apr-2024 04:11:43 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Apr-2024 09:07:23 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Apr-2024 09:07:23 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Apr-2024 09:07:23 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Apr-2024 09:07:23 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2024 12:51:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2024 12:51:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2024 12:51:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2024 12:51:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2024 13:01:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2024 13:01:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Apr-2024 13:01:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Apr-2024 13:01:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2024 16:44:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2024 16:44:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Apr-2024 16:44:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Apr-2024 16:44:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Apr-2024 15:23:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Apr-2024 15:23:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Apr-2024 15:23:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Apr-2024 15:23:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Apr-2024 00:28:27 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Apr-2024 00:28:27 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Apr-2024 00:28:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Apr-2024 00:28:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Apr-2024 02:00:14 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Apr-2024 02:00:14 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Apr-2024 02:00:14 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Apr-2024 02:00:14 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2024 08:34:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2024 08:34:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Apr-2024 08:34:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Apr-2024 08:34:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Apr-2024 23:08:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Apr-2024 23:08:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[24-Apr-2024 23:08:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[24-Apr-2024 23:08:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Apr-2024 21:53:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Apr-2024 21:53:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Apr-2024 21:53:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Apr-2024 21:53:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Apr-2024 14:34:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Apr-2024 14:34:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Apr-2024 14:34:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Apr-2024 14:34:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2024 05:37:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2024 05:37:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Apr-2024 05:37:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Apr-2024 05:37:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Apr-2024 19:55:36 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Apr-2024 19:55:36 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Apr-2024 19:55:36 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Apr-2024 19:55:36 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-May-2024 06:31:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-May-2024 06:31:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-May-2024 06:31:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-May-2024 06:31:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-May-2024 13:10:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-May-2024 13:10:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-May-2024 13:10:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-May-2024 13:10:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2024 08:14:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2024 08:14:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2024 08:14:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2024 08:14:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2024 20:55:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2024 20:55:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-May-2024 20:55:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-May-2024 20:55:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-May-2024 11:23:16 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-May-2024 11:23:16 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-May-2024 11:23:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-May-2024 11:23:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 08:22:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 08:22:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 08:22:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 08:22:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 11:28:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 11:28:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 11:28:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 11:28:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 20:57:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 20:57:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-May-2024 20:57:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-May-2024 20:57:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-May-2024 23:09:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-May-2024 23:09:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-May-2024 23:09:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-May-2024 23:09:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2024 15:21:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2024 15:21:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-May-2024 15:21:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-May-2024 15:21:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-May-2024 22:17:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-May-2024 22:17:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-May-2024 22:17:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-May-2024 22:17:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2024 07:21:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2024 07:21:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-May-2024 07:21:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-May-2024 07:21:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2024 11:37:52 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2024 11:37:52 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2024 11:37:52 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2024 11:37:52 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2024 11:43:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2024 11:43:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-May-2024 11:43:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-May-2024 11:43:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2024 11:45:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2024 11:45:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jun-2024 11:45:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jun-2024 11:45:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jun-2024 17:40:49 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jun-2024 17:40:49 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jun-2024 17:40:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jun-2024 17:40:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2024 13:32:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2024 13:32:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Jun-2024 13:32:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Jun-2024 13:32:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jun-2024 15:22:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jun-2024 15:22:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jun-2024 15:22:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jun-2024 15:22:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2024 13:29:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2024 13:29:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Jun-2024 13:29:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Jun-2024 13:29:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jun-2024 05:37:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jun-2024 05:37:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Jun-2024 05:37:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Jun-2024 05:37:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jun-2024 18:57:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jun-2024 18:57:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jun-2024 18:57:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jun-2024 18:57:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2024 06:39:46 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2024 06:39:46 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jun-2024 06:39:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jun-2024 06:39:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jun-2024 02:46:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jun-2024 02:46:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jun-2024 02:46:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jun-2024 02:46:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jun-2024 04:35:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jun-2024 04:35:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jun-2024 04:35:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jun-2024 04:35:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jun-2024 19:35:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jun-2024 19:35:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Jun-2024 19:35:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Jun-2024 19:35:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 12:26:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 12:26:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 12:26:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 12:26:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 20:00:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 20:00:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 20:00:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 20:00:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 22:33:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 22:33:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 22:33:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 22:33:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 23:40:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 23:40:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jun-2024 23:40:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jun-2024 23:40:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2024 13:25:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2024 13:25:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2024 13:25:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2024 13:25:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2024 20:38:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2024 20:38:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Jun-2024 20:38:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Jun-2024 20:38:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2024 14:28:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2024 14:28:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2024 14:28:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2024 14:28:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2024 19:08:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2024 19:08:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Jun-2024 19:08:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Jun-2024 19:08:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jun-2024 21:12:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jun-2024 21:12:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jun-2024 21:12:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jun-2024 21:12:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jun-2024 22:50:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jun-2024 22:50:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Jun-2024 22:50:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Jun-2024 22:50:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jun-2024 23:37:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jun-2024 23:37:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Jun-2024 23:37:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Jun-2024 23:37:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jun-2024 15:20:19 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jun-2024 15:20:19 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jun-2024 15:20:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jun-2024 15:20:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2024 04:16:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2024 04:16:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[01-Jul-2024 04:16:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[01-Jul-2024 04:16:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2024 07:23:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2024 07:23:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2024 07:23:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2024 07:23:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2024 13:23:20 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2024 13:23:20 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Jul-2024 13:23:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Jul-2024 13:23:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jul-2024 00:09:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jul-2024 00:09:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Jul-2024 00:09:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Jul-2024 00:09:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2024 17:49:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2024 17:49:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Jul-2024 17:49:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Jul-2024 17:49:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2024 03:37:25 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2024 03:37:25 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Jul-2024 03:37:25 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Jul-2024 03:37:25 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jul-2024 22:21:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jul-2024 22:21:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Jul-2024 22:21:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Jul-2024 22:21:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2024 00:16:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2024 00:16:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2024 00:16:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2024 00:16:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2024 07:07:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2024 07:07:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Jul-2024 07:07:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Jul-2024 07:07:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2024 12:16:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2024 12:16:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2024 12:16:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2024 12:16:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2024 19:41:38 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2024 19:41:38 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Jul-2024 19:41:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Jul-2024 19:41:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2024 05:39:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2024 05:39:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Jul-2024 05:39:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Jul-2024 05:39:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2024 02:35:34 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2024 02:35:34 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2024 02:35:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2024 02:35:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2024 03:47:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2024 03:47:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Jul-2024 03:47:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Jul-2024 03:47:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jul-2024 23:47:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jul-2024 23:47:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Jul-2024 23:47:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Jul-2024 23:47:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2024 03:13:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2024 03:13:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2024 03:13:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2024 03:13:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2024 23:14:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2024 23:14:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Jul-2024 23:14:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Jul-2024 23:14:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2024 18:26:48 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2024 18:26:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Aug-2024 18:26:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Aug-2024 18:26:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2024 23:51:15 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2024 23:51:15 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Aug-2024 23:51:15 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Aug-2024 23:51:15 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2024 03:58:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2024 03:58:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2024 03:58:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2024 03:58:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2024 09:16:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2024 09:16:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Aug-2024 09:16:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Aug-2024 09:16:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2024 23:22:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2024 23:22:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Aug-2024 23:22:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Aug-2024 23:22:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Aug-2024 12:53:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Aug-2024 12:53:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[13-Aug-2024 12:53:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[13-Aug-2024 12:53:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2024 22:00:08 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2024 22:00:08 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Aug-2024 22:00:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Aug-2024 22:00:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Aug-2024 02:19:58 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Aug-2024 02:19:58 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Aug-2024 02:19:58 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Aug-2024 02:19:58 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2024 10:20:42 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2024 10:20:42 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2024 10:20:42 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2024 10:20:42 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2024 17:26:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2024 17:26:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Aug-2024 17:26:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Aug-2024 17:26:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Aug-2024 10:26:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Aug-2024 10:26:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Aug-2024 10:26:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Aug-2024 10:26:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Aug-2024 07:50:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Aug-2024 07:50:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Aug-2024 07:50:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Aug-2024 07:50:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Aug-2024 08:38:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Aug-2024 08:38:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Aug-2024 08:38:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Aug-2024 08:38:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Aug-2024 15:13:00 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Aug-2024 15:13:00 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[26-Aug-2024 15:13:00 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[26-Aug-2024 15:13:00 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Aug-2024 18:16:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Aug-2024 18:16:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Aug-2024 18:16:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Aug-2024 18:16:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Aug-2024 04:18:31 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Aug-2024 04:18:31 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Aug-2024 04:18:31 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Aug-2024 04:18:31 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 11:38:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 11:38:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 11:38:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 11:38:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 14:25:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 14:25:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 14:25:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 14:25:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 16:31:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 16:31:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Aug-2024 16:31:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Aug-2024 16:31:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2024 05:20:56 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2024 05:20:56 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Aug-2024 05:20:56 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Aug-2024 05:20:56 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Sep-2024 14:25:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Sep-2024 14:25:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Sep-2024 14:25:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Sep-2024 14:25:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Sep-2024 12:34:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Sep-2024 12:34:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Sep-2024 12:34:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Sep-2024 12:34:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2024 11:08:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2024 11:08:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2024 11:08:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2024 11:08:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2024 17:30:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2024 17:30:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Sep-2024 17:30:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Sep-2024 17:30:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Sep-2024 20:42:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Sep-2024 20:42:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[17-Sep-2024 20:42:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[17-Sep-2024 20:42:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Sep-2024 06:11:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Sep-2024 06:11:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Sep-2024 06:11:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Sep-2024 06:11:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Sep-2024 23:59:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Sep-2024 23:59:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Sep-2024 23:59:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Sep-2024 23:59:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Sep-2024 18:25:10 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Sep-2024 18:25:10 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Sep-2024 18:25:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Sep-2024 18:25:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Sep-2024 19:27:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Sep-2024 19:27:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[19-Sep-2024 19:27:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[19-Sep-2024 19:27:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Sep-2024 10:13:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Sep-2024 10:13:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Sep-2024 10:13:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Sep-2024 10:13:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Sep-2024 09:14:59 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Sep-2024 09:14:59 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Sep-2024 09:14:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Sep-2024 09:14:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Sep-2024 04:08:18 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Sep-2024 04:08:18 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Sep-2024 04:08:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Sep-2024 04:08:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Sep-2024 05:35:01 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Sep-2024 05:35:01 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Sep-2024 05:35:01 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Sep-2024 05:35:01 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Sep-2024 19:35:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Sep-2024 19:35:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[28-Sep-2024 19:35:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[28-Sep-2024 19:35:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Sep-2024 04:06:50 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Sep-2024 04:06:50 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Sep-2024 04:06:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Sep-2024 04:06:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Sep-2024 13:08:03 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Sep-2024 13:08:03 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Sep-2024 13:08:03 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Sep-2024 13:08:03 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Sep-2024 12:42:26 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Sep-2024 12:42:26 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[30-Sep-2024 12:42:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[30-Sep-2024 12:42:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Oct-2024 18:03:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Oct-2024 18:03:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Oct-2024 18:03:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Oct-2024 18:03:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Oct-2024 12:36:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Oct-2024 12:36:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Oct-2024 12:36:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Oct-2024 12:36:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Oct-2024 02:37:33 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Oct-2024 02:37:33 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Oct-2024 02:37:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Oct-2024 02:37:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Oct-2024 09:25:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Oct-2024 09:25:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[06-Oct-2024 09:25:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[06-Oct-2024 09:25:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Oct-2024 23:25:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Oct-2024 23:25:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[09-Oct-2024 23:25:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[09-Oct-2024 23:25:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Oct-2024 04:00:47 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Oct-2024 04:00:48 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Oct-2024 04:00:48 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Oct-2024 04:00:48 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Oct-2024 14:32:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Oct-2024 14:32:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Oct-2024 14:32:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Oct-2024 14:32:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Oct-2024 05:20:02 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Oct-2024 05:20:02 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Oct-2024 05:20:02 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Oct-2024 05:20:02 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Oct-2024 01:01:24 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Oct-2024 01:01:24 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Oct-2024 01:01:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Oct-2024 01:01:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Oct-2024 09:26:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Oct-2024 09:26:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[14-Oct-2024 09:26:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[14-Oct-2024 09:26:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Oct-2024 19:36:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Oct-2024 19:36:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[15-Oct-2024 19:36:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[15-Oct-2024 19:36:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Oct-2024 06:26:51 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Oct-2024 06:26:51 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[16-Oct-2024 06:26:51 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[16-Oct-2024 06:26:51 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Oct-2024 13:45:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Oct-2024 13:45:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[18-Oct-2024 13:45:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[18-Oct-2024 13:45:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Oct-2024 05:55:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Oct-2024 05:55:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[20-Oct-2024 05:55:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[20-Oct-2024 05:55:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Oct-2024 07:21:21 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Oct-2024 07:21:21 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[21-Oct-2024 07:21:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[21-Oct-2024 07:21:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Oct-2024 11:23:28 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Oct-2024 11:23:28 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[22-Oct-2024 11:23:28 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[22-Oct-2024 11:23:28 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Oct-2024 05:02:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Oct-2024 05:02:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[23-Oct-2024 05:02:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[23-Oct-2024 05:02:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Oct-2024 09:30:30 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Oct-2024 09:30:30 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Oct-2024 09:30:30 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Oct-2024 09:30:30 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Oct-2024 21:45:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Oct-2024 21:45:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[25-Oct-2024 21:45:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[25-Oct-2024 21:45:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Oct-2024 19:48:53 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Oct-2024 19:48:53 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[27-Oct-2024 19:48:53 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[27-Oct-2024 19:48:53 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 00:06:07 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 00:06:07 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 00:06:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 00:06:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 01:31:37 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 01:31:37 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 01:31:37 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 01:31:37 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 22:20:55 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 22:20:55 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[29-Oct-2024 22:20:55 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[29-Oct-2024 22:20:55 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Oct-2024 12:30:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Oct-2024 12:30:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[31-Oct-2024 12:30:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[31-Oct-2024 12:30:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 13:12:32 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 13:12:32 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 13:12:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 13:12:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 17:27:35 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 17:27:35 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 17:27:35 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 17:27:35 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 23:08:09 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 23:08:09 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[02-Nov-2024 23:08:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[02-Nov-2024 23:08:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Nov-2024 18:44:29 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Nov-2024 18:44:29 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[03-Nov-2024 18:44:29 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[03-Nov-2024 18:44:29 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Nov-2024 13:12:40 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Nov-2024 13:12:40 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[04-Nov-2024 13:12:40 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[04-Nov-2024 13:12:40 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Nov-2024 23:22:04 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Nov-2024 23:22:04 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[05-Nov-2024 23:22:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[05-Nov-2024 23:22:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Nov-2024 07:24:54 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Nov-2024 07:24:54 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Nov-2024 07:24:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Nov-2024 07:24:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Nov-2024 14:11:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Nov-2024 14:11:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[07-Nov-2024 14:11:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[07-Nov-2024 14:11:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2024 04:02:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2024 04:02:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2024 04:02:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2024 04:02:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2024 10:39:05 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2024 10:39:05 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[08-Nov-2024 10:39:05 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Nov-2024 10:39:05 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2024 15:47:22 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2024 15:47:22 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[10-Nov-2024 15:47:22 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[10-Nov-2024 15:47:22 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Nov-2024 00:49:45 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Nov-2024 00:49:45 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[11-Nov-2024 00:49:45 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[11-Nov-2024 00:49:45 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2024 13:29:12 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2024 13:29:12 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 8
[12-Nov-2024 13:29:12 UTC] PHP Warning: require(ABSPATHWPINC/blocks/legacy-widget.php): failed to open stream: No such file or directory in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[12-Nov-2024 13:29:12 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/legacy-widget.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/veronikagstoette/public_html/wp-includes/blocks/index.php on line 11
[08-Oct-2025 01:20:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/file.php:62
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/file.php on line 62
[20-Mar-2026 22:51:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php:240
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php on line 240
[20-Mar-2026 22:51:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php:145
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php on line 145
[20-Mar-2026 22:51:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/search.php:213
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/search.php on line 213
[30-Mar-2026 09:08:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php:240
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php on line 240
[30-Mar-2026 09:08:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php:145
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php on line 145
[30-Mar-2026 09:08:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/search.php:213
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/search.php on line 213
[04-Apr-2026 13:54:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php:240
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php on line 240
[04-Apr-2026 13:54:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php:145
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php on line 145
[04-Apr-2026 13:54:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/search.php:213
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/search.php on line 213
[08-Apr-2026 21:47:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php:240
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/latest-posts.php on line 240
[08-Apr-2026 21:47:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php:145
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/rss.php on line 145
[08-Apr-2026 21:47:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/veronikagstoette/public_html/wp-includes/blocks/search.php:213
Stack trace:
#0 {main}
thrown in /home/veronikagstoette/public_html/wp-includes/blocks/search.php on line 213
post-content.php 0000644 00000005154 15246340743 0007727 0 ustar 00 context['postId'] ) ) {
return '';
}
$post_id = $block->context['postId'];
if ( isset( $seen_ids[ $post_id ] ) ) {
// WP_DEBUG_DISPLAY must only be honored when WP_DEBUG. This precedent
// is set in `wp_debug_mode()`.
$is_debug = WP_DEBUG && WP_DEBUG_DISPLAY;
return $is_debug ?
// translators: Visible only in the front end, this warning takes the place of a faulty block.
__( '[block rendering halted]' ) :
'';
}
$seen_ids[ $post_id ] = true;
// When inside the main loop, we want to use queried object
// so that `the_preview` for the current post can apply.
// We force this behavior by omitting the third argument (post ID) from the `get_the_content`.
$content = get_the_content();
// Check for nextpage to display page links for paginated posts.
if ( has_block( 'core/nextpage' ) ) {
$content .= wp_link_pages( array( 'echo' => 0 ) );
}
/** This filter is documented in wp-includes/post-template.php */
$content = apply_filters( 'the_content', str_replace( ']]>', ']]>', $content ) );
unset( $seen_ids[ $post_id ] );
if ( empty( $content ) ) {
return '';
}
$tag_name = 'div';
if ( isset( $attributes['tagName'] ) && is_string( $attributes['tagName'] ) ) {
/**
* The allowed tag names match the options offered in the editor.
*
* @see packages/block-library/src/post-content/edit.js
*/
$allowed_tag_names = array( 'div', 'main', 'section', 'article' );
$normalized_tag_name = strtolower( $attributes['tagName'] );
if ( in_array( $normalized_tag_name, $allowed_tag_names, true ) ) {
$tag_name = $normalized_tag_name;
}
}
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => 'entry-content' ) );
return sprintf(
'<%1$s %2$s>%3$s%1$s>',
$tag_name,
$wrapper_attributes,
$content
);
}
/**
* Registers the `core/post-content` block on the server.
*
* @since 5.8.0
*/
function register_block_core_post_content() {
register_block_type_from_metadata(
__DIR__ . '/post-content',
array(
'render_callback' => 'render_block_core_post_content',
)
);
}
add_action( 'init', 'register_block_core_post_content' );
index.php 0000644 00000011760 15246340743 0006401 0 ustar 00 'style',
'editorStyle' => 'editor',
);
static $core_blocks_meta;
if ( ! $core_blocks_meta ) {
$core_blocks_meta = require BLOCKS_PATH . 'blocks-json.php';
}
$files = false;
$transient_name = 'wp_core_block_css_files';
/*
* Ignore transient cache when the development mode is set to 'core'. Why? To avoid interfering with
* the core developer's workflow.
*/
$can_use_cached = ! wp_is_development_mode( 'core' );
if ( $can_use_cached ) {
$cached_files = get_transient( $transient_name );
// Check the validity of cached values by checking against the current WordPress version.
if (
is_array( $cached_files )
&& isset( $cached_files['version'] )
&& $cached_files['version'] === $wp_version
&& isset( $cached_files['files'] )
) {
$files = $cached_files['files'];
}
}
if ( ! $files ) {
$files = glob( wp_normalize_path( BLOCKS_PATH . '**/**.css' ) );
// Normalize BLOCKS_PATH prior to substitution for Windows environments.
$normalized_blocks_path = wp_normalize_path( BLOCKS_PATH );
$files = array_map(
static function ( $file ) use ( $normalized_blocks_path ) {
return str_replace( $normalized_blocks_path, '', $file );
},
$files
);
// Save core block style paths in cache when not in development mode.
if ( $can_use_cached ) {
set_transient(
$transient_name,
array(
'version' => $wp_version,
'files' => $files,
)
);
}
}
$register_style = static function ( $name, $filename, $style_handle ) use ( $blocks_url, $suffix, $wp_styles, $files ) {
$style_path = "{$name}/{$filename}{$suffix}.css";
$path = wp_normalize_path( BLOCKS_PATH . $style_path );
if ( ! in_array( $style_path, $files, true ) ) {
$wp_styles->add(
$style_handle,
false
);
return;
}
$wp_styles->add( $style_handle, $blocks_url . $style_path );
$wp_styles->add_data( $style_handle, 'path', $path );
$rtl_file = "{$name}/{$filename}-rtl{$suffix}.css";
if ( is_rtl() && in_array( $rtl_file, $files, true ) ) {
$wp_styles->add_data( $style_handle, 'rtl', 'replace' );
$wp_styles->add_data( $style_handle, 'suffix', $suffix );
$wp_styles->add_data( $style_handle, 'path', str_replace( "{$suffix}.css", "-rtl{$suffix}.css", $path ) );
}
};
foreach ( $core_blocks_meta as $name => $schema ) {
/** This filter is documented in wp-includes/blocks.php */
$schema = apply_filters( 'block_type_metadata', $schema );
// Backfill these properties similar to `register_block_type_from_metadata()`.
if ( ! isset( $schema['style'] ) ) {
$schema['style'] = "wp-block-{$name}";
}
if ( ! isset( $schema['editorStyle'] ) ) {
$schema['editorStyle'] = "wp-block-{$name}-editor";
}
// Register block theme styles.
$register_style( $name, 'theme', "wp-block-{$name}-theme" );
foreach ( $style_fields as $style_field => $filename ) {
$style_handle = $schema[ $style_field ];
if ( is_array( $style_handle ) ) {
continue;
}
$register_style( $name, $filename, $style_handle );
}
}
}
add_action( 'init', 'register_core_block_style_handles', 9 );
/**
* Registers core block types using metadata files.
* Dynamic core blocks are registered separately.
*
* @since 5.5.0
*/
function register_core_block_types_from_metadata() {
$block_folders = require BLOCKS_PATH . 'require-static-blocks.php';
foreach ( $block_folders as $block_folder ) {
register_block_type_from_metadata(
BLOCKS_PATH . $block_folder
);
}
}
add_action( 'init', 'register_core_block_types_from_metadata' );
/**
* Registers the core block metadata collection.
*
* This function is hooked into the 'init' action with a priority of 9,
* ensuring that the core block metadata is registered before the regular
* block initialization that happens at priority 10.
*
* @since 6.7.0
*/
function wp_register_core_block_metadata_collection() {
wp_register_block_metadata_collection(
BLOCKS_PATH,
BLOCKS_PATH . 'blocks-json.php'
);
}
add_action( 'init', 'wp_register_core_block_metadata_collection', 9 );
text-columns/editor.min.css 0000644 00000000126 15246340743 0011777 0 ustar 00 .wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd} text-columns/block.json 0000644 00000001420 15246340743 0011200 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/text-columns",
"title": "Text Columns (deprecated)",
"icon": "columns",
"category": "design",
"description": "This block is deprecated. Please use the Columns block instead.",
"textdomain": "default",
"attributes": {
"content": {
"type": "array",
"source": "query",
"selector": "p",
"query": {
"children": {
"type": "string",
"source": "html"
}
},
"default": [ {}, {} ]
},
"columns": {
"type": "number",
"default": 2
},
"width": {
"type": "string"
}
},
"supports": {
"inserter": false,
"interactivity": {
"clientNavigation": true
}
},
"editorStyle": "wp-block-text-columns-editor",
"style": "wp-block-text-columns"
}
text-columns/style-rtl.css 0000644 00000001031 15246340743 0011662 0 ustar 00 .wp-block-text-columns {
display: flex;
}
.wp-block-text-columns.aligncenter {
display: flex;
}
.wp-block-text-columns .wp-block-column {
margin: 0 1em;
padding: 0;
}
.wp-block-text-columns .wp-block-column:first-child {
margin-right: 0;
}
.wp-block-text-columns .wp-block-column:last-child {
margin-left: 0;
}
.wp-block-text-columns.columns-2 .wp-block-column {
width: 50%;
}
.wp-block-text-columns.columns-3 .wp-block-column {
width: 33.3333333333%;
}
.wp-block-text-columns.columns-4 .wp-block-column {
width: 25%;
} text-columns/style.min.css 0000644 00000000711 15246340743 0011651 0 ustar 00 .wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.3333333333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%} text-columns/editor-rtl.min.css 0000644 00000000126 15246340743 0012576 0 ustar 00 .wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd} text-columns/style.css 0000644 00000001031 15246340743 0011063 0 ustar 00 .wp-block-text-columns {
display: flex;
}
.wp-block-text-columns.aligncenter {
display: flex;
}
.wp-block-text-columns .wp-block-column {
margin: 0 1em;
padding: 0;
}
.wp-block-text-columns .wp-block-column:first-child {
margin-left: 0;
}
.wp-block-text-columns .wp-block-column:last-child {
margin-right: 0;
}
.wp-block-text-columns.columns-2 .wp-block-column {
width: 50%;
}
.wp-block-text-columns.columns-3 .wp-block-column {
width: 33.3333333333%;
}
.wp-block-text-columns.columns-4 .wp-block-column {
width: 25%;
} text-columns/style-rtl.min.css 0000644 00000000711 15246340743 0012450 0 ustar 00 .wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-right:0}.wp-block-text-columns .wp-block-column:last-child{margin-left:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.3333333333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%} text-columns/editor-rtl.css 0000644 00000001551 15246340743 0012017 0 ustar 00 /**
* Colors
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.wp-block-text-columns .block-editor-rich-text__editable:focus {
outline: 1px solid #ddd;
} text-columns/editor.css 0000644 00000001551 15246340743 0011220 0 ustar 00 /**
* Colors
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
.wp-block-text-columns .block-editor-rich-text__editable:focus {
outline: 1px solid #ddd;
} comment-edit-link/block.json 0000644 00000002642 15246340743 0012065 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/comment-edit-link",
"title": "Comment Edit Link",
"category": "theme",
"ancestor": [ "core/comment-template" ],
"description": "Displays a link to edit the comment in the WordPress Dashboard. This link is only visible to users with the edit comment capability.",
"textdomain": "default",
"usesContext": [ "commentId" ],
"attributes": {
"linkTarget": {
"type": "string",
"default": "_self"
}
},
"supports": {
"anchor": true,
"html": false,
"color": {
"link": true,
"gradients": true,
"text": false,
"__experimentalDefaultControls": {
"background": true,
"link": true
}
},
"spacing": {
"margin": true,
"padding": true,
"__experimentalDefaultControls": {
"margin": false,
"padding": false
}
},
"typography": {
"fontSize": true,
"lineHeight": true,
"textAlign": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalTextDecoration": true,
"__experimentalLetterSpacing": true,
"__experimentalDefaultControls": {
"fontSize": true
}
},
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true
}
},
"style": "wp-block-comment-edit-link"
}
comment-edit-link/style-rtl.css 0000644 00000000071 15246340743 0012543 0 ustar 00 .wp-block-comment-edit-link {
box-sizing: border-box;
} comment-edit-link/style.min.css 0000644 00000000062 15246340743 0012526 0 ustar 00 .wp-block-comment-edit-link{box-sizing:border-box} comment-edit-link/style.css 0000644 00000000071 15246340743 0011744 0 ustar 00 .wp-block-comment-edit-link {
box-sizing: border-box;
} comment-edit-link/style-rtl.min.css 0000644 00000000062 15246340743 0013325 0 ustar 00 .wp-block-comment-edit-link{box-sizing:border-box} tag-cloud/block.json 0000644 00000002615 15246340743 0010424 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/tag-cloud",
"title": "Tag Cloud",
"category": "widgets",
"description": "A cloud of popular keywords, each sized by how often it appears.",
"textdomain": "default",
"attributes": {
"numberOfTags": {
"type": "number",
"default": 45,
"minimum": 1,
"maximum": 100
},
"taxonomy": {
"type": "string",
"default": "post_tag"
},
"showTagCounts": {
"type": "boolean",
"default": false
},
"smallestFontSize": {
"type": "string",
"default": "8pt"
},
"largestFontSize": {
"type": "string",
"default": "22pt"
}
},
"styles": [
{ "name": "default", "label": "Default", "isDefault": true },
{ "name": "outline", "label": "Outline" }
],
"supports": {
"anchor": true,
"html": false,
"align": true,
"spacing": {
"margin": true,
"padding": true
},
"typography": {
"lineHeight": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalLetterSpacing": true
},
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true,
"__experimentalDefaultControls": {
"radius": true,
"color": true,
"width": true,
"style": true
}
}
}
}
tag-cloud/style-rtl.css 0000644 00000001136 15246340743 0011105 0 ustar 00 .wp-block-tag-cloud {
box-sizing: border-box;
}
.wp-block-tag-cloud.aligncenter {
text-align: center;
justify-content: center;
}
.wp-block-tag-cloud a {
display: inline-block;
margin-left: 5px;
}
.wp-block-tag-cloud span {
display: inline-block;
margin-right: 5px;
text-decoration: none;
}
:root :where(.wp-block-tag-cloud.is-style-outline) {
display: flex;
flex-wrap: wrap;
gap: 1ch;
}
:root :where(.wp-block-tag-cloud.is-style-outline a) {
border: 1px solid currentColor;
font-size: unset !important;
margin-left: 0;
padding: 1ch 2ch;
text-decoration: none !important;
} tag-cloud/style.min.css 0000644 00000000767 15246340743 0011101 0 ustar 00 .wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important} tag-cloud/style.css 0000644 00000001137 15246340743 0010307 0 ustar 00 .wp-block-tag-cloud {
box-sizing: border-box;
}
.wp-block-tag-cloud.aligncenter {
text-align: center;
justify-content: center;
}
.wp-block-tag-cloud a {
display: inline-block;
margin-right: 5px;
}
.wp-block-tag-cloud span {
display: inline-block;
margin-left: 5px;
text-decoration: none;
}
:root :where(.wp-block-tag-cloud.is-style-outline) {
display: flex;
flex-wrap: wrap;
gap: 1ch;
}
:root :where(.wp-block-tag-cloud.is-style-outline a) {
border: 1px solid currentColor;
font-size: unset !important;
margin-right: 0;
padding: 1ch 2ch;
text-decoration: none !important;
} tag-cloud/style-rtl.min.css 0000644 00000000766 15246340743 0011677 0 ustar 00 .wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud a{display:inline-block;margin-left:5px}.wp-block-tag-cloud span{display:inline-block;margin-right:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-left:0;padding:1ch 2ch;text-decoration:none!important} post-date/block.json 0000644 00000002643 15246340743 0010446 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/post-date",
"title": "Date",
"category": "theme",
"description": "Display a custom date.",
"textdomain": "default",
"attributes": {
"datetime": {
"type": "string",
"role": "content"
},
"format": {
"type": "string"
},
"isLink": {
"type": "boolean",
"default": false,
"role": "content"
}
},
"usesContext": [ "postId", "postType", "queryId" ],
"example": {
"viewportWidth": 350
},
"supports": {
"anchor": true,
"html": false,
"color": {
"gradients": true,
"link": true,
"__experimentalDefaultControls": {
"background": true,
"text": true,
"link": true
}
},
"spacing": {
"margin": true,
"padding": true
},
"typography": {
"fontSize": true,
"lineHeight": true,
"textAlign": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalTextDecoration": true,
"__experimentalLetterSpacing": true,
"__experimentalDefaultControls": {
"fontSize": true
}
},
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true,
"__experimentalDefaultControls": {
"radius": true,
"color": true,
"width": true,
"style": true
}
}
}
}
post-date/style-rtl.css 0000644 00000000061 15246340743 0011122 0 ustar 00 .wp-block-post-date {
box-sizing: border-box;
} post-date/style.min.css 0000644 00000000052 15246340743 0011105 0 ustar 00 .wp-block-post-date{box-sizing:border-box} post-date/style.css 0000644 00000000061 15246340743 0010323 0 ustar 00 .wp-block-post-date {
box-sizing: border-box;
} post-date/style-rtl.min.css 0000644 00000000052 15246340743 0011704 0 ustar 00 .wp-block-post-date{box-sizing:border-box} site-tagline/editor.min.css 0000644 00000000104 15246340743 0011716 0 ustar 00 .wp-block-site-tagline__placeholder{border:1px dashed;padding:1em 0} site-tagline/block.json 0000644 00000003263 15246340743 0011132 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/site-tagline",
"title": "Site Tagline",
"category": "theme",
"description": "Describe in a few words what this site is about. This is important for search results, sharing on social media, and gives overall clarity to visitors.",
"keywords": [ "description" ],
"textdomain": "default",
"attributes": {
"level": {
"type": "number",
"default": 0
},
"levelOptions": {
"type": "array",
"default": [ 0, 1, 2, 3, 4, 5, 6 ]
}
},
"example": {
"viewportWidth": 350,
"attributes": {
"style": {
"typography": {
"textAlign": "center"
}
}
}
},
"supports": {
"anchor": true,
"align": [ "wide", "full" ],
"html": false,
"color": {
"gradients": true,
"__experimentalDefaultControls": {
"background": true,
"text": true
}
},
"contentRole": true,
"spacing": {
"margin": true,
"padding": true,
"__experimentalDefaultControls": {
"margin": false,
"padding": false
}
},
"typography": {
"fontSize": true,
"lineHeight": true,
"textAlign": true,
"__experimentalFontFamily": true,
"__experimentalTextTransform": true,
"__experimentalTextDecoration": true,
"__experimentalFontStyle": true,
"__experimentalFontWeight": true,
"__experimentalLetterSpacing": true,
"__experimentalWritingMode": true,
"__experimentalDefaultControls": {
"fontSize": true
}
},
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true
}
},
"editorStyle": "wp-block-site-tagline-editor",
"style": "wp-block-site-tagline"
}
site-tagline/style-rtl.css 0000644 00000000064 15246340743 0011612 0 ustar 00 .wp-block-site-tagline {
box-sizing: border-box;
} site-tagline/style.min.css 0000644 00000000055 15246340743 0011575 0 ustar 00 .wp-block-site-tagline{box-sizing:border-box} site-tagline/editor-rtl.min.css 0000644 00000000104 15246340743 0012515 0 ustar 00 .wp-block-site-tagline__placeholder{border:1px dashed;padding:1em 0} site-tagline/style.css 0000644 00000000064 15246340743 0011013 0 ustar 00 .wp-block-site-tagline {
box-sizing: border-box;
} site-tagline/style-rtl.min.css 0000644 00000000055 15246340743 0012374 0 ustar 00 .wp-block-site-tagline{box-sizing:border-box} site-tagline/editor-rtl.css 0000644 00000000117 15246340743 0011737 0 ustar 00 .wp-block-site-tagline__placeholder {
padding: 1em 0;
border: 1px dashed;
} site-tagline/editor.css 0000644 00000000117 15246340743 0011140 0 ustar 00 .wp-block-site-tagline__placeholder {
padding: 1em 0;
border: 1px dashed;
} require-static-blocks.php 0000644 00000001027 15246340743 0011501 0 ustar 00 next_tag() ) {
// Add the necessary directives.
$p->set_attribute( 'data-wp-interactive', 'core/query' );
$p->set_attribute( 'data-wp-router-region', 'query-' . $attributes['queryId'] );
$p->set_attribute( 'data-wp-context', '{}' );
$p->set_attribute( 'data-wp-key', $attributes['queryId'] );
$content = $p->get_updated_html();
}
}
// Add the styles to the block type if the block is interactive and remove
// them if it's not.
$style_asset = 'wp-block-query';
if ( ! wp_style_is( $style_asset ) ) {
$style_handles = $block->block_type->style_handles;
// If the styles are not needed, and they are still in the `style_handles`, remove them.
if ( ! $is_interactive && in_array( $style_asset, $style_handles, true ) ) {
$block->block_type->style_handles = array_diff( $style_handles, array( $style_asset ) );
}
// If the styles are needed, but they were previously removed, add them again.
if ( $is_interactive && ! in_array( $style_asset, $style_handles, true ) ) {
$block->block_type->style_handles = array_merge( $style_handles, array( $style_asset ) );
}
}
return $content;
}
/**
* Registers the `core/query` block on the server.
*
* @since 5.8.0
*/
function register_block_core_query() {
register_block_type_from_metadata(
__DIR__ . '/query',
array(
'render_callback' => 'render_block_core_query',
)
);
}
add_action( 'init', 'register_block_core_query' );
/**
* Traverse the tree of blocks looking for any plugin block (i.e., a block from
* an installed plugin) inside a Query block with the enhanced pagination
* enabled. If at least one is found, the enhanced pagination is effectively
* disabled to prevent any potential incompatibilities.
*
* @since 6.4.0
*
* @param array $parsed_block The block being rendered.
* @return array Returns the parsed block, unmodified.
*/
function block_core_query_disable_enhanced_pagination( $parsed_block ) {
static $enhanced_query_stack = array();
static $dirty_enhanced_queries = array();
static $render_query_callback = null;
$block_name = $parsed_block['blockName'];
$block_type = WP_Block_Type_Registry::get_instance()->get_registered( $block_name );
$has_enhanced_pagination = isset( $parsed_block['attrs']['enhancedPagination'] ) && true === $parsed_block['attrs']['enhancedPagination'] && isset( $parsed_block['attrs']['queryId'] );
/*
* Client side navigation can be true in two states:
* - supports.interactivity = true;
* - supports.interactivity.clientNavigation = true;
*/
$supports_client_navigation = ( isset( $block_type->supports['interactivity']['clientNavigation'] ) && true === $block_type->supports['interactivity']['clientNavigation'] )
|| ( isset( $block_type->supports['interactivity'] ) && true === $block_type->supports['interactivity'] );
if ( 'core/query' === $block_name && $has_enhanced_pagination ) {
$enhanced_query_stack[] = $parsed_block['attrs']['queryId'];
if ( ! isset( $render_query_callback ) ) {
/**
* Filter that disables the enhanced pagination feature during block
* rendering when a plugin block has been found inside. It does so
* by adding an attribute called `data-wp-navigation-disabled` which
* is later handled by the front-end logic.
*
* @param string $content The block content.
* @param array $block The full block, including name and attributes.
* @return string Returns the modified output of the query block.
*/
$render_query_callback = static function ( $content, $block ) use ( &$enhanced_query_stack, &$dirty_enhanced_queries, &$render_query_callback ) {
$has_enhanced_pagination = isset( $block['attrs']['enhancedPagination'] ) && true === $block['attrs']['enhancedPagination'] && isset( $block['attrs']['queryId'] );
if ( ! $has_enhanced_pagination ) {
return $content;
}
if ( isset( $dirty_enhanced_queries[ $block['attrs']['queryId'] ] ) ) {
// Disable navigation in the router store config.
wp_interactivity_config( 'core/router', array( 'clientNavigationDisabled' => true ) );
$dirty_enhanced_queries[ $block['attrs']['queryId'] ] = null;
}
array_pop( $enhanced_query_stack );
if ( empty( $enhanced_query_stack ) ) {
remove_filter( 'render_block_core/query', $render_query_callback );
$render_query_callback = null;
}
return $content;
};
add_filter( 'render_block_core/query', $render_query_callback, 10, 2 );
}
} elseif (
! empty( $enhanced_query_stack ) &&
isset( $block_name ) &&
( ! $supports_client_navigation )
) {
foreach ( $enhanced_query_stack as $query_id ) {
$dirty_enhanced_queries[ $query_id ] = true;
}
}
return $parsed_block;
}
add_filter( 'render_block_data', 'block_core_query_disable_enhanced_pagination', 10, 1 );
details.php 0000644 00000002732 15246340743 0006716 0 ustar 00 next_tag( 'IMG' ) ) {
$tags->set_attribute( 'fetchpriority', 'low' );
}
return $tags->get_updated_html();
}
add_filter( 'render_block_core/details', 'block_core_details_set_img_fetchpriority_low', 10, 2 );
/**
* Registers the `core/details` block on server.
*
* @since 7.0.0
*/
function register_block_core_details() {
register_block_type_from_metadata( __DIR__ . '/details' );
}
add_action( 'init', 'register_block_core_details' );
post-author-name/block.json 0000644 00000002671 15246340743 0011752 0 ustar 00 {
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core/post-author-name",
"title": "Author Name",
"category": "theme",
"description": "The author name.",
"textdomain": "default",
"attributes": {
"isLink": {
"type": "boolean",
"default": false,
"role": "content"
},
"linkTarget": {
"type": "string",
"default": "_self",
"role": "content"
}
},
"usesContext": [ "postType", "postId" ],
"example": {
"viewportWidth": 350
},
"supports": {
"anchor": true,
"html": false,
"spacing": {
"margin": true,
"padding": true
},
"color": {
"gradients": true,
"link": true,
"__experimentalDefaultControls": {
"background": true,
"text": true,
"link": true
}
},
"typography": {
"fontSize": true,
"lineHeight": true,
"textAlign": true,
"__experimentalFontFamily": true,
"__experimentalFontWeight": true,
"__experimentalFontStyle": true,
"__experimentalTextTransform": true,
"__experimentalTextDecoration": true,
"__experimentalLetterSpacing": true,
"__experimentalDefaultControls": {
"fontSize": true
}
},
"interactivity": {
"clientNavigation": true
},
"__experimentalBorder": {
"radius": true,
"color": true,
"width": true,
"style": true,
"__experimentalDefaultControls": {
"radius": true,
"color": true,
"width": true,
"style": true
}
}
},
"style": "wp-block-post-author-name"
}
post-author-name/style-rtl.css 0000644 00000000070 15246340743 0012425 0 ustar 00 .wp-block-post-author-name {
box-sizing: border-box;
} post-author-name/style.min.css 0000644 00000000061 15246340743 0012410 0 ustar 00 .wp-block-post-author-name{box-sizing:border-box} post-author-name/style.css 0000644 00000000070 15246340743 0011626 0 ustar 00 .wp-block-post-author-name {
box-sizing: border-box;
} post-author-name/style-rtl.min.css 0000644 00000000061 15246340743 0013207 0 ustar 00 .wp-block-post-author-name{box-sizing:border-box} post-comments-link.php 0000644 00000004275 15246340743 0011040 0 ustar 00 context['postId'] ) ||
isset( $block->context['postId'] ) &&
! comments_open( $block->context['postId'] )
) {
return '';
}
$classes = array();
if ( isset( $attributes['textAlign'] ) ) {
$classes[] = 'has-text-align-' . $attributes['textAlign'];
}
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
$classes[] = 'has-link-color';
}
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );
$comments_number = (int) get_comments_number( $block->context['postId'] );
$comments_link = get_comments_link( $block->context['postId'] );
$post_title = get_the_title( $block->context['postId'] );
$comment_html = '';
if ( 0 === $comments_number ) {
$comment_html = sprintf(
/* translators: %s post title */
__( 'No comments on %s' ),
$post_title
);
} else {
$comment_html = sprintf(
/* translators: 1: Number of comments, 2: post title */
_n(
'%1$s comment on %2$s',
'%1$s comments on %2$s',
$comments_number
),
esc_html( number_format_i18n( $comments_number ) ),
$post_title
);
}
return '
' . __( 'Adding an RSS feed to this site’s homepage is not supported, as it could lead to a loop that slows down your site. Try using another block, like the Latest Posts block, to list posts from the site.' ) . '
wrapper.
*
* @since 6.5.0
*
* @var array
*/
private static $needs_list_item_wrapper = array(
'core/site-title',
'core/site-logo',
'core/social-links',
);
/**
* Keeps track of all the navigation names that have been seen.
*
* @since 6.5.0
*
* @var array
*/
private static $seen_menu_names = array();
/**
* Returns whether or not this is responsive navigation.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return bool Returns whether or not this is responsive navigation.
*/
private static function is_responsive( $attributes ) {
/**
* This is for backwards compatibility after the `isResponsive` attribute was been removed.
*/
$has_old_responsive_attribute = ! empty( $attributes['isResponsive'] ) && $attributes['isResponsive'];
return isset( $attributes['overlayMenu'] ) && 'never' !== $attributes['overlayMenu'] || $has_old_responsive_attribute;
}
/**
* Returns whether or not a navigation has a submenu.
*
* @since 6.5.0
*
* @param WP_Block_List $inner_blocks The list of inner blocks.
* @return bool Returns whether or not a navigation has a submenu and also sets the member variable.
*/
private static function has_submenus( $inner_blocks ) {
if ( true === static::$has_submenus ) {
return static::$has_submenus;
}
foreach ( $inner_blocks as $inner_block ) {
// If this is a page list then work out if any of the pages have children.
if ( 'core/page-list' === $inner_block->name ) {
$all_pages = get_pages(
array(
'sort_column' => 'menu_order,post_title',
'order' => 'asc',
)
);
foreach ( (array) $all_pages as $page ) {
if ( $page->post_parent ) {
static::$has_submenus = true;
break;
}
}
}
// If this is a navigation submenu then we know we have submenus.
if ( 'core/navigation-submenu' === $inner_block->name ) {
static::$has_submenus = true;
break;
}
}
return static::$has_submenus;
}
/**
* Determine whether the navigation blocks is interactive.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block_List $inner_blocks The list of inner blocks.
* @return bool Returns whether or not to load the view script.
*/
private static function is_interactive( $attributes, $inner_blocks ) {
$has_submenus = static::has_submenus( $inner_blocks );
$is_responsive_menu = static::is_responsive( $attributes );
$computed_visibility = block_core_navigation_get_submenu_visibility( $attributes );
$open_on_click = 'click' === $computed_visibility;
$show_submenu_icon = ! empty( $attributes['showSubmenuIcon'] );
return ( $has_submenus && ( $open_on_click || $show_submenu_icon ) ) || $is_responsive_menu;
}
/**
* Returns whether or not a block needs a list item wrapper.
*
* @since 6.5.0
*
* @param WP_Block $block The block.
* @return bool Returns whether or not a block needs a list item wrapper.
*/
private static function does_block_need_a_list_item_wrapper( $block ) {
/**
* Filter the list of blocks that need a list item wrapper.
*
* Affords the ability to customize which blocks need a list item wrapper when rendered
* within a core/navigation block.
* This is useful for blocks that are not list items but should be wrapped in a list
* item when used as a child of a navigation block.
*
* @since 6.5.0
*
* @param array $needs_list_item_wrapper The list of blocks that need a list item wrapper.
*/
$needs_list_item_wrapper = apply_filters( 'block_core_navigation_listable_blocks', static::$needs_list_item_wrapper );
return in_array( $block->name, $needs_list_item_wrapper, true );
}
/**
* Returns the markup for a single inner block.
*
* @since 6.5.0
*
* @param WP_Block $inner_block The inner block.
* @return string Returns the markup for a single inner block.
*/
private static function get_markup_for_inner_block( $inner_block ) {
$inner_block_content = $inner_block->render();
if ( ! empty( $inner_block_content ) ) {
if ( static::does_block_need_a_list_item_wrapper( $inner_block ) ) {
return '
' . $inner_block_content . '
';
}
}
return $inner_block_content;
}
/**
* Returns the html for blocks from a template part (without navigation container wrapper).
*
* @since 6.5.0
*
* @param WP_Block_List $blocks The list of blocks to render.
* @return string Returns the html for the template part blocks.
*/
private static function get_template_part_blocks_html( $blocks ) {
$html = '';
foreach ( $blocks as $block ) {
$html .= $block->render();
}
return $html;
}
/**
* Returns the html for the inner blocks of the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block_List $inner_blocks The list of inner blocks.
* @return string Returns the html for the inner blocks of the navigation block.
*/
private static function get_inner_blocks_html( $attributes, $inner_blocks ) {
$has_submenus = static::has_submenus( $inner_blocks );
$is_interactive = static::is_interactive( $attributes, $inner_blocks );
$style = static::get_styles( $attributes );
$class = static::get_classes( $attributes );
$container_attributes = get_block_wrapper_attributes(
array(
'class' => 'wp-block-navigation__container ' . $class,
'style' => $style,
)
);
$inner_blocks_html = '';
$is_list_open = false;
foreach ( $inner_blocks as $inner_block ) {
$inner_block_markup = static::get_markup_for_inner_block( $inner_block );
$p = new WP_HTML_Tag_Processor( $inner_block_markup );
$is_list_item = $p->next_tag( 'LI' );
if ( $is_list_item && ! $is_list_open ) {
$is_list_open = true;
$inner_blocks_html .= sprintf(
'
';
}
$inner_blocks_html .= $inner_block_markup;
}
if ( $is_list_open ) {
$inner_blocks_html .= '';
}
// Add directives to the submenu if needed.
if ( $has_submenus && $is_interactive ) {
$tags = new WP_HTML_Tag_Processor( $inner_blocks_html );
$inner_blocks_html = block_core_navigation_add_directives_to_submenu( $tags, $attributes );
}
return $inner_blocks_html;
}
/**
* Gets the inner blocks for the navigation block from the navigation post.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return WP_Block_List Returns the inner blocks for the navigation block.
*/
private static function get_inner_blocks_from_navigation_post( $attributes ) {
$navigation_post = get_post( $attributes['ref'] );
if ( ! isset( $navigation_post ) ) {
return new WP_Block_List( array(), $attributes );
}
// Only published posts are valid. If this is changed then a corresponding change
// must also be implemented in `use-navigation-menu.js`.
if ( 'publish' === $navigation_post->post_status ) {
$parsed_blocks = parse_blocks( $navigation_post->post_content );
// 'parse_blocks' includes a null block with '\n\n' as the content when
// it encounters whitespace. This code strips it.
$blocks = block_core_navigation_filter_out_empty_blocks( $parsed_blocks );
// Re-serialize, and run Block Hooks algorithm to inject hooked blocks.
// TODO: See if we can move the apply_block_hooks_to_content_from_post_object() call
// before the parse_blocks() call further above, to avoid the extra serialization/parsing.
$markup = serialize_blocks( $blocks );
$markup = apply_block_hooks_to_content_from_post_object( $markup, $navigation_post );
$blocks = parse_blocks( $markup );
// TODO - this uses the full navigation block attributes for the
// context which could be refined.
return new WP_Block_List( $blocks, $attributes );
}
}
/**
* Gets the inner blocks for the navigation block from the fallback.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return WP_Block_List Returns the inner blocks for the navigation block.
*/
private static function get_inner_blocks_from_fallback( $attributes ) {
$fallback_blocks = block_core_navigation_get_fallback_blocks();
// Fallback my have been filtered so do basic test for validity.
if ( empty( $fallback_blocks ) || ! is_array( $fallback_blocks ) ) {
return new WP_Block_List( array(), $attributes );
}
return new WP_Block_List( $fallback_blocks, $attributes );
}
/**
* Recursively disables overlay menu for navigation blocks within overlay blocks.
* Prevents nested overlays (inception).
*
* @since 6.5.0
*
* @param array $blocks Array of parsed block arrays.
* @return array Modified blocks with overlayMenu set to 'never' for navigation blocks.
*/
private static function disable_overlay_menu_for_nested_navigation_blocks( $blocks ) {
if ( empty( $blocks ) || ! is_array( $blocks ) ) {
return $blocks;
}
foreach ( $blocks as &$block ) {
if ( ! isset( $block['blockName'] ) ) {
continue;
}
// If this is a navigation block, disable its overlay menu.
if ( 'core/navigation' === $block['blockName'] ) {
if ( ! isset( $block['attrs'] ) ) {
$block['attrs'] = array();
}
$block['attrs']['overlayMenu'] = 'never';
// Mark this as a nested navigation within an overlay template part
// so we can handle its rendering differently.
$block['attrs']['_isWithinOverlayTemplatePart'] = true;
}
// Recursively process inner blocks.
if ( ! empty( $block['innerBlocks'] ) && is_array( $block['innerBlocks'] ) ) {
$block['innerBlocks'] = static::disable_overlay_menu_for_nested_navigation_blocks( $block['innerBlocks'] );
}
}
return $blocks;
}
/**
* Gets the inner blocks for the navigation block from an overlay template part.
*
* @since 6.5.0
*
* @param string $overlay_template_part_id The overlay template part ID in format "theme//slug".
* @param array $attributes The block attributes.
* @return WP_Block_List Returns the inner blocks for the overlay template part.
*/
private static function get_overlay_blocks_from_template_part( $overlay_template_part_id, $attributes ) {
if ( empty( $overlay_template_part_id ) || ! is_string( $overlay_template_part_id ) ) {
return new WP_Block_List( array(), $attributes );
}
// Parse the template part ID (format: "theme//slug").
// If it's just a slug, construct the full ID using the current theme.
$parts = explode( '//', $overlay_template_part_id, 2 );
if ( count( $parts ) === 2 ) {
// Already in "theme//slug" format (backward compatibility).
$theme = $parts[0];
$slug = $parts[1];
} else {
// Just a slug, use current theme.
$theme = get_stylesheet();
$slug = $overlay_template_part_id;
}
// Only query for template parts from the active theme.
if ( get_stylesheet() !== $theme ) {
return new WP_Block_List( array(), $attributes );
}
// Query for the template part post.
$template_part_query = new WP_Query(
array(
'post_type' => 'wp_template_part',
'post_status' => 'publish',
'post_name__in' => array( $slug ),
'tax_query' => array(
array(
'taxonomy' => 'wp_theme',
'field' => 'name',
'terms' => $theme,
),
),
'posts_per_page' => 1,
'no_found_rows' => true,
'lazy_load_term_meta' => false, // Do not lazy load term meta, as template parts only have one term.
)
);
$template_part_post = $template_part_query->have_posts() ? $template_part_query->next_post() : null;
if ( ! $template_part_post ) {
// Try to get from theme file if not in database.
// Construct the full template part ID for get_block_file_template.
$full_template_part_id = $theme . '//' . $slug;
$block_template = get_block_file_template( $full_template_part_id, 'wp_template_part' );
if ( isset( $block_template->content ) ) {
// Expand shortcodes before parsing blocks, matching the order in
// `render_block_core_template_part()`.
$content = shortcode_unautop( $block_template->content );
$content = do_shortcode( $content );
$parsed_blocks = parse_blocks( $content );
$blocks = block_core_navigation_filter_out_empty_blocks( $parsed_blocks );
// Disable overlay menu for any navigation blocks within the overlay to prevent nested overlays.
$blocks = static::disable_overlay_menu_for_nested_navigation_blocks( $blocks );
return new WP_Block_List( $blocks, $attributes );
}
return new WP_Block_List( array(), $attributes );
}
// Get the template part content.
$block_template = _build_block_template_result_from_post( $template_part_post );
if ( ! isset( $block_template->content ) ) {
return new WP_Block_List( array(), $attributes );
}
$parsed_blocks = parse_blocks( $block_template->content );
// 'parse_blocks' includes a null block with '\n\n' as the content when
// it encounters whitespace. This code strips it.
$blocks = block_core_navigation_filter_out_empty_blocks( $parsed_blocks );
// Re-serialize, and run Block Hooks algorithm to inject hooked blocks.
$markup = serialize_blocks( $blocks );
$markup = apply_block_hooks_to_content_from_post_object( $markup, $template_part_post );
// Expand shortcodes before parsing blocks, matching the order in
// `render_block_core_template_part()`.
$markup = shortcode_unautop( $markup );
$markup = do_shortcode( $markup );
$blocks = parse_blocks( $markup );
// Disable overlay menu for any navigation blocks within the overlay to prevent nested overlays.
$blocks = static::disable_overlay_menu_for_nested_navigation_blocks( $blocks );
return new WP_Block_List( $blocks, $attributes );
}
/**
* Gets the inner blocks for the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block $block The parsed block.
* @return WP_Block_List Returns the inner blocks for the navigation block.
*/
private static function get_inner_blocks( $attributes, $block ) {
$inner_blocks = $block->inner_blocks;
// Ensure that blocks saved with the legacy ref attribute name (navigationMenuId) continue to render.
if ( array_key_exists( 'navigationMenuId', $attributes ) ) {
$attributes['ref'] = $attributes['navigationMenuId'];
}
// If:
// - the gutenberg plugin is active
// - `__unstableLocation` is defined
// - we have menu items at the defined location
// - we don't have a relationship to a `wp_navigation` Post (via `ref`).
// ...then create inner blocks from the classic menu assigned to that location.
if (
defined( 'IS_GUTENBERG_PLUGIN' ) && IS_GUTENBERG_PLUGIN &&
array_key_exists( '__unstableLocation', $attributes ) &&
! array_key_exists( 'ref', $attributes ) &&
! empty( block_core_navigation_get_menu_items_at_location( $attributes['__unstableLocation'] ) )
) {
$inner_blocks = block_core_navigation_get_inner_blocks_from_unstable_location( $attributes );
}
// Load inner blocks from the navigation post.
if ( array_key_exists( 'ref', $attributes ) ) {
$inner_blocks = static::get_inner_blocks_from_navigation_post( $attributes );
}
// If there are no inner blocks then fallback to rendering an appropriate fallback.
if ( empty( $inner_blocks ) ) {
$inner_blocks = static::get_inner_blocks_from_fallback( $attributes );
}
/**
* Filter navigation block $inner_blocks.
* Allows modification of a navigation block menu items.
*
* @since 6.1.0
*
* @param \WP_Block_List $inner_blocks
*/
$inner_blocks = apply_filters( 'block_core_navigation_render_inner_blocks', $inner_blocks );
$post_ids = block_core_navigation_get_post_ids( $inner_blocks );
if ( $post_ids ) {
_prime_post_caches( $post_ids, false, false );
}
return $inner_blocks;
}
/**
* Gets the name of the current navigation, if it has one.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return string Returns the name of the navigation.
*/
private static function get_navigation_name( $attributes ) {
$navigation_name = $attributes['ariaLabel'] ?? '';
if ( ! empty( $navigation_name ) ) {
return $navigation_name;
}
// Load the navigation post.
if ( array_key_exists( 'ref', $attributes ) ) {
$navigation_post = get_post( $attributes['ref'] );
if ( ! isset( $navigation_post ) ) {
return $navigation_name;
}
// Only published posts are valid. If this is changed then a corresponding change
// must also be implemented in `use-navigation-menu.js`.
if ( 'publish' === $navigation_post->post_status ) {
return $navigation_post->post_title;
}
}
return $navigation_name;
}
/**
* Returns the layout class for the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return string Returns the layout class for the navigation block.
*/
private static function get_layout_class( $attributes ) {
$layout_justification = array(
'left' => 'items-justified-left',
'right' => 'items-justified-right',
'center' => 'items-justified-center',
'space-between' => 'items-justified-space-between',
);
$layout_class = '';
if (
isset( $attributes['layout']['justifyContent'] ) &&
isset( $layout_justification[ $attributes['layout']['justifyContent'] ] )
) {
$layout_class .= $layout_justification[ $attributes['layout']['justifyContent'] ];
}
if ( isset( $attributes['layout']['orientation'] ) && 'vertical' === $attributes['layout']['orientation'] ) {
$layout_class .= ' is-vertical';
}
if ( isset( $attributes['layout']['flexWrap'] ) && 'nowrap' === $attributes['layout']['flexWrap'] ) {
$layout_class .= ' no-wrap';
}
return $layout_class;
}
/**
* Return classes for the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return string Returns the classes for the navigation block.
*/
private static function get_classes( $attributes ) {
// Restore legacy classnames for submenu positioning.
$layout_class = static::get_layout_class( $attributes );
$colors = block_core_navigation_build_css_colors( $attributes );
$font_sizes = block_core_navigation_build_css_font_sizes( $attributes );
$is_responsive_menu = static::is_responsive( $attributes );
// Manually add block support text decoration as CSS class.
$text_decoration = $attributes['style']['typography']['textDecoration'] ?? null;
$text_decoration_class = sprintf( 'has-text-decoration-%s', $text_decoration );
$classes = array_merge(
$colors['css_classes'],
$font_sizes['css_classes'],
$is_responsive_menu ? array( 'is-responsive' ) : array(),
$layout_class ? array( $layout_class ) : array(),
$text_decoration ? array( $text_decoration_class ) : array()
);
return implode( ' ', $classes );
}
/**
* Get styles for the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return string Returns the styles for the navigation block.
*/
private static function get_styles( $attributes ) {
$colors = block_core_navigation_build_css_colors( $attributes );
$font_sizes = block_core_navigation_build_css_font_sizes( $attributes );
$block_styles = $attributes['styles'] ?? '';
return $block_styles . $colors['inline_styles'] . $font_sizes['inline_styles'];
}
/**
* Get responsive container classes for the navigation block.
*
* @since 7.0.0
*
* @param bool $is_hidden_by_default Whether the responsive menu is hidden by default.
* @param bool $has_custom_overlay Whether a custom overlay is used.
* @param array $colors The colors array.
* @return array Returns the responsive container classes.
*/
private static function get_responsive_container_classes( $is_hidden_by_default, $has_custom_overlay, $colors ) {
$responsive_container_classes = array( 'wp-block-navigation__responsive-container' );
if ( $is_hidden_by_default ) {
$responsive_container_classes[] = 'hidden-by-default';
}
if ( $has_custom_overlay ) {
$responsive_container_classes[] = 'disable-default-overlay';
} else {
// Don't apply overlay color classes if using a custom overlay template part.
// The custom overlay is responsible for its own styling.
$responsive_container_classes[] = implode( ' ', $colors['overlay_css_classes'] );
}
return $responsive_container_classes;
}
/**
* Get overlay inline styles for the navigation block.
*
* @since 7.0.0
*
* @param array $colors The colors array.
* @return string Returns the overlay inline styles.
*/
private static function get_overlay_inline_styles( $has_custom_overlay, $colors ) {
$overlay_inline_styles = $has_custom_overlay ? '' : esc_attr( safecss_filter_attr( $colors['overlay_inline_styles'] ) );
return ( ! empty( $overlay_inline_styles ) ) ? "style=\"$overlay_inline_styles\"" : '';
}
/**
* Get the responsive container markup
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block_List $inner_blocks The list of inner blocks.
* @param string $inner_blocks_html The markup for the inner blocks.
* @return string Returns the container markup.
*/
private static function get_responsive_container_markup( $attributes, $inner_blocks, $inner_blocks_html ) {
$is_interactive = static::is_interactive( $attributes, $inner_blocks );
$colors = block_core_navigation_build_css_colors( $attributes );
$modal_unique_id = wp_unique_id( 'modal-' );
$is_hidden_by_default = isset( $attributes['overlayMenu'] ) && 'always' === $attributes['overlayMenu'];
// Set-up variables for custom overlays.
$has_custom_overlay = false;
$close_button_markup = '';
$has_custom_overlay_close_block = false;
$overlay_blocks_html = '';
$custom_overlay_markup = '';
// Check if an overlay template part is selected and render it.
// This needs to happen before building classes so we know if overlay blocks actually exist.
if ( ! empty( $attributes['overlay'] ) ) {
// Get blocks from the overlay template part.
$overlay_blocks = static::get_overlay_blocks_from_template_part( $attributes['overlay'], $attributes );
// Render template part blocks directly without navigation container wrapper.
$overlay_blocks_html = static::get_template_part_blocks_html( $overlay_blocks );
// Check if overlay contains a navigation-overlay-close block (detect in rendered HTML so it works with patterns).
$has_custom_overlay_close_block = block_core_navigation_overlay_html_has_close_block( $overlay_blocks_html );
// Add Interactivity API directives to the overlay close block if present.
if ( $has_custom_overlay_close_block && $is_interactive ) {
$tags = new WP_HTML_Tag_Processor( $overlay_blocks_html );
$overlay_blocks_html = block_core_navigation_add_directives_to_overlay_close( $tags );
}
// Images in the overlay are hidden until the menu is opened. Pre-set
// fetchpriority="low" so that when wp_filter_content_tags() processes the
// parent template part, it sees the attribute already present and calls
// wp_get_loading_optimization_attributes() with fetchpriority="low", which both prevents
// fetchpriority="high" from being added and stops the LCP counter from being incremented.
$overlay_blocks_html = block_core_navigation_set_overlay_image_fetch_priority( $overlay_blocks_html );
}
$has_custom_overlay = ! empty( $overlay_blocks_html );
$responsive_container_classes = static::get_responsive_container_classes( $is_hidden_by_default, $has_custom_overlay, $colors );
$open_button_classes = array(
'wp-block-navigation__responsive-container-open',
$is_hidden_by_default ? 'always-shown' : '',
);
$should_display_icon_label = isset( $attributes['hasIcon'] ) && true === $attributes['hasIcon'];
$toggle_button_icon = '';
if ( isset( $attributes['icon'] ) ) {
if ( 'menu' === $attributes['icon'] ) {
$toggle_button_icon = '';
}
}
$toggle_button_content = $should_display_icon_label ? $toggle_button_icon : __( 'Menu' );
$toggle_close_button_icon = '';
$toggle_close_button_content = $should_display_icon_label ? $toggle_close_button_icon : __( 'Close' );
$toggle_aria_label_open = $should_display_icon_label ? 'aria-label="' . __( 'Open menu' ) . '"' : ''; // Open button label.
$toggle_aria_label_close = $should_display_icon_label ? 'aria-label="' . __( 'Close menu' ) . '"' : ''; // Close button label.
// Add Interactivity API directives to the markup if needed.
$open_button_directives = '';
$responsive_container_directives = '';
$responsive_dialog_directives = '';
$close_button_directives = '';
if ( $is_interactive ) {
$open_button_directives = '
data-wp-on--click="actions.openMenuOnClick"
data-wp-on--keydown="actions.handleMenuKeydown"
';
$responsive_container_directives = '
data-wp-class--has-modal-open="state.isMenuOpen"
data-wp-class--is-menu-open="state.isMenuOpen"
data-wp-watch="callbacks.initMenu"
data-wp-on--keydown="actions.handleMenuKeydown"
data-wp-on--focusout="actions.handleMenuFocusout"
tabindex="-1"
';
$responsive_dialog_directives = '
data-wp-bind--aria-modal="state.ariaModal"
data-wp-bind--aria-label="state.ariaLabel"
data-wp-bind--role="state.roleAttribute"
';
$close_button_directives = '
data-wp-on--click="actions.closeMenuOnClick"
';
$responsive_container_content_directives = '
data-wp-watch="callbacks.focusFirstElement"
';
}
// Don't apply overlay inline styles if using a custom overlay template part.
// The custom overlay is responsible for its own styling.
$overlay_inline_styles = static::get_overlay_inline_styles( $has_custom_overlay, $colors );
if ( $has_custom_overlay ) {
$custom_overlay_markup = sprintf(
'
%s
',
$overlay_blocks_html
);
}
// Show default close button for all responsive navigation,
// unless custom overlay has its own close block.
if ( ! $has_custom_overlay_close_block ) {
$close_button_markup = sprintf(
'',
$toggle_aria_label_close,
$close_button_directives,
$toggle_close_button_content
);
}
return sprintf(
'
%13$s
%2$s
%15$s
',
esc_attr( $modal_unique_id ),
$inner_blocks_html,
$toggle_aria_label_open,
$toggle_aria_label_close,
esc_attr( trim( implode( ' ', $responsive_container_classes ) ) ),
esc_attr( trim( implode( ' ', $open_button_classes ) ) ),
$overlay_inline_styles,
$toggle_button_content,
$toggle_close_button_content,
$open_button_directives,
$responsive_container_directives,
$responsive_dialog_directives,
$close_button_markup,
$responsive_container_content_directives,
$has_custom_overlay ? $custom_overlay_markup : ''
);
}
/**
* Get the wrapper attributes
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block_List $inner_blocks A list of inner blocks.
* @return string Returns the navigation block markup.
*/
private static function get_nav_attributes( $attributes, $inner_blocks ) {
$is_interactive = static::is_interactive( $attributes, $inner_blocks );
$is_responsive_menu = static::is_responsive( $attributes );
$style = static::get_styles( $attributes );
$class = static::get_classes( $attributes );
$extra_attributes = array(
'class' => $class,
'style' => $style,
);
// Only add aria-label for top-level navigation blocks.
// Skip navigation blocks marked as being within overlay template parts.
$is_within_overlay = $attributes['_isWithinOverlayTemplatePart'] ?? false;
if ( $is_within_overlay ) {
$nav_menu_name = static::get_navigation_name( $attributes );
} else {
$nav_menu_name = static::get_unique_navigation_name( $attributes );
}
if ( ! empty( $nav_menu_name ) ) {
$extra_attributes['aria-label'] = $nav_menu_name;
}
$wrapper_attributes = get_block_wrapper_attributes( $extra_attributes );
if ( $is_responsive_menu ) {
$nav_element_directives = static::get_nav_element_directives( $is_interactive );
$wrapper_attributes .= ' ' . $nav_element_directives;
}
return $wrapper_attributes;
}
/**
* Gets the nav element directives.
*
* @since 6.5.0
*
* @param bool $is_interactive Whether the block is interactive.
* @return string the directives for the navigation element.
*/
private static function get_nav_element_directives( $is_interactive ) {
if ( ! $is_interactive ) {
return '';
}
// When adding to this array be mindful of security concerns.
$nav_element_context = wp_interactivity_data_wp_context(
array(
'overlayOpenedBy' => array(
'click' => false,
'hover' => false,
'focus' => false,
),
'type' => 'overlay',
'roleAttribute' => '',
'ariaLabel' => __( 'Menu' ),
)
);
$nav_element_directives = '
data-wp-interactive="core/navigation" '
. $nav_element_context;
return $nav_element_directives;
}
/**
* Handle view script module loading.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block $block The parsed block.
* @param WP_Block_List $inner_blocks The list of inner blocks.
*/
private static function handle_view_script_module_loading( $attributes, $block, $inner_blocks ) {
if ( static::is_interactive( $attributes, $inner_blocks ) ) {
wp_enqueue_script_module( '@wordpress/block-library/navigation/view' );
}
}
/**
* Returns the markup for the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param WP_Block_List $inner_blocks The list of inner blocks.
* @return string Returns the navigation wrapper markup.
*/
private static function get_inner_block_markup( $attributes, $inner_blocks ) {
$inner_blocks_html = static::get_inner_blocks_html( $attributes, $inner_blocks );
if ( static::is_responsive( $attributes ) ) {
return static::get_responsive_container_markup( $attributes, $inner_blocks, $inner_blocks_html );
}
return $inner_blocks_html;
}
/**
* Returns a unique name for the navigation.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return string Returns a unique name for the navigation.
*/
private static function get_unique_navigation_name( $attributes ) {
$nav_menu_name = static::get_navigation_name( $attributes );
// This is used to count the number of times a navigation name has been seen,
// so that we can ensure every navigation has a unique id.
if ( isset( static::$seen_menu_names[ $nav_menu_name ] ) ) {
++static::$seen_menu_names[ $nav_menu_name ];
} else {
static::$seen_menu_names[ $nav_menu_name ] = 1;
}
// If the menu name has been used previously then append an ID
// to the name to ensure uniqueness across a given post.
if ( isset( static::$seen_menu_names[ $nav_menu_name ] ) && static::$seen_menu_names[ $nav_menu_name ] > 1 ) {
$count = static::$seen_menu_names[ $nav_menu_name ];
$nav_menu_name = $nav_menu_name . ' ' . ( $count );
}
return $nav_menu_name;
}
/**
* Renders the navigation block.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @param string $content The saved content.
* @param WP_Block $block The parsed block.
* @return string Returns the navigation block markup.
*/
public static function render( $attributes, $content, $block ) {
/**
* Deprecated:
* The rgbTextColor and rgbBackgroundColor attributes
* have been deprecated in favor of
* customTextColor and customBackgroundColor ones.
* Move the values from old attrs to the new ones.
*/
if ( isset( $attributes['rgbTextColor'] ) && empty( $attributes['textColor'] ) ) {
$attributes['customTextColor'] = $attributes['rgbTextColor'];
}
if ( isset( $attributes['rgbBackgroundColor'] ) && empty( $attributes['backgroundColor'] ) ) {
$attributes['customBackgroundColor'] = $attributes['rgbBackgroundColor'];
}
unset( $attributes['rgbTextColor'], $attributes['rgbBackgroundColor'] );
$inner_blocks = static::get_inner_blocks( $attributes, $block );
// Prevent navigation blocks referencing themselves from rendering.
if ( block_core_navigation_block_tree_has_block_type(
$inner_blocks,
'core/navigation'
) ) {
return '';
}
static::handle_view_script_module_loading( $attributes, $block, $inner_blocks );
// Use div wrapper if this navigation block is within an overlay template part.
$is_within_overlay = $attributes['_isWithinOverlayTemplatePart'] ?? false;
$tag_name = $is_within_overlay ? 'div' : 'nav';
return sprintf(
'<%1$s %2$s>%3$s%1$s>',
$tag_name,
static::get_nav_attributes( $attributes, $inner_blocks ),
static::get_inner_block_markup( $attributes, $inner_blocks )
);
}
}
// These functions are used for the __unstableLocation feature and only active
// when the gutenberg plugin is active.
if ( defined( 'IS_GUTENBERG_PLUGIN' ) && IS_GUTENBERG_PLUGIN ) {
/**
* Returns the menu items for a WordPress menu location.
*
* @since 5.9.0
*
* @param string $location The menu location.
* @return array Menu items for the location.
*/
function block_core_navigation_get_menu_items_at_location( $location ) {
if ( empty( $location ) ) {
return;
}
// Build menu data. The following approximates the code in
// `wp_nav_menu()` and `gutenberg_output_block_nav_menu`.
// Find the location in the list of locations, returning early if the
// location can't be found.
$locations = get_nav_menu_locations();
if ( ! isset( $locations[ $location ] ) ) {
return;
}
// Get the menu from the location, returning early if there is no
// menu or there was an error.
$menu = wp_get_nav_menu_object( $locations[ $location ] );
if ( ! $menu || is_wp_error( $menu ) ) {
return;
}
$menu_items = wp_get_nav_menu_items( $menu->term_id, array( 'update_post_term_cache' => false ) );
_wp_menu_item_classes_by_context( $menu_items );
return $menu_items;
}
/**
* Sorts a standard array of menu items into a nested structure keyed by the
* id of the parent menu.
*
* @since 5.9.0
*
* @param array $menu_items Menu items to sort.
* @return array An array keyed by the id of the parent menu where each element
* is an array of menu items that belong to that parent.
*/
function block_core_navigation_sort_menu_items_by_parent_id( $menu_items ) {
$sorted_menu_items = array();
foreach ( (array) $menu_items as $menu_item ) {
$sorted_menu_items[ $menu_item->menu_order ] = $menu_item;
}
unset( $menu_items, $menu_item );
$menu_items_by_parent_id = array();
foreach ( $sorted_menu_items as $menu_item ) {
$menu_items_by_parent_id[ $menu_item->menu_item_parent ][] = $menu_item;
}
return $menu_items_by_parent_id;
}
/**
* Gets the inner blocks for the navigation block from the unstable location attribute.
*
* @since 6.5.0
*
* @param array $attributes The block attributes.
* @return WP_Block_List Returns the inner blocks for the navigation block.
*/
function block_core_navigation_get_inner_blocks_from_unstable_location( $attributes ) {
$menu_items = block_core_navigation_get_menu_items_at_location( $attributes['__unstableLocation'] );
if ( empty( $menu_items ) ) {
return new WP_Block_List( array(), $attributes );
}
$menu_items_by_parent_id = block_core_navigation_sort_menu_items_by_parent_id( $menu_items );
$parsed_blocks = block_core_navigation_parse_blocks_from_menu_items( $menu_items_by_parent_id[0], $menu_items_by_parent_id );
return new WP_Block_List( $parsed_blocks, $attributes );
}
}
/**
* Checks if the overlay HTML contains a navigation-overlay-close block.
*
* Uses WP_HTML_Tag_Processor to detect the close button in rendered output,
* so it works when the overlay uses patterns (pattern content is rendered at
* output time, not in the block tree).
*
* @since 7.0.0
*
* @param string $html The rendered overlay HTML.
* @return bool True if a close button element is found.
*/
function block_core_navigation_overlay_html_has_close_block( $html ) {
$tags = new WP_HTML_Tag_Processor( $html );
return $tags->next_tag(
array(
'tag_name' => 'BUTTON',
'class_name' => 'wp-block-navigation-overlay-close',
)
);
}
/**
* Add Interactivity API directives to the navigation-overlay-close block
* markup using the Tag Processor.
*
* @since 6.5.0
*
* @param WP_HTML_Tag_Processor $tags Markup of the navigation block.
* @return string Overlay close markup with the directives injected.
*/
function block_core_navigation_add_directives_to_overlay_close( $tags ) {
// Find all navigation-overlay-close buttons.
while ( $tags->next_tag(
array(
'tag_name' => 'BUTTON',
'class_name' => 'wp-block-navigation-overlay-close',
)
) ) {
// Add the same close directive as the default close button.
$tags->set_attribute( 'data-wp-on--click', 'actions.closeMenuOnClick' );
}
return $tags->get_updated_html();
}
/**
* Sets fetchpriority="low" on all IMG tags within the navigation overlay.
*
* Images in the overlay are hidden until the menu is opened, so they should
* not compete with any actual LCP element image on the page.
*
* @since 7.0.0
*
* @param string $overlay_blocks_html The rendered HTML of the overlay blocks.
* @return string Modified HTML with fetchpriority="low" on all IMG tags.
*/
function block_core_navigation_set_overlay_image_fetch_priority( string $overlay_blocks_html ): string {
$tags = new WP_HTML_Tag_Processor( $overlay_blocks_html );
while ( $tags->next_tag( 'IMG' ) ) {
$tags->set_attribute( 'fetchpriority', 'low' );
}
return $tags->get_updated_html();
}
/**
* Add Interactivity API directives to the navigation-submenu and page-list
* blocks markup using the Tag Processor.
*
* @since 6.3.0
*
* @param WP_HTML_Tag_Processor $tags Markup of the navigation block.
* @param array $block_attributes Block attributes.
*
* @return string Submenu markup with the directives injected.
*/
function block_core_navigation_add_directives_to_submenu( $tags, $block_attributes ) {
while ( $tags->next_tag(
array(
'tag_name' => 'LI',
'class_name' => 'has-child',
)
) ) {
// Add directives to the parent `
`.
$tags->set_attribute( 'data-wp-interactive', 'core/navigation' );
$tags->set_attribute( 'data-wp-context', '{ "submenuOpenedBy": { "click": false, "hover": false, "focus": false }, "type": "submenu", "modal": null, "previousFocus": null }' );
$tags->set_attribute( 'data-wp-watch', 'callbacks.initMenu' );
$tags->set_attribute( 'data-wp-on--focusout', 'actions.handleMenuFocusout' );
$tags->set_attribute( 'data-wp-on--keydown', 'actions.handleMenuKeydown' );
// This is a fix for Safari. Without it, Safari doesn't change the active
// element when the user clicks on a button. It can be removed once we add
// an overlay to capture the clicks, instead of relying on the focusout
// event.
$tags->set_attribute( 'tabindex', '-1' );
$computed_visibility = block_core_navigation_get_submenu_visibility( $block_attributes );
$open_on_hover = 'hover' === $computed_visibility;
if ( $open_on_hover ) {
$tags->set_attribute( 'data-wp-on--pointerenter', 'actions.openMenuOnHover' );
$tags->set_attribute( 'data-wp-on--pointerleave', 'actions.closeMenuOnHover' );
}
// Add directives to the toggle submenu button.
if ( $tags->next_tag(
array(
'tag_name' => 'BUTTON',
'class_name' => 'wp-block-navigation-submenu__toggle',
)
) ) {
$tags->set_attribute( 'data-wp-on--click', 'actions.toggleMenuOnClick' );
$tags->set_attribute( 'data-wp-bind--aria-expanded', 'state.isSubmenuOpen' );
// The `aria-expanded` attribute for SSR is already added in the submenu block.
}
// Add directives to the submenu.
if ( $tags->next_tag(
array(
'tag_name' => 'UL',
'class_name' => 'wp-block-navigation__submenu-container',
)
) ) {
$tags->set_attribute( 'data-wp-on--focus', 'actions.openMenuOnFocus' );
}
// Iterate through subitems if exist.
block_core_navigation_add_directives_to_submenu( $tags, $block_attributes );
}
return $tags->get_updated_html();
}
/**
* Build an array with CSS classes and inline styles defining the colors
* which will be applied to the navigation markup in the front-end.
*
* @since 5.9.0
*
* @param array $attributes Navigation block attributes.
*
* @return array Colors CSS classes and inline styles.
*/
function block_core_navigation_build_css_colors( $attributes ) {
$colors = array(
'css_classes' => array(),
'inline_styles' => '',
'overlay_css_classes' => array(),
'overlay_inline_styles' => '',
);
// Text color.
$has_named_text_color = array_key_exists( 'textColor', $attributes );
$has_custom_text_color = array_key_exists( 'customTextColor', $attributes );
// If has text color.
if ( $has_custom_text_color || $has_named_text_color ) {
// Add has-text-color class.
$colors['css_classes'][] = 'has-text-color';
}
if ( $has_named_text_color ) {
// Add the color class.
$colors['css_classes'][] = sprintf( 'has-%s-color', $attributes['textColor'] );
} elseif ( $has_custom_text_color ) {
// Add the custom color inline style.
$colors['inline_styles'] .= sprintf( 'color: %s;', $attributes['customTextColor'] );
}
// Background color.
$has_named_background_color = array_key_exists( 'backgroundColor', $attributes );
$has_custom_background_color = array_key_exists( 'customBackgroundColor', $attributes );
// If has background color.
if ( $has_custom_background_color || $has_named_background_color ) {
// Add has-background class.
$colors['css_classes'][] = 'has-background';
}
if ( $has_named_background_color ) {
// Add the background-color class.
$colors['css_classes'][] = sprintf( 'has-%s-background-color', $attributes['backgroundColor'] );
} elseif ( $has_custom_background_color ) {
// Add the custom background-color inline style.
$colors['inline_styles'] .= sprintf( 'background-color: %s;', $attributes['customBackgroundColor'] );
}
// Overlay text color.
$has_named_overlay_text_color = array_key_exists( 'overlayTextColor', $attributes );
$has_custom_overlay_text_color = array_key_exists( 'customOverlayTextColor', $attributes );
// If has overlay text color.
if ( $has_custom_overlay_text_color || $has_named_overlay_text_color ) {
// Add has-text-color class.
$colors['overlay_css_classes'][] = 'has-text-color';
}
if ( $has_named_overlay_text_color ) {
// Add the overlay color class.
$colors['overlay_css_classes'][] = sprintf( 'has-%s-color', $attributes['overlayTextColor'] );
} elseif ( $has_custom_overlay_text_color ) {
// Add the custom overlay color inline style.
$colors['overlay_inline_styles'] .= sprintf( 'color: %s;', $attributes['customOverlayTextColor'] );
}
// Overlay background color.
$has_named_overlay_background_color = array_key_exists( 'overlayBackgroundColor', $attributes );
$has_custom_overlay_background_color = array_key_exists( 'customOverlayBackgroundColor', $attributes );
// If has overlay background color.
if ( $has_custom_overlay_background_color || $has_named_overlay_background_color ) {
// Add has-background class.
$colors['overlay_css_classes'][] = 'has-background';
}
if ( $has_named_overlay_background_color ) {
// Add the overlay background-color class.
$colors['overlay_css_classes'][] = sprintf( 'has-%s-background-color', $attributes['overlayBackgroundColor'] );
} elseif ( $has_custom_overlay_background_color ) {
// Add the custom overlay background-color inline style.
$colors['overlay_inline_styles'] .= sprintf( 'background-color: %s;', $attributes['customOverlayBackgroundColor'] );
}
return $colors;
}
/**
* Build an array with CSS classes and inline styles defining the font sizes
* which will be applied to the navigation markup in the front-end.
*
* @since 5.9.0
*
* @param array $attributes Navigation block attributes.
*
* @return array Font size CSS classes and inline styles.
*/
function block_core_navigation_build_css_font_sizes( $attributes ) {
// CSS classes.
$font_sizes = array(
'css_classes' => array(),
'inline_styles' => '',
);
$has_named_font_size = array_key_exists( 'fontSize', $attributes );
$has_custom_font_size = array_key_exists( 'customFontSize', $attributes );
if ( $has_named_font_size ) {
// Add the font size class.
$font_sizes['css_classes'][] = sprintf( 'has-%s-font-size', $attributes['fontSize'] );
} elseif ( $has_custom_font_size ) {
// Add the custom font size inline style.
$font_sizes['inline_styles'] = sprintf( 'font-size: %spx;', $attributes['customFontSize'] );
}
return $font_sizes;
}
/**
* Filter out empty "null" blocks from the block list.
* 'parse_blocks' includes a null block with '\n\n' as the content when
* it encounters whitespace. This is not a bug but rather how the parser
* is designed.
*
* @since 5.9.0
*
* @param array $parsed_blocks the parsed blocks to be normalized.
* @return array the normalized parsed blocks.
*/
function block_core_navigation_filter_out_empty_blocks( $parsed_blocks ) {
$filtered = array_filter(
$parsed_blocks,
static function ( $block ) {
return isset( $block['blockName'] );
}
);
// Reset keys.
return array_values( $filtered );
}
/**
* Recursively checks if blocks contain a specific block type.
*
* @since 7.0.0
*
* @param WP_Block_List $blocks The list of blocks to check.
* @param string $block_type The block type to search for (e.g., 'core/navigation').
* @param array $skip_block_types Optional. Block types to skip when recursing. Default empty array.
* @return bool Returns true if the specified block type is found.
*/
function block_core_navigation_block_tree_has_block_type( $blocks, $block_type, $skip_block_types = array() ) {
if ( empty( $blocks ) ) {
return false;
}
foreach ( $blocks as $block ) {
if ( $block_type === $block->name ) {
return true;
}
// Recursively check inner blocks, skipping specified block types.
if ( ! in_array( $block->name, $skip_block_types, true ) && ! empty( $block->inner_blocks ) ) {
if ( block_core_navigation_block_tree_has_block_type( $block->inner_blocks, $block_type, $skip_block_types ) ) {
return true;
}
}
}
return false;
}
/**
* Returns true if the navigation block contains a nested navigation block.
*
* @since 6.2.0
* @deprecated 7.0.0 Use block_core_navigation_block_tree_has_block_type() instead.
*
* @param WP_Block_List $inner_blocks Inner block instance to be normalized.
* @return bool true if the navigation block contains a nested navigation block.
*/
function block_core_navigation_block_contains_core_navigation( $inner_blocks ) {
_deprecated_function( __FUNCTION__, '7.0.0', 'block_core_navigation_block_tree_has_block_type()' );
return block_core_navigation_block_tree_has_block_type(
$inner_blocks,
'core/navigation'
);
}
/**
* Retrieves the appropriate fallback to be used on the front of the
* site when there is no menu assigned to the Nav block.
*
* This aims to mirror how the fallback mechanic for wp_nav_menu works.
* See https://developer.wordpress.org/reference/functions/wp_nav_menu/#more-information.
*
* @since 5.9.0
*
* @return array the array of blocks to be used as a fallback.
*/
function block_core_navigation_get_fallback_blocks() {
$page_list_fallback = array(
array(
'blockName' => 'core/page-list',
'innerContent' => array(),
'attrs' => array(),
),
);
$registry = WP_Block_Type_Registry::get_instance();
// If `core/page-list` is not registered then return empty blocks.
$fallback_blocks = $registry->is_registered( 'core/page-list' ) ? $page_list_fallback : array();
$navigation_post = WP_Navigation_Fallback::get_fallback();
// Use the first non-empty Navigation as fallback if available.
if ( $navigation_post ) {
$parsed_blocks = parse_blocks( $navigation_post->post_content );
$maybe_fallback = block_core_navigation_filter_out_empty_blocks( $parsed_blocks );
// Normalizing blocks may result in an empty array of blocks if they were all `null` blocks.
// In this case default to the (Page List) fallback.
$fallback_blocks = ! empty( $maybe_fallback ) ? $maybe_fallback : $fallback_blocks;
// Run Block Hooks algorithm to inject hooked blocks.
// We have to run it here because we need the post ID of the Navigation block to track ignored hooked blocks.
// TODO: See if we can move the apply_block_hooks_to_content_from_post_object() call
// before the parse_blocks() call further above, to avoid the extra serialization/parsing.
$markup = serialize_blocks( $fallback_blocks );
$markup = apply_block_hooks_to_content_from_post_object( $markup, $navigation_post );
$fallback_blocks = parse_blocks( $markup );
}
/**
* Filters the fallback experience for the Navigation block.
*
* Returning a falsey value will opt out of the fallback and cause the block not to render.
* To customise the blocks provided return an array of blocks - these should be valid
* children of the `core/navigation` block.
*
* @since 5.9.0
*
* @param array[] $fallback_blocks default fallback blocks provided by the default block mechanic.
*/
return apply_filters( 'block_core_navigation_render_fallback', $fallback_blocks );
}
/**
* Iterate through all inner blocks recursively and get navigation link block's post IDs.
*
* @since 6.0.0
*
* @param WP_Block_List $inner_blocks Block list class instance.
*
* @return array Array of post IDs.
*/
function block_core_navigation_get_post_ids( $inner_blocks ) {
$post_ids = array_map( 'block_core_navigation_from_block_get_post_ids', iterator_to_array( $inner_blocks ) );
return array_unique( array_merge( ...$post_ids ) );
}
/**
* Get post IDs from a navigation link block instance.
*
* @since 6.0.0
*
* @param WP_Block $block Instance of a block.
*
* @return array Array of post IDs.
*/
function block_core_navigation_from_block_get_post_ids( $block ) {
$post_ids = array();
if ( $block->inner_blocks ) {
$post_ids = block_core_navigation_get_post_ids( $block->inner_blocks );
}
if ( 'core/navigation-link' === $block->name || 'core/navigation-submenu' === $block->name ) {
if ( $block->attributes && isset( $block->attributes['kind'] ) && 'post-type' === $block->attributes['kind'] && isset( $block->attributes['id'] ) ) {
$post_ids[] = $block->attributes['id'];
}
}
return $post_ids;
}
/**
* Renders the `core/navigation` block on server.
*
* @since 5.9.0
*
* @param array $attributes The block attributes.
* @param string $content The saved content.
* @param WP_Block $block The parsed block.
*
* @return string Returns the navigation block markup.
*/
function render_block_core_navigation( $attributes, $content, $block ) {
return WP_Navigation_Block_Renderer::render( $attributes, $content, $block );
}
/**
* Register the navigation block.
*
* @since 5.9.0
*
* @uses render_block_core_navigation()
* @throws WP_Error An WP_Error exception parsing the block definition.
*/
function register_block_core_navigation() {
register_block_type_from_metadata(
__DIR__ . '/navigation',
array(
'render_callback' => 'render_block_core_navigation',
)
);
}
add_action( 'init', 'register_block_core_navigation' );
/**
* Adds Navigation block support classes to inner list containers.
*
* State block support adds the generated `wp-states-*` class to the outer
* block wrapper. The Navigation block renders its menu items inside an inner
* `wp-block-navigation__container` list, so the same state class is also needed
* there for state styles to apply directly to the menu list.
*
* Navigation also uses layout classes on its outer wrapper to define custom
* properties consumed by its inner containers. Viewport layout styles cannot
* change those classes, so equivalent custom properties and a scoping class
* are generated for each configured viewport layout.
*
* Currently this is required as a workaround because of how difficult it is for nav
* child blocks to inherit styles through the complex responsive nav block html. The
* bug in https://github.com/WordPress/gutenberg/issues/62690 also prevents inheritance.
*
* @since 7.1.0
*
* @param string $block_content The block content.
* @param array $block The full block, including name and attributes.
* @return string The updated block content.
*/
function block_core_navigation_add_support_classes_to_container( $block_content, $block ) {
if ( 'core/navigation' !== ( $block['blockName'] ?? null ) || empty( $block_content ) ) {
return $block_content;
}
$attributes = is_array( $block['attrs'] ?? null ) ? $block['attrs'] : array();
$style = is_array( $attributes['style'] ?? null ) ? $attributes['style'] : array();
if (
defined( 'IS_GUTENBERG_PLUGIN' ) &&
IS_GUTENBERG_PLUGIN &&
function_exists( 'gutenberg_resolve_style_state_aliases' )
) {
$style = gutenberg_resolve_style_state_aliases( $style, 'core/navigation' );
}
$global_settings = wp_get_global_settings();
$viewport_settings = $global_settings['viewport'] ?? null;
$responsive_media_queries = array();
if ( method_exists( 'WP_Theme_JSON_Gutenberg', 'get_viewport_media_queries' ) ) {
$responsive_media_queries = WP_Theme_JSON_Gutenberg::get_viewport_media_queries( $viewport_settings );
} elseif ( method_exists( 'WP_Theme_JSON', 'get_viewport_media_queries' ) ) {
$responsive_media_queries = WP_Theme_JSON::get_viewport_media_queries( $viewport_settings );
}
$styles = array();
$base_layout = is_array( $attributes['layout'] ?? null ) ? $attributes['layout'] : array();
foreach ( $responsive_media_queries as $breakpoint => $media_query ) {
$viewport_style = is_array( $style[ $breakpoint ] ?? null ) ? $style[ $breakpoint ] : array();
$viewport_layout = is_array( $viewport_style['layout'] ?? null ) ? $viewport_style['layout'] : array();
if ( empty( $viewport_layout ) ) {
continue;
}
$styles[] = array(
'declarations' => block_core_navigation_get_layout_custom_property_declarations(
array_replace( $base_layout, $viewport_layout )
),
'rules_group' => $media_query,
);
}
$processor = new WP_HTML_Tag_Processor( $block_content );
if ( ! $processor->next_tag() ) {
return $block_content;
}
$class_attribute = $processor->get_attribute( 'class' );
$state_class = null;
if ( is_string( $class_attribute ) && preg_match( '/\bwp-states-[a-f0-9]{8}\b/', $class_attribute, $matches ) ) {
$state_class = $matches[0];
}
$layout_class = null;
if ( ! empty( $styles ) ) {
$layout_class = wp_unique_id( 'wp-block-navigation-' );
// The inner selector includes both Navigation classes so it overrides the
// default layout custom properties set by `.wp-block-navigation.items-*`.
$selector = ".wp-block-navigation.{$layout_class},.wp-block-navigation.wp-block-navigation__container.{$layout_class}";
foreach ( $styles as &$style_rule ) {
$style_rule['selector'] = $selector;
}
unset( $style_rule );
$processor->add_class( $layout_class );
wp_style_engine_get_stylesheet_from_css_rules(
$styles,
array( 'context' => 'block-supports' )
);
}
if ( null === $state_class && null === $layout_class ) {
return $block_content;
}
while ( $processor->next_tag() ) {
// Custom overlay content can include nested Navigation blocks.
// Avoid applying the outer Navigation classes to an inner nav block.
if ( $processor->has_class( 'wp-block-navigation' ) && ! $processor->has_class( 'wp-block-navigation__container' ) ) {
break;
}
if ( ! $processor->has_class( 'wp-block-navigation__container' ) ) {
continue;
}
if ( null !== $layout_class ) {
$processor->add_class( $layout_class );
}
if ( null === $state_class ) {
continue;
}
$class_attribute = $processor->get_attribute( 'class' );
if ( is_string( $class_attribute ) && preg_match( '/\bwp-states-[a-f0-9]{8}\b/', $class_attribute ) ) {
continue;
}
$processor->add_class( $state_class );
}
return $processor->get_updated_html();
}
add_filter( 'render_block', 'block_core_navigation_add_support_classes_to_container', 11, 2 );
/**
* Filter that changes the parsed attribute values of navigation blocks contain typographic presets to contain the values directly.
*
* @since 5.9.0
*
* @param array $parsed_block The block being rendered.
*
* @return array The block being rendered without typographic presets.
*/
function block_core_navigation_typographic_presets_backcompatibility( $parsed_block ) {
if ( 'core/navigation' === $parsed_block['blockName'] ) {
$attribute_to_prefix_map = array(
'fontStyle' => 'var:preset|font-style|',
'fontWeight' => 'var:preset|font-weight|',
'textDecoration' => 'var:preset|text-decoration|',
'textTransform' => 'var:preset|text-transform|',
);
foreach ( $attribute_to_prefix_map as $style_attribute => $prefix ) {
if ( ! empty( $parsed_block['attrs']['style']['typography'][ $style_attribute ] ) ) {
$prefix_len = strlen( $prefix );
$attribute_value = &$parsed_block['attrs']['style']['typography'][ $style_attribute ];
if ( 0 === strncmp( $attribute_value, $prefix, $prefix_len ) ) {
$attribute_value = substr( $attribute_value, $prefix_len );
}
if ( 'textDecoration' === $style_attribute && 'strikethrough' === $attribute_value ) {
$attribute_value = 'line-through';
}
}
}
}
return $parsed_block;
}
add_filter( 'render_block_data', 'block_core_navigation_typographic_presets_backcompatibility' );
/**
* Turns menu item data into a nested array of parsed blocks
*
* @since 5.9.0
*
* @deprecated 6.3.0 Use WP_Navigation_Fallback::parse_blocks_from_menu_items() instead.
*
* @param array $menu_items An array of menu items that represent
* an individual level of a menu.
* @param array $menu_items_by_parent_id An array keyed by the id of the
* parent menu where each element is an
* array of menu items that belong to
* that parent.
* @return array An array of parsed block data.
*/
function block_core_navigation_parse_blocks_from_menu_items( $menu_items, $menu_items_by_parent_id ) {
_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Navigation_Fallback::parse_blocks_from_menu_items' );
if ( empty( $menu_items ) ) {
return array();
}
$blocks = array();
foreach ( $menu_items as $menu_item ) {
$class_name = ! empty( $menu_item->classes ) ? implode( ' ', (array) $menu_item->classes ) : null;
$id = ( null !== $menu_item->object_id && 'custom' !== $menu_item->object ) ? $menu_item->object_id : null;
$opens_in_new_tab = null !== $menu_item->target && '_blank' === $menu_item->target;
$rel = ( null !== $menu_item->xfn && '' !== $menu_item->xfn ) ? $menu_item->xfn : null;
$kind = null !== $menu_item->type ? str_replace( '_', '-', $menu_item->type ) : 'custom';
$block = array(
'blockName' => isset( $menu_items_by_parent_id[ $menu_item->ID ] ) ? 'core/navigation-submenu' : 'core/navigation-link',
'attrs' => array(
'className' => $class_name,
'description' => $menu_item->description,
'id' => $id,
'kind' => $kind,
'label' => $menu_item->title,
'opensInNewTab' => $opens_in_new_tab,
'rel' => $rel,
'title' => $menu_item->attr_title,
'type' => $menu_item->object,
'url' => $menu_item->url,
),
);
$block['innerBlocks'] = isset( $menu_items_by_parent_id[ $menu_item->ID ] )
? block_core_navigation_parse_blocks_from_menu_items( $menu_items_by_parent_id[ $menu_item->ID ], $menu_items_by_parent_id )
: array();
$block['innerContent'] = array_map( 'serialize_block', $block['innerBlocks'] );
$blocks[] = $block;
}
return $blocks;
}
/**
* Get the classic navigation menu to use as a fallback.
*
* @since 6.2.0
*
* @deprecated 6.3.0 Use WP_Navigation_Fallback::get_classic_menu_fallback() instead.
*
* @return object WP_Term The classic navigation.
*/
function block_core_navigation_get_classic_menu_fallback() {
_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Navigation_Fallback::get_classic_menu_fallback' );
$classic_nav_menus = wp_get_nav_menus();
// If menus exist.
if ( $classic_nav_menus && ! is_wp_error( $classic_nav_menus ) ) {
// Handles simple use case where user has a classic menu and switches to a block theme.
// Returns the menu assigned to location `primary`.
$locations = get_nav_menu_locations();
if ( isset( $locations['primary'] ) ) {
$primary_menu = wp_get_nav_menu_object( $locations['primary'] );
if ( $primary_menu ) {
return $primary_menu;
}
}
// Returns a menu if `primary` is its slug.
foreach ( $classic_nav_menus as $classic_nav_menu ) {
if ( 'primary' === $classic_nav_menu->slug ) {
return $classic_nav_menu;
}
}
// Otherwise return the most recently created classic menu.
usort(
$classic_nav_menus,
static function ( $a, $b ) {
return $b->term_id - $a->term_id;
}
);
return $classic_nav_menus[0];
}
}
/**
* Converts a classic navigation to blocks.
*
* @since 6.2.0
*
* @deprecated 6.3.0 Use WP_Navigation_Fallback::get_classic_menu_fallback_blocks() instead.
*
* @param object $classic_nav_menu WP_Term The classic navigation object to convert.
* @return array the normalized parsed blocks.
*/
function block_core_navigation_get_classic_menu_fallback_blocks( $classic_nav_menu ) {
_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Navigation_Fallback::get_classic_menu_fallback_blocks' );
// BEGIN: Code that already exists in wp_nav_menu().
$menu_items = wp_get_nav_menu_items( $classic_nav_menu->term_id, array( 'update_post_term_cache' => false ) );
// Set up the $menu_item variables.
_wp_menu_item_classes_by_context( $menu_items );
$sorted_menu_items = array();
foreach ( (array) $menu_items as $menu_item ) {
$sorted_menu_items[ $menu_item->menu_order ] = $menu_item;
}
unset( $menu_items, $menu_item );
// END: Code that already exists in wp_nav_menu().
$menu_items_by_parent_id = array();
foreach ( $sorted_menu_items as $menu_item ) {
$menu_items_by_parent_id[ $menu_item->menu_item_parent ][] = $menu_item;
}
$inner_blocks = block_core_navigation_parse_blocks_from_menu_items(
$menu_items_by_parent_id[0] ?? array(),
$menu_items_by_parent_id
);
return serialize_blocks( $inner_blocks );
}
/**
* If there's a classic menu then use it as a fallback.
*
* @since 6.2.0
*
* @deprecated 6.3.0 Use WP_Navigation_Fallback::create_classic_menu_fallback() instead.
*
* @return array the normalized parsed blocks.
*/
function block_core_navigation_maybe_use_classic_menu_fallback() {
_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Navigation_Fallback::create_classic_menu_fallback' );
// See if we have a classic menu.
$classic_nav_menu = block_core_navigation_get_classic_menu_fallback();
if ( ! $classic_nav_menu ) {
return;
}
// If we have a classic menu then convert it to blocks.
$classic_nav_menu_blocks = block_core_navigation_get_classic_menu_fallback_blocks( $classic_nav_menu );
if ( empty( $classic_nav_menu_blocks ) ) {
return;
}
// Create a new navigation menu from the classic menu.
$wp_insert_post_result = wp_insert_post(
array(
'post_content' => $classic_nav_menu_blocks,
'post_title' => $classic_nav_menu->name,
'post_name' => $classic_nav_menu->slug,
'post_status' => 'publish',
'post_type' => 'wp_navigation',
),
true // So that we can check whether the result is an error.
);
if ( is_wp_error( $wp_insert_post_result ) ) {
return;
}
// Fetch the most recently published navigation which will be the classic one created above.
return block_core_navigation_get_most_recently_published_navigation();
}
/**
* Finds the most recently published `wp_navigation` Post.
*
* @since 6.1.0
*
* @deprecated 6.3.0 Use WP_Navigation_Fallback::get_most_recently_published_navigation() instead.
*
* @return WP_Post|null the first non-empty Navigation or null.
*/
function block_core_navigation_get_most_recently_published_navigation() {
_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Navigation_Fallback::get_most_recently_published_navigation' );
// Default to the most recently created menu.
$parsed_args = array(
'post_type' => 'wp_navigation',
'no_found_rows' => true,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'order' => 'DESC',
'orderby' => 'date',
'post_status' => 'publish',
'posts_per_page' => 1, // get only the most recent.
);
$navigation_post = new WP_Query( $parsed_args );
if ( count( $navigation_post->posts ) > 0 ) {
return $navigation_post->posts[0];
}
return null;
}
term-name.php 0000644 00000003766 15246340743 0007166 0 ustar 00 context['termId'] ) && isset( $block->context['taxonomy'] ) ) {
$term = get_term( $block->context['termId'], $block->context['taxonomy'] );
} else {
$term = get_queried_object();
if ( ! $term instanceof WP_Term ) {
$term = null;
}
}
if ( ! $term || is_wp_error( $term ) ) {
return '';
}
$term_name = $term->name;
$level = $attributes['level'] ?? 0;
$tag_name = 0 === $level ? 'p' : 'h' . (int) $level;
if ( isset( $attributes['isLink'] ) && $attributes['isLink'] ) {
$term_link = get_term_link( $term );
if ( ! is_wp_error( $term_link ) ) {
$term_name = sprintf(
'%2$s',
esc_url( $term_link ),
$term_name
);
}
}
$classes = array();
if ( isset( $attributes['textAlign'] ) ) {
$classes[] = 'has-text-align-' . $attributes['textAlign'];
}
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
$classes[] = 'has-link-color';
}
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );
return sprintf(
'<%1$s %2$s>%3$s%1$s>',
$tag_name,
$wrapper_attributes,
$term_name
);
}
/**
* Registers the `core/term-name` block on the server.
*
* @since 6.9.0
*/
function register_block_core_term_name() {
register_block_type_from_metadata(
__DIR__ . '/term-name',
array(
'render_callback' => 'render_block_core_term_name',
)
);
}
add_action( 'init', 'register_block_core_term_name' );
query-total.php 0000644 00000004647 15246340743 0007566 0 ustar 00 context['query']['inherit'] ?? false ) {
$query_to_use = $wp_query;
$current_page = max( 1, (int) get_query_var( 'paged', 1 ) );
} else {
$page_key = isset( $block->context['queryId'] ) ? 'query-' . $block->context['queryId'] . '-page' : 'query-page';
$current_page = (int) ( $_GET[ $page_key ] ?? 1 );
$query_to_use = new WP_Query( build_query_vars_from_query_block( $block, $current_page ) );
}
$max_rows = $query_to_use->found_posts;
$posts_per_page = (int) $query_to_use->get( 'posts_per_page' );
// Calculate the range of posts being displayed.
$start = ( 0 === $max_rows ) ? 0 : ( ( $current_page - 1 ) * $posts_per_page + 1 );
$end = min( $start + $posts_per_page - 1, $max_rows );
// Prepare the display based on the `displayType` attribute.
$output = '';
switch ( $attributes['displayType'] ) {
case 'range-display':
if ( $start === $end ) {
$output = sprintf(
/* translators: 1: Start index of posts, 2: Total number of posts */
__( 'Displaying %1$s of %2$s' ),
$start,
$max_rows
);
} else {
$output = sprintf(
/* translators: 1: Start index of posts, 2: End index of posts, 3: Total number of posts */
__( 'Displaying %1$s – %2$s of %3$s' ),
$start,
$end,
$max_rows
);
}
break;
case 'total-results':
default:
// translators: %d: number of results.
$output = sprintf( _n( '%d result found', '%d results found', $max_rows ), $max_rows );
break;
}
return sprintf(
'