PK \}Zg g class-wp-rest-request.phpnu [ params = array(
'URL' => array(),
'GET' => array(),
'POST' => array(),
'FILES' => array(),
// See parse_json_params.
'JSON' => null,
'defaults' => array(),
);
$this->set_method( $method );
$this->set_route( $route );
$this->set_attributes( $attributes );
}
/**
* Retrieves the HTTP method for the request.
*
* @since 4.4.0
*
* @return string HTTP method.
*/
public function get_method() {
return $this->method;
}
/**
* Sets HTTP method for the request.
*
* @since 4.4.0
*
* @param string $method HTTP method.
*/
public function set_method( $method ) {
$this->method = strtoupper( $method );
}
/**
* Retrieves all headers from the request.
*
* @since 4.4.0
*
* @return array Map of key to value. Key is always lowercase, as per HTTP specification.
*/
public function get_headers() {
return $this->headers;
}
/**
* Determines if the request is the given method.
*
* @since 6.8.0
*
* @param string $method HTTP method.
* @return bool Whether the request is of the given method.
*/
public function is_method( $method ) {
return $this->get_method() === strtoupper( $method );
}
/**
* Canonicalizes the header name.
*
* Ensures that header names are always treated the same regardless of
* source. Header names are always case-insensitive.
*
* Note that we treat `-` (dashes) and `_` (underscores) as the same
* character, as per header parsing rules in both Apache and nginx.
*
* @link https://stackoverflow.com/q/18185366
* @link https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/#missing-disappearing-http-headers
* @link https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
*
* @since 4.4.0
*
* @param string $key Header name.
* @return string Canonicalized name.
*/
public static function canonicalize_header_name( $key ) {
$key = strtolower( $key );
$key = str_replace( '-', '_', $key );
return $key;
}
/**
* Retrieves the given header from the request.
*
* If the header has multiple values, they will be concatenated with a comma
* as per the HTTP specification. Be aware that some non-compliant headers
* (notably cookie headers) cannot be joined this way.
*
* @since 4.4.0
*
* @param string $key Header name, will be canonicalized to lowercase.
* @return string|null String value if set, null otherwise.
*/
public function get_header( $key ) {
$key = $this->canonicalize_header_name( $key );
if ( ! isset( $this->headers[ $key ] ) ) {
return null;
}
return implode( ',', $this->headers[ $key ] );
}
/**
* Retrieves header values from the request.
*
* @since 4.4.0
*
* @param string $key Header name, will be canonicalized to lowercase.
* @return array|null List of string values if set, null otherwise.
*/
public function get_header_as_array( $key ) {
$key = $this->canonicalize_header_name( $key );
if ( ! isset( $this->headers[ $key ] ) ) {
return null;
}
return $this->headers[ $key ];
}
/**
* Sets the header on request.
*
* @since 4.4.0
*
* @param string $key Header name.
* @param string $value Header value, or list of values.
*/
public function set_header( $key, $value ) {
$key = $this->canonicalize_header_name( $key );
$value = (array) $value;
$this->headers[ $key ] = $value;
}
/**
* Appends a header value for the given header.
*
* @since 4.4.0
*
* @param string $key Header name.
* @param string $value Header value, or list of values.
*/
public function add_header( $key, $value ) {
$key = $this->canonicalize_header_name( $key );
$value = (array) $value;
if ( ! isset( $this->headers[ $key ] ) ) {
$this->headers[ $key ] = array();
}
$this->headers[ $key ] = array_merge( $this->headers[ $key ], $value );
}
/**
* Removes all values for a header.
*
* @since 4.4.0
*
* @param string $key Header name.
*/
public function remove_header( $key ) {
$key = $this->canonicalize_header_name( $key );
unset( $this->headers[ $key ] );
}
/**
* Sets headers on the request.
*
* @since 4.4.0
*
* @param array $headers Map of header name to value.
* @param bool $override If true, replace the request's headers. Otherwise, merge with existing.
*/
public function set_headers( $headers, $override = true ) {
if ( true === $override ) {
$this->headers = array();
}
foreach ( $headers as $key => $value ) {
$this->set_header( $key, $value );
}
}
/**
* Retrieves the Content-Type of the request.
*
* @since 4.4.0
*
* @return array|null Map containing 'value' and 'parameters' keys
* or null when no valid Content-Type header was
* available.
*/
public function get_content_type() {
$value = $this->get_header( 'Content-Type' );
if ( empty( $value ) ) {
return null;
}
$parameters = '';
if ( strpos( $value, ';' ) ) {
list( $value, $parameters ) = explode( ';', $value, 2 );
}
$value = strtolower( $value );
if ( ! str_contains( $value, '/' ) ) {
return null;
}
// Parse type and subtype out.
list( $type, $subtype ) = explode( '/', $value, 2 );
$data = compact( 'value', 'type', 'subtype', 'parameters' );
$data = array_map( 'trim', $data );
return $data;
}
/**
* Checks if the request has specified a JSON Content-Type.
*
* @since 5.6.0
*
* @return bool True if the Content-Type header is JSON.
*/
public function is_json_content_type() {
$content_type = $this->get_content_type();
return isset( $content_type['value'] ) && wp_is_json_media_type( $content_type['value'] );
}
/**
* Retrieves the parameter priority order.
*
* Used when checking parameters in WP_REST_Request::get_param().
*
* @since 4.4.0
*
* @return string[] Array of types to check, in order of priority.
*/
protected function get_parameter_order() {
$order = array();
if ( $this->is_json_content_type() ) {
$order[] = 'JSON';
}
$this->parse_json_params();
// Ensure we parse the body data.
$body = $this->get_body();
if ( 'POST' !== $this->method && ! empty( $body ) ) {
$this->parse_body_params();
}
$accepts_body_data = array( 'POST', 'PUT', 'PATCH', 'DELETE' );
if ( in_array( $this->method, $accepts_body_data, true ) ) {
$order[] = 'POST';
}
$order[] = 'GET';
$order[] = 'URL';
$order[] = 'defaults';
/**
* Filters the parameter priority order for a REST API request.
*
* The order affects which parameters are checked when using WP_REST_Request::get_param()
* and family. This acts similarly to PHP's `request_order` setting.
*
* @since 4.4.0
*
* @param string[] $order Array of types to check, in order of priority.
* @param WP_REST_Request $request The request object.
*/
return apply_filters( 'rest_request_parameter_order', $order, $this );
}
/**
* Retrieves a parameter from the request.
*
* @since 4.4.0
*
* @param string $key Parameter name.
* @return mixed|null Value if set, null otherwise.
*/
public function get_param( $key ) {
$order = $this->get_parameter_order();
foreach ( $order as $type ) {
// Determine if we have the parameter for this type.
if ( isset( $this->params[ $type ][ $key ] ) ) {
return $this->params[ $type ][ $key ];
}
}
return null;
}
/**
* Checks if a parameter exists in the request.
*
* This allows distinguishing between an omitted parameter,
* and a parameter specifically set to null.
*
* @since 5.3.0
*
* @param string $key Parameter name.
* @return bool True if a param exists for the given key.
*/
public function has_param( $key ) {
$order = $this->get_parameter_order();
foreach ( $order as $type ) {
if ( is_array( $this->params[ $type ] ) && array_key_exists( $key, $this->params[ $type ] ) ) {
return true;
}
}
return false;
}
/**
* Sets a parameter on the request.
*
* If the given parameter key exists in any parameter type an update will take place,
* otherwise a new param will be created in the first parameter type (respecting
* get_parameter_order()).
*
* @since 4.4.0
*
* @param string $key Parameter name.
* @param mixed $value Parameter value.
*/
public function set_param( $key, $value ) {
$order = $this->get_parameter_order();
$found_key = false;
foreach ( $order as $type ) {
if ( 'defaults' !== $type && is_array( $this->params[ $type ] ) && array_key_exists( $key, $this->params[ $type ] ) ) {
$this->params[ $type ][ $key ] = $value;
$found_key = true;
}
}
if ( ! $found_key ) {
$this->params[ $order[0] ][ $key ] = $value;
}
}
/**
* Retrieves merged parameters from the request.
*
* The equivalent of get_param(), but returns all parameters for the request.
* Handles merging all the available values into a single array.
*
* @since 4.4.0
*
* @return array Map of key to value.
*/
public function get_params() {
$order = $this->get_parameter_order();
$order = array_reverse( $order, true );
$params = array();
foreach ( $order as $type ) {
/*
* array_merge() / the "+" operator will mess up
* numeric keys, so instead do a manual foreach.
*/
foreach ( (array) $this->params[ $type ] as $key => $value ) {
$params[ $key ] = $value;
}
}
// Exclude rest_route if pretty permalinks are not enabled.
if ( ! get_option( 'permalink_structure' ) ) {
unset( $params['rest_route'] );
}
return $params;
}
/**
* Retrieves parameters from the route itself.
*
* These are parsed from the URL using the regex.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_url_params() {
return $this->params['URL'];
}
/**
* Sets parameters from the route.
*
* Typically, this is set after parsing the URL.
*
* @since 4.4.0
*
* @param array $params Parameter map of key to value.
*/
public function set_url_params( $params ) {
$this->params['URL'] = $params;
}
/**
* Retrieves parameters from the query string.
*
* These are the parameters you'd typically find in `$_GET`.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_query_params() {
return $this->params['GET'];
}
/**
* Sets parameters from the query string.
*
* Typically, this is set from `$_GET`.
*
* @since 4.4.0
*
* @param array $params Parameter map of key to value.
*/
public function set_query_params( $params ) {
$this->params['GET'] = $params;
}
/**
* Retrieves parameters from the body.
*
* These are the parameters you'd typically find in `$_POST`.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_body_params() {
return $this->params['POST'];
}
/**
* Sets parameters from the body.
*
* Typically, this is set from `$_POST`.
*
* @since 4.4.0
*
* @param array $params Parameter map of key to value.
*/
public function set_body_params( $params ) {
$this->params['POST'] = $params;
}
/**
* Retrieves multipart file parameters from the body.
*
* These are the parameters you'd typically find in `$_FILES`.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_file_params() {
return $this->params['FILES'];
}
/**
* Sets multipart file parameters from the body.
*
* Typically, this is set from `$_FILES`.
*
* @since 4.4.0
*
* @param array $params Parameter map of key to value.
*/
public function set_file_params( $params ) {
$this->params['FILES'] = $params;
}
/**
* Retrieves the default parameters.
*
* These are the parameters set in the route registration.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_default_params() {
return $this->params['defaults'];
}
/**
* Sets default parameters.
*
* These are the parameters set in the route registration.
*
* @since 4.4.0
*
* @param array $params Parameter map of key to value.
*/
public function set_default_params( $params ) {
$this->params['defaults'] = $params;
}
/**
* Retrieves the request body content.
*
* @since 4.4.0
*
* @return string Binary data from the request body.
*/
public function get_body() {
return $this->body;
}
/**
* Sets body content.
*
* @since 4.4.0
*
* @param string $data Binary data from the request body.
*/
public function set_body( $data ) {
$this->body = $data;
// Enable lazy parsing.
$this->parsed_json = false;
$this->parsed_body = false;
$this->params['JSON'] = null;
}
/**
* Retrieves the parameters from a JSON-formatted body.
*
* @since 4.4.0
*
* @return array Parameter map of key to value.
*/
public function get_json_params() {
// Ensure the parameters have been parsed out.
$this->parse_json_params();
return $this->params['JSON'];
}
/**
* Parses the JSON parameters.
*
* Avoids parsing the JSON data until we need to access it.
*
* @since 4.4.0
* @since 4.7.0 Returns error instance if value cannot be decoded.
* @return true|WP_Error True if the JSON data was passed or no JSON data was provided, WP_Error if invalid JSON was passed.
*/
protected function parse_json_params() {
if ( $this->parsed_json ) {
return true;
}
$this->parsed_json = true;
// Check that we actually got JSON.
if ( ! $this->is_json_content_type() ) {
return true;
}
$body = $this->get_body();
if ( empty( $body ) ) {
return true;
}
$params = json_decode( $body, true );
/*
* Check for a parsing error.
*/
if ( null === $params && JSON_ERROR_NONE !== json_last_error() ) {
// Ensure subsequent calls receive error instance.
$this->parsed_json = false;
$error_data = array(
'status' => WP_Http::BAD_REQUEST,
'json_error_code' => json_last_error(),
'json_error_message' => json_last_error_msg(),
);
return new WP_Error( 'rest_invalid_json', __( 'Invalid JSON body passed.' ), $error_data );
}
$this->params['JSON'] = $params;
return true;
}
/**
* Parses the request body parameters.
*
* Parses out URL-encoded bodies for request methods that aren't supported
* natively by PHP.
*
* @since 4.4.0
*/
protected function parse_body_params() {
if ( $this->parsed_body ) {
return;
}
$this->parsed_body = true;
/*
* Check that we got URL-encoded. Treat a missing Content-Type as
* URL-encoded for maximum compatibility.
*/
$content_type = $this->get_content_type();
if ( ! empty( $content_type ) && 'application/x-www-form-urlencoded' !== $content_type['value'] ) {
return;
}
parse_str( $this->get_body(), $params );
/*
* Add to the POST parameters stored internally. If a user has already
* set these manually (via `set_body_params`), don't override them.
*/
$this->params['POST'] = array_merge( $params, $this->params['POST'] );
}
/**
* Retrieves the route that matched the request.
*
* @since 4.4.0
*
* @return string Route matching regex.
*/
public function get_route() {
return $this->route;
}
/**
* Sets the route that matched the request.
*
* @since 4.4.0
*
* @param string $route Route matching regex.
*/
public function set_route( $route ) {
$this->route = $route;
}
/**
* Retrieves the attributes for the request.
*
* These are the options for the route that was matched.
*
* @since 4.4.0
*
* @return array Attributes for the request.
*/
public function get_attributes() {
return $this->attributes;
}
/**
* Sets the attributes for the request.
*
* @since 4.4.0
*
* @param array $attributes Attributes for the request.
*/
public function set_attributes( $attributes ) {
$this->attributes = $attributes;
}
/**
* Sanitizes (where possible) the params on the request.
*
* This is primarily based off the sanitize_callback param on each registered
* argument.
*
* @since 4.4.0
*
* @return true|WP_Error True if parameters were sanitized, WP_Error if an error occurred during sanitization.
*/
public function sanitize_params() {
$attributes = $this->get_attributes();
// No arguments set, skip sanitizing.
if ( empty( $attributes['args'] ) ) {
return true;
}
$order = $this->get_parameter_order();
$invalid_params = array();
$invalid_details = array();
foreach ( $order as $type ) {
if ( empty( $this->params[ $type ] ) ) {
continue;
}
foreach ( $this->params[ $type ] as $key => $value ) {
if ( ! isset( $attributes['args'][ $key ] ) ) {
continue;
}
$param_args = $attributes['args'][ $key ];
// If the arg has a type but no sanitize_callback attribute, default to rest_parse_request_arg.
if ( ! array_key_exists( 'sanitize_callback', $param_args ) && ! empty( $param_args['type'] ) ) {
$param_args['sanitize_callback'] = 'rest_parse_request_arg';
}
// If there's still no sanitize_callback, nothing to do here.
if ( empty( $param_args['sanitize_callback'] ) ) {
continue;
}
/** @var mixed|WP_Error $sanitized_value */
$sanitized_value = call_user_func( $param_args['sanitize_callback'], $value, $this, $key );
if ( is_wp_error( $sanitized_value ) ) {
$invalid_params[ $key ] = implode( ' ', $sanitized_value->get_error_messages() );
$invalid_details[ $key ] = rest_convert_error_to_response( $sanitized_value )->get_data();
} else {
$this->params[ $type ][ $key ] = $sanitized_value;
}
}
}
if ( $invalid_params ) {
return new WP_Error(
'rest_invalid_param',
/* translators: %s: List of invalid parameters. */
sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ),
array(
'status' => 400,
'params' => $invalid_params,
'details' => $invalid_details,
)
);
}
return true;
}
/**
* Checks whether this request is valid according to its attributes.
*
* @since 4.4.0
*
* @return true|WP_Error True if there are no parameters to validate or if all pass validation,
* WP_Error if required parameters are missing.
*/
public function has_valid_params() {
// If JSON data was passed, check for errors.
$json_error = $this->parse_json_params();
if ( is_wp_error( $json_error ) ) {
return $json_error;
}
$attributes = $this->get_attributes();
$required = array();
$args = empty( $attributes['args'] ) ? array() : $attributes['args'];
foreach ( $args as $key => $arg ) {
$param = $this->get_param( $key );
if ( isset( $arg['required'] ) && true === $arg['required'] && null === $param ) {
$required[] = $key;
}
}
if ( ! empty( $required ) ) {
return new WP_Error(
'rest_missing_callback_param',
/* translators: %s: List of required parameters. */
sprintf( __( 'Missing parameter(s): %s' ), implode( ', ', $required ) ),
array(
'status' => 400,
'params' => $required,
)
);
}
/*
* Check the validation callbacks for each registered arg.
*
* This is done after required checking as required checking is cheaper.
*/
$invalid_params = array();
$invalid_details = array();
foreach ( $args as $key => $arg ) {
$param = $this->get_param( $key );
if ( null !== $param && ! empty( $arg['validate_callback'] ) ) {
/** @var bool|\WP_Error $valid_check */
$valid_check = call_user_func( $arg['validate_callback'], $param, $this, $key );
if ( false === $valid_check ) {
$invalid_params[ $key ] = __( 'Invalid parameter.' );
}
if ( is_wp_error( $valid_check ) ) {
$invalid_params[ $key ] = implode( ' ', $valid_check->get_error_messages() );
$invalid_details[ $key ] = rest_convert_error_to_response( $valid_check )->get_data();
}
}
}
if ( $invalid_params ) {
return new WP_Error(
'rest_invalid_param',
/* translators: %s: List of invalid parameters. */
sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ),
array(
'status' => 400,
'params' => $invalid_params,
'details' => $invalid_details,
)
);
}
if ( isset( $attributes['validate_callback'] ) ) {
$valid_check = call_user_func( $attributes['validate_callback'], $this );
if ( is_wp_error( $valid_check ) ) {
return $valid_check;
}
if ( false === $valid_check ) {
// A WP_Error instance is preferred, but false is supported for parity with the per-arg validate_callback.
return new WP_Error( 'rest_invalid_params', __( 'Invalid parameters.' ), array( 'status' => 400 ) );
}
}
return true;
}
/**
* Checks if a parameter is set.
*
* @since 4.4.0
*
* @param string $offset Parameter name.
* @return bool Whether the parameter is set.
*/
#[ReturnTypeWillChange]
public function offsetExists( $offset ) {
$order = $this->get_parameter_order();
foreach ( $order as $type ) {
if ( isset( $this->params[ $type ][ $offset ] ) ) {
return true;
}
}
return false;
}
/**
* Retrieves a parameter from the request.
*
* @since 4.4.0
*
* @param string $offset Parameter name.
* @return mixed|null Value if set, null otherwise.
*/
#[ReturnTypeWillChange]
public function offsetGet( $offset ) {
return $this->get_param( $offset );
}
/**
* Sets a parameter on the request.
*
* @since 4.4.0
*
* @param string $offset Parameter name.
* @param mixed $value Parameter value.
*/
#[ReturnTypeWillChange]
public function offsetSet( $offset, $value ) {
$this->set_param( $offset, $value );
}
/**
* Removes a parameter from the request.
*
* @since 4.4.0
*
* @param string $offset Parameter name.
*/
#[ReturnTypeWillChange]
public function offsetUnset( $offset ) {
$order = $this->get_parameter_order();
// Remove the offset from every group.
foreach ( $order as $type ) {
unset( $this->params[ $type ][ $offset ] );
}
}
/**
* Retrieves a WP_REST_Request object from a full URL.
*
* @since 4.5.0
*
* @param string $url URL with protocol, domain, path and query args.
* @return WP_REST_Request|false WP_REST_Request object on success, false on failure.
*/
public static function from_url( $url ) {
$bits = parse_url( $url );
$query_params = array();
if ( ! empty( $bits['query'] ) ) {
wp_parse_str( $bits['query'], $query_params );
}
$api_root = rest_url();
if ( get_option( 'permalink_structure' ) && str_starts_with( $url, $api_root ) ) {
// Pretty permalinks on, and URL is under the API root.
$api_url_part = substr( $url, strlen( untrailingslashit( $api_root ) ) );
$route = parse_url( $api_url_part, PHP_URL_PATH );
} elseif ( ! empty( $query_params['rest_route'] ) ) {
// ?rest_route=... set directly.
$route = $query_params['rest_route'];
unset( $query_params['rest_route'] );
}
$request = false;
if ( ! empty( $route ) ) {
$request = new WP_REST_Request( 'GET', $route );
$request->set_query_params( $query_params );
}
/**
* Filters the REST API request generated from a URL.
*
* @since 4.5.0
*
* @param WP_REST_Request|false $request Generated request object, or false if URL
* could not be parsed.
* @param string $url URL the request was generated from.
*/
return apply_filters( 'rest_request_from_url', $request, $url );
}
}
PK \p ' search/class-wp-rest-search-handler.phpnu [ type;
}
/**
* Gets the object subtypes managed by this search handler.
*
* @since 5.0.0
*
* @return string[] Array of object subtype identifiers.
*/
public function get_subtypes() {
return $this->subtypes;
}
/**
* Searches the object type content for a given search request.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full REST request.
* @return array Associative array containing an `WP_REST_Search_Handler::RESULT_IDS` containing
* an array of found IDs and `WP_REST_Search_Handler::RESULT_TOTAL` containing the
* total count for the matching search results.
*/
abstract public function search_items( WP_REST_Request $request );
/**
* Prepares the search result for a given ID.
*
* @since 5.0.0
* @since 5.6.0 The `$id` parameter can accept a string.
*
* @param int|string $id Item ID.
* @param array $fields Fields to include for the item.
* @return array Associative array containing all fields for the item.
*/
abstract public function prepare_item( $id, array $fields );
/**
* Prepares links for the search result of a given ID.
*
* @since 5.0.0
* @since 5.6.0 The `$id` parameter can accept a string.
*
* @param int|string $id Item ID.
* @return array Links for the given item.
*/
abstract public function prepare_item_links( $id );
}
PK \nj j search/error_lognu [ [17-Feb-2024 04:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[17-Feb-2024 04:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Feb-2024 04:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[17-Feb-2024 06:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[17-Feb-2024 06:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Feb-2024 06:34:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:57:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Apr-2024 11:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[29-Apr-2024 11:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[29-Apr-2024 11:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-May-2024 21:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-May-2024 21:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-May-2024 21:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-May-2024 06:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-May-2024 06:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-May-2024 06:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-May-2024 18:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-May-2024 18:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-May-2024 18:32:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[11-May-2024 09:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-May-2024 09:44:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-May-2024 09:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[11-May-2024 16:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-May-2024 16:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-May-2024 16:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[12-Jul-2024 17:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[12-Jul-2024 17:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[12-Jul-2024 17:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Jul-2024 16:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Jul-2024 16:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Jul-2024 16:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Aug-2024 05:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[07-Aug-2024 05:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[07-Aug-2024 05:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-Aug-2024 21:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-Aug-2024 21:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-Aug-2024 21:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:06:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:10:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:10:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2024 20:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2024 20:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2024 20:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2024 20:29:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2024 20:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2024 20:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-Nov-2024 10:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-Nov-2024 10:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-Nov-2024 10:23:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Nov-2024 04:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[16-Nov-2024 04:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Nov-2024 04:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Nov-2024 02:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Nov-2024 02:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Nov-2024 00:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Nov-2024 00:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Nov-2024 00:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[08-Dec-2024 16:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Dec-2024 16:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Dec-2024 16:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Dec-2024 08:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Dec-2024 08:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Dec-2024 08:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Jan-2025 07:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[16-Jan-2025 07:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[16-Jan-2025 07:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Feb-2025 02:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Feb-2025 02:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Feb-2025 02:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Feb-2025 06:15:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Feb-2025 06:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Feb-2025 06:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-Mar-2025 11:56:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-Mar-2025 11:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-Mar-2025 11:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Mar-2025 10:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Mar-2025 10:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[29-Mar-2025 10:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Jun-2025 16:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Jun-2025 16:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Jun-2025 16:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[01-Jul-2025 14:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[01-Jul-2025 14:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[01-Jul-2025 14:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Jul-2025 09:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Jul-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Jul-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Aug-2025 11:09:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Aug-2025 11:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:10:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[08-Aug-2025 11:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 05:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 05:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 05:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 05:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 05:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 05:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 06:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 06:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 06:05:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 06:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 06:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 06:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[20-Aug-2025 23:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[20-Aug-2025 23:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[20-Aug-2025 23:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Aug-2025 20:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[21-Aug-2025 20:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Aug-2025 20:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 20:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 20:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 20:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 20:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 20:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 20:47:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 21:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 21:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 21:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 21:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 21:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 21:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[26-Aug-2025 06:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[26-Aug-2025 06:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[26-Aug-2025 06:26:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[26-Aug-2025 06:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[26-Aug-2025 06:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[26-Aug-2025 06:35:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[27-Aug-2025 13:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[27-Aug-2025 13:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[27-Aug-2025 13:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[27-Aug-2025 15:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[27-Aug-2025 15:20:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[27-Aug-2025 15:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Sep-2025 00:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Sep-2025 00:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Sep-2025 00:43:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Sep-2025 01:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Sep-2025 01:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Sep-2025 01:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Sep-2025 01:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Sep-2025 01:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Sep-2025 01:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Sep-2025 02:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Sep-2025 02:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Sep-2025 02:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[09-Sep-2025 17:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[09-Sep-2025 17:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[09-Sep-2025 17:44:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[09-Sep-2025 17:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[09-Sep-2025 17:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[09-Sep-2025 17:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Sep-2025 15:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Sep-2025 15:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Sep-2025 15:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Sep-2025 15:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Sep-2025 15:17:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Sep-2025 15:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Sep-2025 17:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Sep-2025 17:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Sep-2025 17:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Sep-2025 17:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Sep-2025 17:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Sep-2025 17:15:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2025 06:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2025 06:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2025 06:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2025 06:47:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2025 06:47:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2025 06:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Sep-2025 12:43:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Sep-2025 12:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Sep-2025 12:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Sep-2025 12:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Sep-2025 12:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Sep-2025 12:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[25-Sep-2025 22:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[25-Sep-2025 22:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[25-Sep-2025 22:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[25-Sep-2025 22:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[25-Sep-2025 22:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[25-Sep-2025 22:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Oct-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Oct-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Oct-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Oct-2025 10:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Oct-2025 10:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Oct-2025 10:49:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Nov-2025 08:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Nov-2025 08:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Nov-2025 08:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Nov-2025 08:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Nov-2025 08:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Nov-2025 08:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Dec-2025 18:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Dec-2025 18:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Dec-2025 18:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Dec-2025 18:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Dec-2025 18:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Dec-2025 18:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[23-Dec-2025 11:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[23-Dec-2025 11:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[23-Dec-2025 11:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[23-Dec-2025 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[23-Dec-2025 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[23-Dec-2025 12:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Dec-2025 14:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Dec-2025 14:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Dec-2025 14:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Dec-2025 15:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Dec-2025 15:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Dec-2025 15:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Jan-2026 10:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Jan-2026 10:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Jan-2026 10:10:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[05-Jan-2026 18:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[05-Jan-2026 18:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[05-Jan-2026 18:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Jan-2026 01:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Jan-2026 01:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Jan-2026 01:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Jan-2026 01:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Jan-2026 01:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Jan-2026 01:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 06:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-Jan-2026 06:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 06:29:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-Jan-2026 23:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-Jan-2026 23:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 23:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Jan-2026 00:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Jan-2026 00:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Jan-2026 00:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
PK \ search/.htaccessnu [ PK \? , search/class-wp-rest-post-search-handler.phpnu [ type = 'post';
// Support all public post types except attachments.
$this->subtypes = array_diff(
array_values(
get_post_types(
array(
'public' => true,
'show_in_rest' => true,
),
'names'
)
),
array( 'attachment' )
);
}
/**
* Searches posts for a given search request.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full REST request.
* @return array {
* Associative array containing found IDs and total count for the matching search results.
*
* @type int[] $ids Array containing the matching post IDs.
* @type int $total Total count for the matching search results.
* }
*/
public function search_items( WP_REST_Request $request ) {
// Get the post types to search for the current request.
$post_types = $request[ WP_REST_Search_Controller::PROP_SUBTYPE ];
if ( in_array( WP_REST_Search_Controller::TYPE_ANY, $post_types, true ) ) {
$post_types = $this->subtypes;
}
$query_args = array(
'post_type' => $post_types,
'post_status' => 'publish',
'paged' => (int) $request['page'],
'posts_per_page' => (int) $request['per_page'],
'ignore_sticky_posts' => true,
);
if ( ! empty( $request['search'] ) ) {
$query_args['s'] = $request['search'];
}
if ( ! empty( $request['exclude'] ) ) {
$query_args['post__not_in'] = $request['exclude'];
}
if ( ! empty( $request['include'] ) ) {
$query_args['post__in'] = $request['include'];
}
/**
* Filters the query arguments for a REST API post search request.
*
* Enables adding extra arguments or setting defaults for a post search request.
*
* @since 5.1.0
*
* @param array $query_args Key value array of query var to query value.
* @param WP_REST_Request $request The request used.
*/
$query_args = apply_filters( 'rest_post_search_query', $query_args, $request );
$query = new WP_Query();
$posts = $query->query( $query_args );
// Querying the whole post object will warm the object cache, avoiding an extra query per result.
$found_ids = wp_list_pluck( $posts, 'ID' );
$total = $query->found_posts;
return array(
self::RESULT_IDS => $found_ids,
self::RESULT_TOTAL => $total,
);
}
/**
* Prepares the search result for a given post ID.
*
* @since 5.0.0
*
* @param int $id Post ID.
* @param array $fields Fields to include for the post.
* @return array {
* Associative array containing fields for the post based on the `$fields` parameter.
*
* @type int $id Optional. Post ID.
* @type string $title Optional. Post title.
* @type string $url Optional. Post permalink URL.
* @type string $type Optional. Post type.
* }
*/
public function prepare_item( $id, array $fields ) {
$post = get_post( $id );
$data = array();
if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_ID ] = (int) $post->ID;
}
if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
if ( post_type_supports( $post->post_type, 'title' ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
$data[ WP_REST_Search_Controller::PROP_TITLE ] = get_the_title( $post->ID );
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
} else {
$data[ WP_REST_Search_Controller::PROP_TITLE ] = '';
}
}
if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_URL ] = get_permalink( $post->ID );
}
if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_TYPE ] = $this->type;
}
if ( in_array( WP_REST_Search_Controller::PROP_SUBTYPE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_SUBTYPE ] = $post->post_type;
}
return $data;
}
/**
* Prepares links for the search result of a given ID.
*
* @since 5.0.0
*
* @param int $id Item ID.
* @return array Links for the given item.
*/
public function prepare_item_links( $id ) {
$post = get_post( $id );
$links = array();
$item_route = rest_get_route_for_post( $post );
if ( ! empty( $item_route ) ) {
$links['self'] = array(
'href' => rest_url( $item_route ),
'embeddable' => true,
);
}
$links['about'] = array(
'href' => rest_url( 'wp/v2/types/' . $post->post_type ),
);
return $links;
}
/**
* Overwrites the default protected and private title format.
*
* By default, WordPress will show password protected or private posts with a title of
* "Protected: %s" or "Private: %s", as the REST API communicates the status of a post
* in a machine-readable format, we remove the prefix.
*
* @since 5.0.0
*
* @return string Title format.
*/
public function protected_title_format() {
return '%s';
}
/**
* Attempts to detect the route to access a single item.
*
* @since 5.0.0
* @deprecated 5.5.0 Use rest_get_route_for_post()
* @see rest_get_route_for_post()
*
* @param WP_Post $post Post object.
* @return string REST route relative to the REST base URI, or empty string if unknown.
*/
protected function detect_rest_item_route( $post ) {
_deprecated_function( __METHOD__, '5.5.0', 'rest_get_route_for_post()' );
return rest_get_route_for_post( $post );
}
}
PK \zjG[ [ 3 search/class-wp-rest-post-format-search-handler.phpnu [ type = 'post-format';
}
/**
* Searches the post formats for a given search request.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full REST request.
* @return array {
* Associative array containing found IDs and total count for the matching search results.
*
* @type string[] $ids Array containing slugs for the matching post formats.
* @type int $total Total count for the matching search results.
* }
*/
public function search_items( WP_REST_Request $request ) {
$format_strings = get_post_format_strings();
$format_slugs = array_keys( $format_strings );
$query_args = array();
if ( ! empty( $request['search'] ) ) {
$query_args['search'] = $request['search'];
}
/**
* Filters the query arguments for a REST API post format search request.
*
* Enables adding extra arguments or setting defaults for a post format search request.
*
* @since 5.6.0
*
* @param array $query_args Key value array of query var to query value.
* @param WP_REST_Request $request The request used.
*/
$query_args = apply_filters( 'rest_post_format_search_query', $query_args, $request );
$found_ids = array();
foreach ( $format_slugs as $format_slug ) {
if ( ! empty( $query_args['search'] ) ) {
$format_string = get_post_format_string( $format_slug );
$format_slug_match = stripos( $format_slug, $query_args['search'] ) !== false;
$format_string_match = stripos( $format_string, $query_args['search'] ) !== false;
if ( ! $format_slug_match && ! $format_string_match ) {
continue;
}
}
$format_link = get_post_format_link( $format_slug );
if ( $format_link ) {
$found_ids[] = $format_slug;
}
}
$page = (int) $request['page'];
$per_page = (int) $request['per_page'];
return array(
self::RESULT_IDS => array_slice( $found_ids, ( $page - 1 ) * $per_page, $per_page ),
self::RESULT_TOTAL => count( $found_ids ),
);
}
/**
* Prepares the search result for a given post format.
*
* @since 5.6.0
*
* @param string $id Item ID, the post format slug.
* @param array $fields Fields to include for the item.
* @return array {
* Associative array containing fields for the post format based on the `$fields` parameter.
*
* @type string $id Optional. Post format slug.
* @type string $title Optional. Post format name.
* @type string $url Optional. Post format permalink URL.
* @type string $type Optional. String 'post-format'.
* }
*/
public function prepare_item( $id, array $fields ) {
$data = array();
if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_ID ] = $id;
}
if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_TITLE ] = get_post_format_string( $id );
}
if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_URL ] = get_post_format_link( $id );
}
if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_TYPE ] = $this->type;
}
return $data;
}
/**
* Prepares links for the search result.
*
* @since 5.6.0
*
* @param string $id Item ID, the post format slug.
* @return array Links for the given item.
*/
public function prepare_item_links( $id ) {
return array();
}
}
PK \eX , search/class-wp-rest-term-search-handler.phpnu [ type = 'term';
$this->subtypes = array_values(
get_taxonomies(
array(
'public' => true,
'show_in_rest' => true,
),
'names'
)
);
}
/**
* Searches terms for a given search request.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full REST request.
* @return array {
* Associative array containing found IDs and total count for the matching search results.
*
* @type int[] $ids Found term IDs.
* @type string|int|WP_Error $total Numeric string containing the number of terms in that
* taxonomy, 0 if there are no results, or WP_Error if
* the requested taxonomy does not exist.
* }
*/
public function search_items( WP_REST_Request $request ) {
$taxonomies = $request[ WP_REST_Search_Controller::PROP_SUBTYPE ];
if ( in_array( WP_REST_Search_Controller::TYPE_ANY, $taxonomies, true ) ) {
$taxonomies = $this->subtypes;
}
$page = (int) $request['page'];
$per_page = (int) $request['per_page'];
$query_args = array(
'taxonomy' => $taxonomies,
'hide_empty' => false,
'offset' => ( $page - 1 ) * $per_page,
'number' => $per_page,
);
if ( ! empty( $request['search'] ) ) {
$query_args['search'] = $request['search'];
}
if ( ! empty( $request['exclude'] ) ) {
$query_args['exclude'] = $request['exclude'];
}
if ( ! empty( $request['include'] ) ) {
$query_args['include'] = $request['include'];
}
/**
* Filters the query arguments for a REST API term search request.
*
* Enables adding extra arguments or setting defaults for a term search request.
*
* @since 5.6.0
*
* @param array $query_args Key value array of query var to query value.
* @param WP_REST_Request $request The request used.
*/
$query_args = apply_filters( 'rest_term_search_query', $query_args, $request );
$query = new WP_Term_Query();
$found_terms = $query->query( $query_args );
$found_ids = wp_list_pluck( $found_terms, 'term_id' );
unset( $query_args['offset'], $query_args['number'] );
$total = wp_count_terms( $query_args );
// wp_count_terms() can return a falsey value when the term has no children.
if ( ! $total ) {
$total = 0;
}
return array(
self::RESULT_IDS => $found_ids,
self::RESULT_TOTAL => $total,
);
}
/**
* Prepares the search result for a given term ID.
*
* @since 5.6.0
*
* @param int $id Term ID.
* @param array $fields Fields to include for the term.
* @return array {
* Associative array containing fields for the term based on the `$fields` parameter.
*
* @type int $id Optional. Term ID.
* @type string $title Optional. Term name.
* @type string $url Optional. Term permalink URL.
* @type string $type Optional. Term taxonomy name.
* }
*/
public function prepare_item( $id, array $fields ) {
$term = get_term( $id );
$data = array();
if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_ID ] = (int) $id;
}
if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_TITLE ] = $term->name;
}
if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_URL ] = get_term_link( $id );
}
if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
$data[ WP_REST_Search_Controller::PROP_TYPE ] = $term->taxonomy;
}
return $data;
}
/**
* Prepares links for the search result of a given ID.
*
* @since 5.6.0
*
* @param int $id Item ID.
* @return array[] Array of link arrays for the given item.
*/
public function prepare_item_links( $id ) {
$term = get_term( $id );
$links = array();
$item_route = rest_get_route_for_term( $term );
if ( $item_route ) {
$links['self'] = array(
'href' => rest_url( $item_route ),
'embeddable' => true,
);
}
$links['about'] = array(
'href' => rest_url( sprintf( 'wp/v2/taxonomies/%s', $term->taxonomy ) ),
);
return $links;
}
}
PK \ 1 endpoints/class-wp-rest-menu-items-controller.phpnu [ get_post( $id );
if ( is_wp_error( $post ) ) {
return $post;
}
return wp_setup_nav_menu_item( $post );
}
/**
* Checks if a given request has access to read menu items.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) {
$has_permission = parent::get_items_permissions_check( $request );
if ( true !== $has_permission ) {
return $has_permission;
}
return $this->check_has_read_only_access( $request );
}
/**
* Checks if a given request has access to read a menu item if they have access to edit them.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return bool|WP_Error True if the request has read access for the item, WP_Error object or false otherwise.
*/
public function get_item_permissions_check( $request ) {
$permission_check = parent::get_item_permissions_check( $request );
if ( true !== $permission_check ) {
return $permission_check;
}
return $this->check_has_read_only_access( $request );
}
/**
* Checks whether the current user has read permission for the endpoint.
*
* This allows for any user that can `edit_theme_options` or edit any REST API available post type.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
*/
protected function check_has_read_only_access( $request ) {
/**
* Filters whether the current user has read access to menu items via the REST API.
*
* @since 6.8.0
*
* @param bool $read_only_access Whether the current user has read access to menu items
* via the REST API.
* @param WP_REST_Request $request Full details about the request.
* @param WP_REST_Controller $controller The current instance of the controller.
*/
$read_only_access = apply_filters( 'rest_menu_read_access', false, $request, $this );
if ( $read_only_access ) {
return true;
}
if ( current_user_can( 'edit_theme_options' ) ) {
return true;
}
if ( current_user_can( 'edit_posts' ) ) {
return true;
}
foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
if ( current_user_can( $post_type->cap->edit_posts ) ) {
return true;
}
}
return new WP_Error(
'rest_cannot_view',
__( 'Sorry, you are not allowed to view menu items.' ),
array( 'status' => rest_authorization_required_code() )
);
}
/**
* Creates a single nav menu item.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function create_item( $request ) {
if ( ! empty( $request['id'] ) ) {
return new WP_Error( 'rest_post_exists', __( 'Cannot create existing post.' ), array( 'status' => 400 ) );
}
$prepared_nav_item = $this->prepare_item_for_database( $request );
if ( is_wp_error( $prepared_nav_item ) ) {
return $prepared_nav_item;
}
$prepared_nav_item = (array) $prepared_nav_item;
$nav_menu_item_id = wp_update_nav_menu_item( $prepared_nav_item['menu-id'], $prepared_nav_item['menu-item-db-id'], wp_slash( $prepared_nav_item ), false );
if ( is_wp_error( $nav_menu_item_id ) ) {
if ( 'db_insert_error' === $nav_menu_item_id->get_error_code() ) {
$nav_menu_item_id->add_data( array( 'status' => 500 ) );
} else {
$nav_menu_item_id->add_data( array( 'status' => 400 ) );
}
return $nav_menu_item_id;
}
$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
if ( is_wp_error( $nav_menu_item ) ) {
$nav_menu_item->add_data( array( 'status' => 404 ) );
return $nav_menu_item;
}
/**
* Fires after a single menu item is created or updated via the REST API.
*
* @since 5.9.0
*
* @param object $nav_menu_item Inserted or updated menu item object.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating a menu item, false when updating.
*/
do_action( 'rest_insert_nav_menu_item', $nav_menu_item, $request, true );
$schema = $this->get_item_schema();
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $nav_menu_item_id );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
$fields_update = $this->update_additional_fields_for_object( $nav_menu_item, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'edit' );
/**
* Fires after a single menu item is completely created or updated via the REST API.
*
* @since 5.9.0
*
* @param object $nav_menu_item Inserted or updated menu item object.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating a menu item, false when updating.
*/
do_action( 'rest_after_insert_nav_menu_item', $nav_menu_item, $request, true );
$post = get_post( $nav_menu_item_id );
wp_after_insert_post( $post, false, null );
$response = $this->prepare_item_for_response( $post, $request );
$response = rest_ensure_response( $response );
$response->set_status( 201 );
$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $nav_menu_item_id ) ) );
return $response;
}
/**
* Updates a single nav menu item.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function update_item( $request ) {
$valid_check = $this->get_nav_menu_item( $request['id'] );
if ( is_wp_error( $valid_check ) ) {
return $valid_check;
}
$post_before = get_post( $request['id'] );
$prepared_nav_item = $this->prepare_item_for_database( $request );
if ( is_wp_error( $prepared_nav_item ) ) {
return $prepared_nav_item;
}
$prepared_nav_item = (array) $prepared_nav_item;
$nav_menu_item_id = wp_update_nav_menu_item( $prepared_nav_item['menu-id'], $prepared_nav_item['menu-item-db-id'], wp_slash( $prepared_nav_item ), false );
if ( is_wp_error( $nav_menu_item_id ) ) {
if ( 'db_update_error' === $nav_menu_item_id->get_error_code() ) {
$nav_menu_item_id->add_data( array( 'status' => 500 ) );
} else {
$nav_menu_item_id->add_data( array( 'status' => 400 ) );
}
return $nav_menu_item_id;
}
$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
if ( is_wp_error( $nav_menu_item ) ) {
$nav_menu_item->add_data( array( 'status' => 404 ) );
return $nav_menu_item;
}
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
do_action( 'rest_insert_nav_menu_item', $nav_menu_item, $request, false );
$schema = $this->get_item_schema();
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $nav_menu_item->ID );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$post = get_post( $nav_menu_item_id );
$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
$fields_update = $this->update_additional_fields_for_object( $nav_menu_item, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'edit' );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
do_action( 'rest_after_insert_nav_menu_item', $nav_menu_item, $request, false );
wp_after_insert_post( $post, true, $post_before );
$response = $this->prepare_item_for_response( get_post( $nav_menu_item_id ), $request );
return rest_ensure_response( $response );
}
/**
* Deletes a single nav menu item.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error True on success, or WP_Error object on failure.
*/
public function delete_item( $request ) {
$menu_item = $this->get_nav_menu_item( $request['id'] );
if ( is_wp_error( $menu_item ) ) {
return $menu_item;
}
// We don't support trashing for menu items.
if ( ! $request['force'] ) {
/* translators: %s: force=true */
return new WP_Error( 'rest_trash_not_supported', sprintf( __( "Menu items do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) );
}
$previous = $this->prepare_item_for_response( get_post( $request['id'] ), $request );
$result = wp_delete_post( $request['id'], true );
if ( ! $result ) {
return new WP_Error( 'rest_cannot_delete', __( 'The post cannot be deleted.' ), array( 'status' => 500 ) );
}
$response = new WP_REST_Response();
$response->set_data(
array(
'deleted' => true,
'previous' => $previous->get_data(),
)
);
/**
* Fires immediately after a single menu item is deleted via the REST API.
*
* @since 5.9.0
*
* @param object $nav_menu_item Inserted or updated menu item object.
* @param WP_REST_Response $response The response data.
* @param WP_REST_Request $request Request object.
*/
do_action( 'rest_delete_nav_menu_item', $menu_item, $response, $request );
return $response;
}
/**
* Prepares a single nav menu item for create or update.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Request object.
*
* @return object|WP_Error
*/
protected function prepare_item_for_database( $request ) {
$menu_item_db_id = $request['id'];
$menu_item_obj = $this->get_nav_menu_item( $menu_item_db_id );
// Need to persist the menu item data. See https://core.trac.wordpress.org/ticket/28138
if ( ! is_wp_error( $menu_item_obj ) ) {
// Correct the menu position if this was the first item. See https://core.trac.wordpress.org/ticket/28140
$position = ( 0 === $menu_item_obj->menu_order ) ? 1 : $menu_item_obj->menu_order;
$prepared_nav_item = array(
'menu-item-db-id' => $menu_item_db_id,
'menu-item-object-id' => $menu_item_obj->object_id,
'menu-item-object' => $menu_item_obj->object,
'menu-item-parent-id' => $menu_item_obj->menu_item_parent,
'menu-item-position' => $position,
'menu-item-type' => $menu_item_obj->type,
'menu-item-title' => $menu_item_obj->title,
'menu-item-url' => $menu_item_obj->url,
'menu-item-description' => $menu_item_obj->description,
'menu-item-attr-title' => $menu_item_obj->attr_title,
'menu-item-target' => $menu_item_obj->target,
'menu-item-classes' => $menu_item_obj->classes,
// Stored in the database as a string.
'menu-item-xfn' => explode( ' ', $menu_item_obj->xfn ),
'menu-item-status' => $menu_item_obj->post_status,
'menu-id' => $this->get_menu_id( $menu_item_db_id ),
);
} else {
$prepared_nav_item = array(
'menu-id' => 0,
'menu-item-db-id' => 0,
'menu-item-object-id' => 0,
'menu-item-object' => '',
'menu-item-parent-id' => 0,
'menu-item-position' => 1,
'menu-item-type' => 'custom',
'menu-item-title' => '',
'menu-item-url' => '',
'menu-item-description' => '',
'menu-item-attr-title' => '',
'menu-item-target' => '',
'menu-item-classes' => array(),
'menu-item-xfn' => array(),
'menu-item-status' => 'publish',
);
}
$mapping = array(
'menu-item-db-id' => 'id',
'menu-item-object-id' => 'object_id',
'menu-item-object' => 'object',
'menu-item-parent-id' => 'parent',
'menu-item-position' => 'menu_order',
'menu-item-type' => 'type',
'menu-item-url' => 'url',
'menu-item-description' => 'description',
'menu-item-attr-title' => 'attr_title',
'menu-item-target' => 'target',
'menu-item-classes' => 'classes',
'menu-item-xfn' => 'xfn',
'menu-item-status' => 'status',
);
$schema = $this->get_item_schema();
foreach ( $mapping as $original => $api_request ) {
if ( isset( $request[ $api_request ] ) ) {
$prepared_nav_item[ $original ] = $request[ $api_request ];
}
}
$taxonomy = get_taxonomy( 'nav_menu' );
$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
// If menus submitted, cast to int.
if ( ! empty( $request[ $base ] ) ) {
$prepared_nav_item['menu-id'] = absint( $request[ $base ] );
}
// Nav menu title.
if ( ! empty( $schema['properties']['title'] ) && isset( $request['title'] ) ) {
if ( is_string( $request['title'] ) ) {
$prepared_nav_item['menu-item-title'] = $request['title'];
} elseif ( ! empty( $request['title']['raw'] ) ) {
$prepared_nav_item['menu-item-title'] = $request['title']['raw'];
}
}
$error = new WP_Error();
// Check if object id exists before saving.
if ( ! $prepared_nav_item['menu-item-object'] ) {
// If taxonomy, check if term exists.
if ( 'taxonomy' === $prepared_nav_item['menu-item-type'] ) {
$original = get_term( absint( $prepared_nav_item['menu-item-object-id'] ) );
if ( empty( $original ) || is_wp_error( $original ) ) {
$error->add( 'rest_term_invalid_id', __( 'Invalid term ID.' ), array( 'status' => 400 ) );
} else {
$prepared_nav_item['menu-item-object'] = get_term_field( 'taxonomy', $original );
}
// If post, check if post object exists.
} elseif ( 'post_type' === $prepared_nav_item['menu-item-type'] ) {
$original = get_post( absint( $prepared_nav_item['menu-item-object-id'] ) );
if ( empty( $original ) ) {
$error->add( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 400 ) );
} else {
$prepared_nav_item['menu-item-object'] = get_post_type( $original );
}
}
}
// If post type archive, check if post type exists.
if ( 'post_type_archive' === $prepared_nav_item['menu-item-type'] ) {
$post_type = $prepared_nav_item['menu-item-object'] ? $prepared_nav_item['menu-item-object'] : false;
$original = get_post_type_object( $post_type );
if ( ! $original ) {
$error->add( 'rest_post_invalid_type', __( 'Invalid post type.' ), array( 'status' => 400 ) );
}
}
// Check if menu item is type custom, then title and url are required.
if ( 'custom' === $prepared_nav_item['menu-item-type'] ) {
if ( '' === $prepared_nav_item['menu-item-title'] ) {
$error->add( 'rest_title_required', __( 'The title is required when using a custom menu item type.' ), array( 'status' => 400 ) );
}
if ( empty( $prepared_nav_item['menu-item-url'] ) ) {
$error->add( 'rest_url_required', __( 'The url is required when using a custom menu item type.' ), array( 'status' => 400 ) );
}
}
if ( $error->has_errors() ) {
return $error;
}
// The xfn and classes properties are arrays, but passed to wp_update_nav_menu_item as a string.
foreach ( array( 'menu-item-xfn', 'menu-item-classes' ) as $key ) {
$prepared_nav_item[ $key ] = implode( ' ', $prepared_nav_item[ $key ] );
}
// Only draft / publish are valid post status for menu items.
if ( 'publish' !== $prepared_nav_item['menu-item-status'] ) {
$prepared_nav_item['menu-item-status'] = 'draft';
}
$prepared_nav_item = (object) $prepared_nav_item;
/**
* Filters a menu item before it is inserted via the REST API.
*
* @since 5.9.0
*
* @param object $prepared_nav_item An object representing a single menu item prepared
* for inserting or updating the database.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( 'rest_pre_insert_nav_menu_item', $prepared_nav_item, $request );
}
/**
* Prepares a single nav menu item output for response.
*
* @since 5.9.0
*
* @param WP_Post $item Post object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $item, $request ) {
// Base fields for every post.
$fields = $this->get_fields_for_response( $request );
$menu_item = $this->get_nav_menu_item( $item->ID );
$data = array();
if ( rest_is_field_included( 'id', $fields ) ) {
$data['id'] = $menu_item->ID;
}
if ( rest_is_field_included( 'title', $fields ) ) {
$data['title'] = array();
}
if ( rest_is_field_included( 'title.raw', $fields ) ) {
$data['title']['raw'] = $menu_item->title;
}
if ( rest_is_field_included( 'title.rendered', $fields ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
/** This filter is documented in wp-includes/post-template.php */
$title = apply_filters( 'the_title', $menu_item->title, $menu_item->ID );
$data['title']['rendered'] = $title;
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
}
if ( rest_is_field_included( 'status', $fields ) ) {
$data['status'] = $menu_item->post_status;
}
if ( rest_is_field_included( 'url', $fields ) ) {
$data['url'] = $menu_item->url;
}
if ( rest_is_field_included( 'attr_title', $fields ) ) {
// Same as post_excerpt.
$data['attr_title'] = $menu_item->attr_title;
}
if ( rest_is_field_included( 'description', $fields ) ) {
// Same as post_content.
$data['description'] = $menu_item->description;
}
if ( rest_is_field_included( 'type', $fields ) ) {
$data['type'] = $menu_item->type;
}
if ( rest_is_field_included( 'type_label', $fields ) ) {
$data['type_label'] = $menu_item->type_label;
}
if ( rest_is_field_included( 'object', $fields ) ) {
$data['object'] = $menu_item->object;
}
if ( rest_is_field_included( 'object_id', $fields ) ) {
// It is stored as a string, but should be exposed as an integer.
$data['object_id'] = absint( $menu_item->object_id );
}
if ( rest_is_field_included( 'parent', $fields ) ) {
// Same as post_parent, exposed as an integer.
$data['parent'] = (int) $menu_item->menu_item_parent;
}
if ( rest_is_field_included( 'menu_order', $fields ) ) {
// Same as post_parent, exposed as an integer.
$data['menu_order'] = (int) $menu_item->menu_order;
}
if ( rest_is_field_included( 'target', $fields ) ) {
$data['target'] = $menu_item->target;
}
if ( rest_is_field_included( 'classes', $fields ) ) {
$data['classes'] = (array) $menu_item->classes;
}
if ( rest_is_field_included( 'xfn', $fields ) ) {
$data['xfn'] = array_map( 'sanitize_html_class', explode( ' ', $menu_item->xfn ) );
}
if ( rest_is_field_included( 'invalid', $fields ) ) {
$data['invalid'] = (bool) $menu_item->_invalid;
}
if ( rest_is_field_included( 'meta', $fields ) ) {
$data['meta'] = $this->meta->get_value( $menu_item->ID, $request );
}
$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );
foreach ( $taxonomies as $taxonomy ) {
$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
if ( rest_is_field_included( $base, $fields ) ) {
$terms = get_the_terms( $item, $taxonomy->name );
if ( ! is_array( $terms ) ) {
continue;
}
$term_ids = $terms ? array_values( wp_list_pluck( $terms, 'term_id' ) ) : array();
if ( 'nav_menu' === $taxonomy->name ) {
$data[ $base ] = $term_ids ? array_shift( $term_ids ) : 0;
} else {
$data[ $base ] = $term_ids;
}
}
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
// Wrap the data in a response object.
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$links = $this->prepare_links( $item );
$response->add_links( $links );
if ( ! empty( $links['self']['href'] ) ) {
$actions = $this->get_available_actions( $item, $request );
$self = $links['self']['href'];
foreach ( $actions as $rel ) {
$response->add_link( $rel, $self );
}
}
}
/**
* Filters the menu item data for a REST API response.
*
* @since 5.9.0
*
* @param WP_REST_Response $response The response object.
* @param object $menu_item Menu item setup by {@see wp_setup_nav_menu_item()}.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( 'rest_prepare_nav_menu_item', $response, $menu_item, $request );
}
/**
* Prepares links for the request.
*
* @since 5.9.0
*
* @param WP_Post $post Post object.
* @return array Links for the given post.
*/
protected function prepare_links( $post ) {
$links = parent::prepare_links( $post );
$menu_item = $this->get_nav_menu_item( $post->ID );
if ( empty( $menu_item->object_id ) ) {
return $links;
}
$path = '';
$type = '';
$key = $menu_item->type;
if ( 'post_type' === $menu_item->type ) {
$path = rest_get_route_for_post( $menu_item->object_id );
$type = get_post_type( $menu_item->object_id );
} elseif ( 'taxonomy' === $menu_item->type ) {
$path = rest_get_route_for_term( $menu_item->object_id );
$type = get_term_field( 'taxonomy', $menu_item->object_id );
}
if ( $path && $type ) {
$links['https://api.w.org/menu-item-object'][] = array(
'href' => rest_url( $path ),
$key => $type,
'embeddable' => true,
);
}
return $links;
}
/**
* Retrieves Link Description Objects that should be added to the Schema for the nav menu items collection.
*
* @since 5.9.0
*
* @return array
*/
protected function get_schema_links() {
$links = parent::get_schema_links();
$href = rest_url( "{$this->namespace}/{$this->rest_base}/{id}" );
$links[] = array(
'rel' => 'https://api.w.org/menu-item-object',
'title' => __( 'Get linked object.' ),
'href' => $href,
'targetSchema' => array(
'type' => 'object',
'properties' => array(
'object' => array(
'type' => 'integer',
),
),
),
);
return $links;
}
/**
* Retrieves the nav menu item's schema, conforming to JSON Schema.
*
* @since 5.9.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => $this->post_type,
'type' => 'object',
);
$schema['properties']['title'] = array(
'description' => __( 'The title for the object.' ),
'type' => array( 'string', 'object' ),
'context' => array( 'view', 'edit', 'embed' ),
'properties' => array(
'raw' => array(
'description' => __( 'Title for the object, as it exists in the database.' ),
'type' => 'string',
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'HTML title for the object, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
),
);
$schema['properties']['id'] = array(
'description' => __( 'Unique identifier for the object.' ),
'type' => 'integer',
'default' => 0,
'minimum' => 0,
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['type_label'] = array(
'description' => __( 'The singular label used to describe this type of menu item.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['type'] = array(
'description' => __( 'The family of objects originally represented, such as "post_type" or "taxonomy".' ),
'type' => 'string',
'enum' => array( 'taxonomy', 'post_type', 'post_type_archive', 'custom' ),
'context' => array( 'view', 'edit', 'embed' ),
'default' => 'custom',
);
$schema['properties']['status'] = array(
'description' => __( 'A named status for the object.' ),
'type' => 'string',
'enum' => array_keys( get_post_stati( array( 'internal' => false ) ) ),
'default' => 'publish',
'context' => array( 'view', 'edit', 'embed' ),
);
$schema['properties']['parent'] = array(
'description' => __( 'The ID for the parent of the object.' ),
'type' => 'integer',
'minimum' => 0,
'default' => 0,
'context' => array( 'view', 'edit', 'embed' ),
);
$schema['properties']['attr_title'] = array(
'description' => __( 'Text for the title attribute of the link element for this menu item.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
);
$schema['properties']['classes'] = array(
'description' => __( 'Class names for the link element of this menu item.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => static function ( $value ) {
return array_map( 'sanitize_html_class', wp_parse_list( $value ) );
},
),
);
$schema['properties']['description'] = array(
'description' => __( 'The description of this menu item.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
);
$schema['properties']['menu_order'] = array(
'description' => __( 'The DB ID of the nav_menu_item that is this item\'s menu parent, if any, otherwise 0.' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'integer',
'minimum' => 1,
'default' => 1,
);
$schema['properties']['object'] = array(
'description' => __( 'The type of object originally represented, such as "category", "post", or "attachment".' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'string',
'arg_options' => array(
'sanitize_callback' => 'sanitize_key',
),
);
$schema['properties']['object_id'] = array(
'description' => __( 'The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'integer',
'minimum' => 0,
'default' => 0,
);
$schema['properties']['target'] = array(
'description' => __( 'The target attribute of the link element for this menu item.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'enum' => array(
'_blank',
'',
),
);
$schema['properties']['url'] = array(
'description' => __( 'The URL to which this menu item points.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'validate_callback' => static function ( $url ) {
if ( '' === $url ) {
return true;
}
if ( sanitize_url( $url ) ) {
return true;
}
return new WP_Error(
'rest_invalid_url',
__( 'Invalid URL.' )
);
},
),
);
$schema['properties']['xfn'] = array(
'description' => __( 'The XFN relationship expressed in the link of this menu item.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => static function ( $value ) {
return array_map( 'sanitize_html_class', wp_parse_list( $value ) );
},
),
);
$schema['properties']['invalid'] = array(
'description' => __( 'Whether the menu item represents an object that no longer exists.' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'boolean',
'readonly' => true,
);
$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );
foreach ( $taxonomies as $taxonomy ) {
$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
$schema['properties'][ $base ] = array(
/* translators: %s: taxonomy name */
'description' => sprintf( __( 'The terms assigned to the object in the %s taxonomy.' ), $taxonomy->name ),
'type' => 'array',
'items' => array(
'type' => 'integer',
),
'context' => array( 'view', 'edit' ),
);
if ( 'nav_menu' === $taxonomy->name ) {
$schema['properties'][ $base ]['type'] = 'integer';
unset( $schema['properties'][ $base ]['items'] );
}
}
$schema['properties']['meta'] = $this->meta->get_field_schema();
$schema_links = $this->get_schema_links();
if ( $schema_links ) {
$schema['links'] = $schema_links;
}
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Retrieves the query params for the nav menu items collection.
*
* @since 5.9.0
*
* @return array Collection parameters.
*/
public function get_collection_params() {
$query_params = parent::get_collection_params();
$query_params['menu_order'] = array(
'description' => __( 'Limit result set to posts with a specific menu_order value.' ),
'type' => 'integer',
);
$query_params['order'] = array(
'description' => __( 'Order sort attribute ascending or descending.' ),
'type' => 'string',
'default' => 'asc',
'enum' => array( 'asc', 'desc' ),
);
$query_params['orderby'] = array(
'description' => __( 'Sort collection by object attribute.' ),
'type' => 'string',
'default' => 'menu_order',
'enum' => array(
'author',
'date',
'id',
'include',
'modified',
'parent',
'relevance',
'slug',
'include_slugs',
'title',
'menu_order',
),
);
// Change default to 100 items.
$query_params['per_page']['default'] = 100;
return $query_params;
}
/**
* Determines the allowed query_vars for a get_items() response and prepares
* them for WP_Query.
*
* @since 5.9.0
*
* @param array $prepared_args Optional. Prepared WP_Query arguments. Default empty array.
* @param WP_REST_Request $request Optional. Full details about the request.
* @return array Items query arguments.
*/
protected function prepare_items_query( $prepared_args = array(), $request = null ) {
$query_args = parent::prepare_items_query( $prepared_args, $request );
// Map to proper WP_Query orderby param.
if ( isset( $query_args['orderby'], $request['orderby'] ) ) {
$orderby_mappings = array(
'id' => 'ID',
'include' => 'post__in',
'slug' => 'post_name',
'include_slugs' => 'post_name__in',
'menu_order' => 'menu_order',
);
if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) {
$query_args['orderby'] = $orderby_mappings[ $request['orderby'] ];
}
}
$query_args['update_menu_item_cache'] = true;
return $query_args;
}
/**
* Gets the id of the menu that the given menu item belongs to.
*
* @since 5.9.0
*
* @param int $menu_item_id Menu item id.
* @return int
*/
protected function get_menu_id( $menu_item_id ) {
$menu_ids = wp_get_post_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) );
$menu_id = 0;
if ( $menu_ids && ! is_wp_error( $menu_ids ) ) {
$menu_id = array_shift( $menu_ids );
}
return $menu_id;
}
}
PK \i, , - endpoints/class-wp-rest-search-controller.phpnu [ namespace = 'wp/v2';
$this->rest_base = 'search';
foreach ( $search_handlers as $search_handler ) {
if ( ! $search_handler instanceof WP_REST_Search_Handler ) {
_doing_it_wrong(
__METHOD__,
/* translators: %s: PHP class name. */
sprintf( __( 'REST search handlers must extend the %s class.' ), 'WP_REST_Search_Handler' ),
'5.0.0'
);
continue;
}
$this->search_handlers[ $search_handler->get_type() ] = $search_handler;
}
}
/**
* Registers the routes for the search controller.
*
* @since 5.0.0
*
* @see register_rest_route()
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permission_check' ),
'args' => $this->get_collection_params(),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Checks if a given request has access to search content.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has search access, WP_Error object otherwise.
*/
public function get_items_permission_check( $request ) {
return true;
}
/**
* Retrieves a collection of search results.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
$handler = $this->get_search_handler( $request );
if ( is_wp_error( $handler ) ) {
return $handler;
}
$result = $handler->search_items( $request );
if ( ! isset( $result[ WP_REST_Search_Handler::RESULT_IDS ] ) || ! is_array( $result[ WP_REST_Search_Handler::RESULT_IDS ] ) || ! isset( $result[ WP_REST_Search_Handler::RESULT_TOTAL ] ) ) {
return new WP_Error(
'rest_search_handler_error',
__( 'Internal search handler error.' ),
array( 'status' => 500 )
);
}
$ids = $result[ WP_REST_Search_Handler::RESULT_IDS ];
$is_head_request = $request->is_method( 'HEAD' );
if ( ! $is_head_request ) {
$results = array();
foreach ( $ids as $id ) {
$data = $this->prepare_item_for_response( $id, $request );
$results[] = $this->prepare_response_for_collection( $data );
}
}
$total = (int) $result[ WP_REST_Search_Handler::RESULT_TOTAL ];
$page = (int) $request['page'];
$per_page = (int) $request['per_page'];
$max_pages = (int) ceil( $total / $per_page );
if ( $page > $max_pages && $total > 0 ) {
return new WP_Error(
'rest_search_invalid_page_number',
__( 'The page number requested is larger than the number of pages available.' ),
array( 'status' => 400 )
);
}
$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $results );
$response->header( 'X-WP-Total', $total );
$response->header( 'X-WP-TotalPages', $max_pages );
$request_params = $request->get_query_params();
$base = add_query_arg( urlencode_deep( $request_params ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );
if ( $page > 1 ) {
$prev_link = add_query_arg( 'page', $page - 1, $base );
$response->link_header( 'prev', $prev_link );
}
if ( $page < $max_pages ) {
$next_link = add_query_arg( 'page', $page + 1, $base );
$response->link_header( 'next', $next_link );
}
return $response;
}
/**
* Prepares a single search result for response.
*
* @since 5.0.0
* @since 5.6.0 The `$id` parameter can accept a string.
* @since 5.9.0 Renamed `$id` to `$item` to match parent class for PHP 8 named parameter support.
*
* @param int|string $item ID of the item to prepare.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $item, $request ) {
// Restores the more descriptive, specific name for use within this method.
$item_id = $item;
$handler = $this->get_search_handler( $request );
if ( is_wp_error( $handler ) ) {
return new WP_REST_Response();
}
$fields = $this->get_fields_for_response( $request );
$data = $handler->prepare_item( $item_id, $fields );
$data = $this->add_additional_fields_to_object( $data, $request );
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$links = $handler->prepare_item_links( $item_id );
$links['collection'] = array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
);
$response->add_links( $links );
}
return $response;
}
/**
* Retrieves the item schema, conforming to JSON Schema.
*
* @since 5.0.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$types = array();
$subtypes = array();
foreach ( $this->search_handlers as $search_handler ) {
$types[] = $search_handler->get_type();
$subtypes = array_merge( $subtypes, $search_handler->get_subtypes() );
}
$types = array_unique( $types );
$subtypes = array_unique( $subtypes );
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'search-result',
'type' => 'object',
'properties' => array(
self::PROP_ID => array(
'description' => __( 'Unique identifier for the object.' ),
'type' => array( 'integer', 'string' ),
'context' => array( 'view', 'embed' ),
'readonly' => true,
),
self::PROP_TITLE => array(
'description' => __( 'The title for the object.' ),
'type' => 'string',
'context' => array( 'view', 'embed' ),
'readonly' => true,
),
self::PROP_URL => array(
'description' => __( 'URL to the object.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'view', 'embed' ),
'readonly' => true,
),
self::PROP_TYPE => array(
'description' => __( 'Object type.' ),
'type' => 'string',
'enum' => $types,
'context' => array( 'view', 'embed' ),
'readonly' => true,
),
self::PROP_SUBTYPE => array(
'description' => __( 'Object subtype.' ),
'type' => 'string',
'enum' => $subtypes,
'context' => array( 'view', 'embed' ),
'readonly' => true,
),
),
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Retrieves the query params for the search results collection.
*
* @since 5.0.0
*
* @return array Collection parameters.
*/
public function get_collection_params() {
$types = array();
$subtypes = array();
foreach ( $this->search_handlers as $search_handler ) {
$types[] = $search_handler->get_type();
$subtypes = array_merge( $subtypes, $search_handler->get_subtypes() );
}
$types = array_unique( $types );
$subtypes = array_unique( $subtypes );
$query_params = parent::get_collection_params();
$query_params['context']['default'] = 'view';
$query_params[ self::PROP_TYPE ] = array(
'default' => $types[0],
'description' => __( 'Limit results to items of an object type.' ),
'type' => 'string',
'enum' => $types,
);
$query_params[ self::PROP_SUBTYPE ] = array(
'default' => self::TYPE_ANY,
'description' => __( 'Limit results to items of one or more object subtypes.' ),
'type' => 'array',
'items' => array(
'enum' => array_merge( $subtypes, array( self::TYPE_ANY ) ),
'type' => 'string',
),
'sanitize_callback' => array( $this, 'sanitize_subtypes' ),
);
$query_params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
),
'default' => array(),
);
$query_params['include'] = array(
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
),
'default' => array(),
);
return $query_params;
}
/**
* Sanitizes the list of subtypes, to ensure only subtypes of the passed type are included.
*
* @since 5.0.0
*
* @param string|array $subtypes One or more subtypes.
* @param WP_REST_Request $request Full details about the request.
* @param string $parameter Parameter name.
* @return string[]|WP_Error List of valid subtypes, or WP_Error object on failure.
*/
public function sanitize_subtypes( $subtypes, $request, $parameter ) {
$subtypes = wp_parse_slug_list( $subtypes );
$subtypes = rest_parse_request_arg( $subtypes, $request, $parameter );
if ( is_wp_error( $subtypes ) ) {
return $subtypes;
}
// 'any' overrides any other subtype.
if ( in_array( self::TYPE_ANY, $subtypes, true ) ) {
return array( self::TYPE_ANY );
}
$handler = $this->get_search_handler( $request );
if ( is_wp_error( $handler ) ) {
return $handler;
}
return array_intersect( $subtypes, $handler->get_subtypes() );
}
/**
* Gets the search handler to handle the current request.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Search_Handler|WP_Error Search handler for the request type, or WP_Error object on failure.
*/
protected function get_search_handler( $request ) {
$type = $request->get_param( self::PROP_TYPE );
if ( ! $type || ! is_string( $type ) || ! isset( $this->search_handlers[ $type ] ) ) {
return new WP_Error(
'rest_search_invalid_type',
__( 'Invalid type parameter.' ),
array( 'status' => 400 )
);
}
return $this->search_handlers[ $type ];
}
}
PK \kfj j - endpoints/class-wp-rest-blocks-controller.phpnu [ ID ) ) {
return false;
}
return parent::check_read_permission( $post );
}
/**
* Filters a response based on the context defined in the schema.
*
* @since 5.0.0
* @since 6.3.0 Adds the `wp_pattern_sync_status` postmeta property to the top level of response.
*
* @param array $data Response data to filter.
* @param string $context Context defined in the schema.
* @return array Filtered response.
*/
public function filter_response_by_context( $data, $context ) {
$data = parent::filter_response_by_context( $data, $context );
/*
* Remove `title.rendered` and `content.rendered` from the response.
* It doesn't make sense for a pattern to have rendered content on its own,
* since rendering a block requires it to be inside a post or a page.
*/
unset( $data['title']['rendered'] );
unset( $data['content']['rendered'] );
// Add the core wp_pattern_sync_status meta as top level property to the response.
$data['wp_pattern_sync_status'] = isset( $data['meta']['wp_pattern_sync_status'] ) ? $data['meta']['wp_pattern_sync_status'] : '';
unset( $data['meta']['wp_pattern_sync_status'] );
return $data;
}
/**
* Retrieves the pattern's schema, conforming to JSON Schema.
*
* @since 5.0.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = parent::get_item_schema();
/*
* Allow all contexts to access `title.raw` and `content.raw`.
* Clients always need the raw markup of a pattern to do anything useful,
* e.g. parse it or display it in an editor.
*/
$schema['properties']['title']['properties']['raw']['context'] = array( 'view', 'edit' );
$schema['properties']['content']['properties']['raw']['context'] = array( 'view', 'edit' );
/*
* Remove `title.rendered` and `content.rendered` from the schema.
* It doesn't make sense for a pattern to have rendered content on its own,
* since rendering a block requires it to be inside a post or a page.
*/
unset( $schema['properties']['title']['properties']['rendered'] );
unset( $schema['properties']['content']['properties']['rendered'] );
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
}
PK \9c; ; 0 endpoints/class-wp-rest-autosaves-controller.phpnu [ parent_post_type = $parent_post_type;
$post_type_object = get_post_type_object( $parent_post_type );
$parent_controller = $post_type_object->get_rest_controller();
if ( ! $parent_controller ) {
$parent_controller = new WP_REST_Posts_Controller( $parent_post_type );
}
$this->parent_controller = $parent_controller;
$revisions_controller = $post_type_object->get_revisions_rest_controller();
if ( ! $revisions_controller ) {
$revisions_controller = new WP_REST_Revisions_Controller( $parent_post_type );
}
$this->revisions_controller = $revisions_controller;
$this->rest_base = 'autosaves';
$this->parent_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
$this->namespace = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
}
/**
* Registers the routes for autosaves.
*
* @since 5.0.0
*
* @see register_rest_route()
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->parent_base . '/(?P[\d]+)/' . $this->rest_base,
array(
'args' => array(
'parent' => array(
'description' => __( 'The ID for the parent of the autosave.' ),
'type' => 'integer',
),
),
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'create_item' ),
'permission_callback' => array( $this, 'create_item_permissions_check' ),
'args' => $this->parent_controller->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->parent_base . '/(?P[\d]+)/' . $this->rest_base . '/(?P[\d]+)',
array(
'args' => array(
'parent' => array(
'description' => __( 'The ID for the parent of the autosave.' ),
'type' => 'integer',
),
'id' => array(
'description' => __( 'The ID for the autosave.' ),
'type' => 'integer',
),
),
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this->revisions_controller, 'get_item_permissions_check' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Get the parent post.
*
* @since 5.0.0
*
* @param int $parent_id Supplied ID.
* @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
*/
protected function get_parent( $parent_id ) {
return $this->revisions_controller->get_parent( $parent_id );
}
/**
* Checks if a given request has access to get autosaves.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) {
$parent = $this->get_parent( $request['id'] );
if ( is_wp_error( $parent ) ) {
return $parent;
}
if ( ! current_user_can( 'edit_post', $parent->ID ) ) {
return new WP_Error(
'rest_cannot_read',
__( 'Sorry, you are not allowed to view autosaves of this post.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Checks if a given request has access to create an autosave revision.
*
* Autosave revisions inherit permissions from the parent post,
* check if the current user has permission to edit the post.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to create the item, WP_Error object otherwise.
*/
public function create_item_permissions_check( $request ) {
$id = $request->get_param( 'id' );
if ( empty( $id ) ) {
return new WP_Error(
'rest_post_invalid_id',
__( 'Invalid item ID.' ),
array( 'status' => 404 )
);
}
return $this->parent_controller->update_item_permissions_check( $request );
}
/**
* Creates, updates or deletes an autosave revision.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function create_item( $request ) {
if ( ! defined( 'WP_RUN_CORE_TESTS' ) && ! defined( 'DOING_AUTOSAVE' ) ) {
define( 'DOING_AUTOSAVE', true );
}
$post = $this->get_parent( $request['id'] );
if ( is_wp_error( $post ) ) {
return $post;
}
$prepared_post = $this->parent_controller->prepare_item_for_database( $request );
$prepared_post->ID = $post->ID;
$user_id = get_current_user_id();
// We need to check post lock to ensure the original author didn't leave their browser tab open.
if ( ! function_exists( 'wp_check_post_lock' ) ) {
require_once ABSPATH . 'wp-admin/includes/post.php';
}
$post_lock = wp_check_post_lock( $post->ID );
$is_draft = 'draft' === $post->post_status || 'auto-draft' === $post->post_status;
if ( $is_draft && (int) $post->post_author === $user_id && ! $post_lock ) {
/*
* Draft posts for the same author: autosaving updates the post and does not create a revision.
* Convert the post object to an array and add slashes, wp_update_post() expects escaped array.
*/
$autosave_id = wp_update_post( wp_slash( (array) $prepared_post ), true );
} else {
// Non-draft posts: create or update the post autosave. Pass the meta data.
$autosave_id = $this->create_post_autosave( (array) $prepared_post, (array) $request->get_param( 'meta' ) );
}
if ( is_wp_error( $autosave_id ) ) {
return $autosave_id;
}
$autosave = get_post( $autosave_id );
$request->set_param( 'context', 'edit' );
$response = $this->prepare_item_for_response( $autosave, $request );
$response = rest_ensure_response( $response );
return $response;
}
/**
* Get the autosave, if the ID is valid.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_Post|WP_Error Revision post object if ID is valid, WP_Error otherwise.
*/
public function get_item( $request ) {
$parent_id = (int) $request->get_param( 'parent' );
if ( $parent_id <= 0 ) {
return new WP_Error(
'rest_post_invalid_id',
__( 'Invalid post parent ID.' ),
array( 'status' => 404 )
);
}
$autosave = wp_get_post_autosave( $parent_id );
if ( ! $autosave ) {
return new WP_Error(
'rest_post_no_autosave',
__( 'There is no autosave revision for this post.' ),
array( 'status' => 404 )
);
}
$response = $this->prepare_item_for_response( $autosave, $request );
return $response;
}
/**
* Gets a collection of autosaves using wp_get_post_autosave.
*
* Contains the user's autosave, for empty if it doesn't exist.
*
* @since 5.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
$parent = $this->get_parent( $request['id'] );
if ( is_wp_error( $parent ) ) {
return $parent;
}
if ( $request->is_method( 'HEAD' ) ) {
// Return early as this handler doesn't add any response headers.
return new WP_REST_Response( array() );
}
$response = array();
$parent_id = $parent->ID;
$revisions = wp_get_post_revisions( $parent_id, array( 'check_enabled' => false ) );
foreach ( $revisions as $revision ) {
if ( str_contains( $revision->post_name, "{$parent_id}-autosave" ) ) {
$data = $this->prepare_item_for_response( $revision, $request );
$response[] = $this->prepare_response_for_collection( $data );
}
}
return rest_ensure_response( $response );
}
/**
* Retrieves the autosave's schema, conforming to JSON Schema.
*
* @since 5.0.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = $this->revisions_controller->get_item_schema();
$schema['properties']['preview_link'] = array(
'description' => __( 'Preview link for the post.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'edit' ),
'readonly' => true,
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Creates autosave for the specified post.
*
* From wp-admin/post.php.
*
* @since 5.0.0
* @since 6.4.0 The `$meta` parameter was added.
*
* @param array $post_data Associative array containing the post data.
* @param array $meta Associative array containing the post meta data.
* @return mixed The autosave revision ID or WP_Error.
*/
public function create_post_autosave( $post_data, array $meta = array() ) {
$post_id = (int) $post_data['ID'];
$post = get_post( $post_id );
if ( is_wp_error( $post ) ) {
return $post;
}
// Only create an autosave when it is different from the saved post.
$autosave_is_different = false;
$new_autosave = _wp_post_revision_data( $post_data, true );
foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
if ( normalize_whitespace( $new_autosave[ $field ] ) !== normalize_whitespace( $post->$field ) ) {
$autosave_is_different = true;
break;
}
}
// Check if meta values have changed.
if ( ! empty( $meta ) ) {
$revisioned_meta_keys = wp_post_revision_meta_keys( $post->post_type );
foreach ( $revisioned_meta_keys as $meta_key ) {
// get_metadata_raw is used to avoid retrieving the default value.
$old_meta = get_metadata_raw( 'post', $post_id, $meta_key, true );
$new_meta = isset( $meta[ $meta_key ] ) ? $meta[ $meta_key ] : '';
if ( $new_meta !== $old_meta ) {
$autosave_is_different = true;
break;
}
}
}
$user_id = get_current_user_id();
// Store one autosave per author. If there is already an autosave, overwrite it.
$old_autosave = wp_get_post_autosave( $post_id, $user_id );
if ( ! $autosave_is_different && $old_autosave ) {
// Nothing to save, return the existing autosave.
return $old_autosave->ID;
}
if ( $old_autosave ) {
$new_autosave['ID'] = $old_autosave->ID;
$new_autosave['post_author'] = $user_id;
/** This filter is documented in wp-admin/post.php */
do_action( 'wp_creating_autosave', $new_autosave );
// wp_update_post() expects escaped array.
$revision_id = wp_update_post( wp_slash( $new_autosave ) );
} else {
// Create the new autosave as a special post revision.
$revision_id = _wp_put_post_revision( $post_data, true );
}
if ( is_wp_error( $revision_id ) || 0 === $revision_id ) {
return $revision_id;
}
// Attached any passed meta values that have revisions enabled.
if ( ! empty( $meta ) ) {
foreach ( $revisioned_meta_keys as $meta_key ) {
if ( isset( $meta[ $meta_key ] ) ) {
update_metadata( 'post', $revision_id, $meta_key, wp_slash( $meta[ $meta_key ] ) );
}
}
}
return $revision_id;
}
/**
* Prepares the revision for the REST response.
*
* @since 5.0.0
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
*
* @param WP_Post $item Post revision object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $item, $request ) {
// Restores the more descriptive, specific name for use within this method.
$post = $item;
// Don't prepare the response body for HEAD requests.
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php */
return apply_filters( 'rest_prepare_autosave', new WP_REST_Response( array() ), $post, $request );
}
$response = $this->revisions_controller->prepare_item_for_response( $post, $request );
$fields = $this->get_fields_for_response( $request );
if ( in_array( 'preview_link', $fields, true ) ) {
$parent_id = wp_is_post_autosave( $post );
$preview_post_id = false === $parent_id ? $post->ID : $parent_id;
$preview_query_args = array();
if ( false !== $parent_id ) {
$preview_query_args['preview_id'] = $parent_id;
$preview_query_args['preview_nonce'] = wp_create_nonce( 'post_preview_' . $parent_id );
}
$response->data['preview_link'] = get_preview_post_link( $preview_post_id, $preview_query_args );
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$response->data = $this->add_additional_fields_to_object( $response->data, $request );
$response->data = $this->filter_response_by_context( $response->data, $context );
/**
* Filters a revision returned from the REST API.
*
* Allows modification of the revision right before it is returned.
*
* @since 5.0.0
*
* @param WP_REST_Response $response The response object.
* @param WP_Post $post The original revision object.
* @param WP_REST_Request $request Request used to generate the response.
*/
return apply_filters( 'rest_prepare_autosave', $response, $post, $request );
}
/**
* Retrieves the query params for the autosaves collection.
*
* @since 5.0.0
*
* @return array Collection parameters.
*/
public function get_collection_params() {
return array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
);
}
}
PK \gK\3 3 : endpoints/class-wp-rest-navigation-fallback-controller.phpnu [ namespace = 'wp-block-editor/v1';
$this->rest_base = 'navigation-fallback';
$this->post_type = 'wp_navigation';
}
/**
* Registers the controllers routes.
*
* @since 6.3.0
*/
public function register_routes() {
// Lists a single nav item based on the given id or slug.
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::READABLE ),
),
'schema' => array( $this, 'get_item_schema' ),
)
);
}
/**
* Checks if a given request has access to read fallbacks.
*
* @since 6.3.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_item_permissions_check( $request ) {
$post_type = get_post_type_object( $this->post_type );
// Getting fallbacks requires creating and reading `wp_navigation` posts.
if ( ! current_user_can( $post_type->cap->create_posts ) || ! current_user_can( 'edit_theme_options' ) || ! current_user_can( 'edit_posts' ) ) {
return new WP_Error(
'rest_cannot_create',
__( 'Sorry, you are not allowed to create Navigation Menus as this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
if ( 'edit' === $request['context'] && ! current_user_can( $post_type->cap->edit_posts ) ) {
return new WP_Error(
'rest_forbidden_context',
__( 'Sorry, you are not allowed to edit Navigation Menus as this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Gets the most appropriate fallback Navigation Menu.
*
* @since 6.3.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_item( $request ) {
$post = WP_Navigation_Fallback::get_fallback();
if ( empty( $post ) ) {
return rest_ensure_response( new WP_Error( 'no_fallback_menu', __( 'No fallback menu found.' ), array( 'status' => 404 ) ) );
}
$response = $this->prepare_item_for_response( $post, $request );
return $response;
}
/**
* Retrieves the fallbacks' schema, conforming to JSON Schema.
*
* @since 6.3.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$this->schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'navigation-fallback',
'type' => 'object',
'properties' => array(
'id' => array(
'description' => __( 'The unique identifier for the Navigation Menu.' ),
'type' => 'integer',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
),
);
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Matches the post data to the schema we want.
*
* @since 6.3.0
*
* @param WP_Post $item The wp_navigation Post object whose response is being prepared.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response $response The response data.
*/
public function prepare_item_for_response( $item, $request ) {
$data = array();
$fields = $this->get_fields_for_response( $request );
if ( rest_is_field_included( 'id', $fields ) ) {
$data['id'] = (int) $item->ID;
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$links = $this->prepare_links( $item );
$response->add_links( $links );
}
return $response;
}
/**
* Prepares the links for the request.
*
* @since 6.3.0
*
* @param WP_Post $post the Navigation Menu post object.
* @return array Links for the given request.
*/
private function prepare_links( $post ) {
return array(
'self' => array(
'href' => rest_url( rest_get_route_for_post( $post->ID ) ),
'embeddable' => true,
),
);
}
}
PK \UC 2 endpoints/class-wp-rest-attachments-controller.phpnu [ namespace,
'/' . $this->rest_base . '/(?P[\d]+)/post-process',
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'post_process_item' ),
'permission_callback' => array( $this, 'post_process_item_permissions_check' ),
'args' => array(
'id' => array(
'description' => __( 'Unique identifier for the attachment.' ),
'type' => 'integer',
),
'action' => array(
'type' => 'string',
'enum' => array( 'create-image-subsizes' ),
'required' => true,
),
),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P[\d]+)/edit',
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'edit_media_item' ),
'permission_callback' => array( $this, 'edit_media_item_permissions_check' ),
'args' => $this->get_edit_media_item_args(),
)
);
}
/**
* Determines the allowed query_vars for a get_items() response and
* prepares for WP_Query.
*
* @since 4.7.0
* @since 6.9.0 Extends the `media_type` and `mime_type` request arguments to support array values.
*
* @param array $prepared_args Optional. Array of prepared arguments. Default empty array.
* @param WP_REST_Request $request Optional. Request to prepare items for.
* @return array Array of query arguments.
*/
protected function prepare_items_query( $prepared_args = array(), $request = null ) {
$query_args = parent::prepare_items_query( $prepared_args, $request );
if ( empty( $query_args['post_status'] ) ) {
$query_args['post_status'] = 'inherit';
}
$all_mime_types = array();
$media_types = $this->get_media_types();
if ( ! empty( $request['media_type'] ) && is_array( $request['media_type'] ) ) {
foreach ( $request['media_type'] as $type ) {
if ( isset( $media_types[ $type ] ) ) {
$all_mime_types = array_merge( $all_mime_types, $media_types[ $type ] );
}
}
}
if ( ! empty( $request['mime_type'] ) && is_array( $request['mime_type'] ) ) {
foreach ( $request['mime_type'] as $mime_type ) {
$parts = explode( '/', $mime_type );
if ( isset( $media_types[ $parts[0] ] ) && in_array( $mime_type, $media_types[ $parts[0] ], true ) ) {
$all_mime_types[] = $mime_type;
}
}
}
if ( ! empty( $all_mime_types ) ) {
$query_args['post_mime_type'] = array_values( array_unique( $all_mime_types ) );
}
// Filter query clauses to include filenames.
if ( isset( $query_args['s'] ) ) {
add_filter( 'wp_allow_query_attachment_by_filename', '__return_true' );
}
return $query_args;
}
/**
* Checks if a given request has access to create an attachment.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error Boolean true if the attachment may be created, or a WP_Error if not.
*/
public function create_item_permissions_check( $request ) {
$ret = parent::create_item_permissions_check( $request );
if ( ! $ret || is_wp_error( $ret ) ) {
return $ret;
}
if ( ! current_user_can( 'upload_files' ) ) {
return new WP_Error(
'rest_cannot_create',
__( 'Sorry, you are not allowed to upload media on this site.' ),
array( 'status' => 400 )
);
}
// Attaching media to a post requires ability to edit said post.
if ( ! empty( $request['post'] ) && ! current_user_can( 'edit_post', (int) $request['post'] ) ) {
return new WP_Error(
'rest_cannot_edit',
__( 'Sorry, you are not allowed to upload media to this post.' ),
array( 'status' => rest_authorization_required_code() )
);
}
$files = $request->get_file_params();
/**
* Filter whether the server should prevent uploads for image types it doesn't support. Default true.
*
* Developers can use this filter to enable uploads of certain image types. By default image types that are not
* supported by the server are prevented from being uploaded.
*
* @since 6.8.0
*
* @param bool $check_mime Whether to prevent uploads of unsupported image types.
* @param string|null $mime_type The mime type of the file being uploaded (if available).
*/
$prevent_unsupported_uploads = apply_filters( 'wp_prevent_unsupported_mime_type_uploads', true, isset( $files['file']['type'] ) ? $files['file']['type'] : null );
// If the upload is an image, check if the server can handle the mime type.
if (
$prevent_unsupported_uploads &&
isset( $files['file']['type'] ) &&
str_starts_with( $files['file']['type'], 'image/' )
) {
// List of non-resizable image formats.
$editor_non_resizable_formats = array(
'image/svg+xml',
);
// Check if the image editor supports the type or ignore if it isn't a format resizable by an editor.
if (
! in_array( $files['file']['type'], $editor_non_resizable_formats, true ) &&
! wp_image_editor_supports( array( 'mime_type' => $files['file']['type'] ) )
) {
return new WP_Error(
'rest_upload_image_type_not_supported',
__( 'The web server cannot generate responsive image sizes for this image. Convert it to JPEG or PNG before uploading.' ),
array( 'status' => 400 )
);
}
}
return true;
}
/**
* Creates a single attachment.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
*/
public function create_item( $request ) {
if ( ! empty( $request['post'] ) && in_array( get_post_type( $request['post'] ), array( 'revision', 'attachment' ), true ) ) {
return new WP_Error(
'rest_invalid_param',
__( 'Invalid parent type.' ),
array( 'status' => 400 )
);
}
$insert = $this->insert_attachment( $request );
if ( is_wp_error( $insert ) ) {
return $insert;
}
$schema = $this->get_item_schema();
// Extract by name.
$attachment_id = $insert['attachment_id'];
$file = $insert['file'];
if ( isset( $request['alt_text'] ) ) {
update_post_meta( $attachment_id, '_wp_attachment_image_alt', sanitize_text_field( $request['alt_text'] ) );
}
if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
$thumbnail_update = $this->handle_featured_media( $request['featured_media'], $attachment_id );
if ( is_wp_error( $thumbnail_update ) ) {
return $thumbnail_update;
}
}
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $attachment_id );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$attachment = get_post( $attachment_id );
$fields_update = $this->update_additional_fields_for_object( $attachment, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$terms_update = $this->handle_terms( $attachment_id, $request );
if ( is_wp_error( $terms_update ) ) {
return $terms_update;
}
$request->set_param( 'context', 'edit' );
/**
* Fires after a single attachment is completely created or updated via the REST API.
*
* @since 5.0.0
*
* @param WP_Post $attachment Inserted or updated attachment object.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating an attachment, false when updating.
*/
do_action( 'rest_after_insert_attachment', $attachment, $request, true );
wp_after_insert_post( $attachment, false, null );
if ( wp_is_serving_rest_request() ) {
/*
* Set a custom header with the attachment_id.
* Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.
*/
header( 'X-WP-Upload-Attachment-ID: ' . $attachment_id );
}
// Include media and image functions to get access to wp_generate_attachment_metadata().
require_once ABSPATH . 'wp-admin/includes/media.php';
require_once ABSPATH . 'wp-admin/includes/image.php';
/*
* Post-process the upload (create image sub-sizes, make PDF thumbnails, etc.) and insert attachment meta.
* At this point the server may run out of resources and post-processing of uploaded images may fail.
*/
wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $file ) );
$response = $this->prepare_item_for_response( $attachment, $request );
$response = rest_ensure_response( $response );
$response->set_status( 201 );
$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $attachment_id ) ) );
return $response;
}
/**
* Inserts the attachment post in the database. Does not update the attachment meta.
*
* @since 5.3.0
*
* @param WP_REST_Request $request
* @return array|WP_Error
*/
protected function insert_attachment( $request ) {
// Get the file via $_FILES or raw data.
$files = $request->get_file_params();
$headers = $request->get_headers();
$time = null;
// Matches logic in media_handle_upload().
if ( ! empty( $request['post'] ) ) {
$post = get_post( $request['post'] );
// The post date doesn't usually matter for pages, so don't backdate this upload.
if ( $post && 'page' !== $post->post_type && substr( $post->post_date, 0, 4 ) > 0 ) {
$time = $post->post_date;
}
}
if ( ! empty( $files ) ) {
$file = $this->upload_from_file( $files, $headers, $time );
} else {
$file = $this->upload_from_data( $request->get_body(), $headers, $time );
}
if ( is_wp_error( $file ) ) {
return $file;
}
$name = wp_basename( $file['file'] );
$name_parts = pathinfo( $name );
$name = trim( substr( $name, 0, -( 1 + strlen( $name_parts['extension'] ) ) ) );
$url = $file['url'];
$type = $file['type'];
$file = $file['file'];
// Include image functions to get access to wp_read_image_metadata().
require_once ABSPATH . 'wp-admin/includes/image.php';
// Use image exif/iptc data for title and caption defaults if possible.
$image_meta = wp_read_image_metadata( $file );
if ( ! empty( $image_meta ) ) {
if ( empty( $request['title'] ) && trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) ) {
$request['title'] = $image_meta['title'];
}
if ( empty( $request['caption'] ) && trim( $image_meta['caption'] ) ) {
$request['caption'] = $image_meta['caption'];
}
}
$attachment = $this->prepare_item_for_database( $request );
$attachment->post_mime_type = $type;
$attachment->guid = $url;
// If the title was not set, use the original filename.
if ( empty( $attachment->post_title ) && ! empty( $files['file']['name'] ) ) {
// Remove the file extension (after the last `.`)
$tmp_title = substr( $files['file']['name'], 0, strrpos( $files['file']['name'], '.' ) );
if ( ! empty( $tmp_title ) ) {
$attachment->post_title = $tmp_title;
}
}
// Fall back to the original approach.
if ( empty( $attachment->post_title ) ) {
$attachment->post_title = preg_replace( '/\.[^.]+$/', '', wp_basename( $file ) );
}
// $post_parent is inherited from $attachment['post_parent'].
$id = wp_insert_attachment( wp_slash( (array) $attachment ), $file, 0, true, false );
if ( is_wp_error( $id ) ) {
if ( 'db_update_error' === $id->get_error_code() ) {
$id->add_data( array( 'status' => 500 ) );
} else {
$id->add_data( array( 'status' => 400 ) );
}
return $id;
}
$attachment = get_post( $id );
/**
* Fires after a single attachment is created or updated via the REST API.
*
* @since 4.7.0
*
* @param WP_Post $attachment Inserted or updated attachment object.
* @param WP_REST_Request $request The request sent to the API.
* @param bool $creating True when creating an attachment, false when updating.
*/
do_action( 'rest_insert_attachment', $attachment, $request, true );
return array(
'attachment_id' => $id,
'file' => $file,
);
}
/**
* Determines the featured media based on a request param.
*
* @since 6.5.0
*
* @param int $featured_media Featured Media ID.
* @param int $post_id Post ID.
* @return bool|WP_Error Whether the post thumbnail was successfully deleted, otherwise WP_Error.
*/
protected function handle_featured_media( $featured_media, $post_id ) {
$post_type = get_post_type( $post_id );
$thumbnail_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
// Similar check as in wp_insert_post().
if ( ! $thumbnail_support && get_post_mime_type( $post_id ) ) {
if ( wp_attachment_is( 'audio', $post_id ) ) {
$thumbnail_support = post_type_supports( 'attachment:audio', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:audio' );
} elseif ( wp_attachment_is( 'video', $post_id ) ) {
$thumbnail_support = post_type_supports( 'attachment:video', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:video' );
}
}
if ( $thumbnail_support ) {
return parent::handle_featured_media( $featured_media, $post_id );
}
return new WP_Error(
'rest_no_featured_media',
sprintf(
/* translators: %s: attachment mime type */
__( 'This site does not support post thumbnails on attachments with MIME type %s.' ),
get_post_mime_type( $post_id )
),
array( 'status' => 400 )
);
}
/**
* Updates a single attachment.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
*/
public function update_item( $request ) {
if ( ! empty( $request['post'] ) && in_array( get_post_type( $request['post'] ), array( 'revision', 'attachment' ), true ) ) {
return new WP_Error(
'rest_invalid_param',
__( 'Invalid parent type.' ),
array( 'status' => 400 )
);
}
$attachment_before = get_post( $request['id'] );
$response = parent::update_item( $request );
if ( is_wp_error( $response ) ) {
return $response;
}
$response = rest_ensure_response( $response );
$data = $response->get_data();
if ( isset( $request['alt_text'] ) ) {
update_post_meta( $data['id'], '_wp_attachment_image_alt', $request['alt_text'] );
}
$attachment = get_post( $request['id'] );
if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
$thumbnail_update = $this->handle_featured_media( $request['featured_media'], $attachment->ID );
if ( is_wp_error( $thumbnail_update ) ) {
return $thumbnail_update;
}
}
$fields_update = $this->update_additional_fields_for_object( $attachment, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'edit' );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php */
do_action( 'rest_after_insert_attachment', $attachment, $request, false );
wp_after_insert_post( $attachment, true, $attachment_before );
$response = $this->prepare_item_for_response( $attachment, $request );
$response = rest_ensure_response( $response );
return $response;
}
/**
* Performs post-processing on an attachment.
*
* @since 5.3.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
*/
public function post_process_item( $request ) {
switch ( $request['action'] ) {
case 'create-image-subsizes':
require_once ABSPATH . 'wp-admin/includes/image.php';
wp_update_image_subsizes( $request['id'] );
break;
}
$request['context'] = 'edit';
return $this->prepare_item_for_response( get_post( $request['id'] ), $request );
}
/**
* Checks if a given request can perform post-processing on an attachment.
*
* @since 5.3.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
*/
public function post_process_item_permissions_check( $request ) {
return $this->update_item_permissions_check( $request );
}
/**
* Checks if a given request has access to editing media.
*
* @since 5.5.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function edit_media_item_permissions_check( $request ) {
if ( ! current_user_can( 'upload_files' ) ) {
return new WP_Error(
'rest_cannot_edit_image',
__( 'Sorry, you are not allowed to upload media on this site.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return $this->update_item_permissions_check( $request );
}
/**
* Applies edits to a media item and creates a new attachment record.
*
* @since 5.5.0
* @since 6.9.0 Adds flips capability and editable fields for the newly-created attachment post.
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
*/
public function edit_media_item( $request ) {
require_once ABSPATH . 'wp-admin/includes/image.php';
$attachment_id = $request['id'];
// This also confirms the attachment is an image.
$image_file = wp_get_original_image_path( $attachment_id );
$image_meta = wp_get_attachment_metadata( $attachment_id );
if (
! $image_meta ||
! $image_file ||
! wp_image_file_matches_image_meta( $request['src'], $image_meta, $attachment_id )
) {
return new WP_Error(
'rest_unknown_attachment',
__( 'Unable to get meta information for file.' ),
array( 'status' => 404 )
);
}
$supported_types = array( 'image/jpeg', 'image/png', 'image/gif', 'image/webp', 'image/avif', 'image/heic' );
$mime_type = get_post_mime_type( $attachment_id );
if ( ! in_array( $mime_type, $supported_types, true ) ) {
return new WP_Error(
'rest_cannot_edit_file_type',
__( 'This type of file cannot be edited.' ),
array( 'status' => 400 )
);
}
// The `modifiers` param takes precedence over the older format.
if ( isset( $request['modifiers'] ) ) {
$modifiers = $request['modifiers'];
} else {
$modifiers = array();
if ( isset( $request['flip']['horizontal'] ) || isset( $request['flip']['vertical'] ) ) {
$flip_args = array(
'vertical' => isset( $request['flip']['vertical'] ) ? (bool) $request['flip']['vertical'] : false,
'horizontal' => isset( $request['flip']['horizontal'] ) ? (bool) $request['flip']['horizontal'] : false,
);
$modifiers[] = array(
'type' => 'flip',
'args' => array(
'flip' => $flip_args,
),
);
}
if ( ! empty( $request['rotation'] ) ) {
$modifiers[] = array(
'type' => 'rotate',
'args' => array(
'angle' => $request['rotation'],
),
);
}
if ( isset( $request['x'], $request['y'], $request['width'], $request['height'] ) ) {
$modifiers[] = array(
'type' => 'crop',
'args' => array(
'left' => $request['x'],
'top' => $request['y'],
'width' => $request['width'],
'height' => $request['height'],
),
);
}
if ( 0 === count( $modifiers ) ) {
return new WP_Error(
'rest_image_not_edited',
__( 'The image was not edited. Edit the image before applying the changes.' ),
array( 'status' => 400 )
);
}
}
/*
* If the file doesn't exist, attempt a URL fopen on the src link.
* This can occur with certain file replication plugins.
* Keep the original file path to get a modified name later.
*/
$image_file_to_edit = $image_file;
if ( ! file_exists( $image_file_to_edit ) ) {
$image_file_to_edit = _load_image_to_edit_path( $attachment_id );
}
$image_editor = wp_get_image_editor( $image_file_to_edit );
if ( is_wp_error( $image_editor ) ) {
return new WP_Error(
'rest_unknown_image_file_type',
__( 'Unable to edit this image.' ),
array( 'status' => 500 )
);
}
foreach ( $modifiers as $modifier ) {
$args = $modifier['args'];
switch ( $modifier['type'] ) {
case 'flip':
/*
* Flips the current image.
* The vertical flip is the first argument (flip along horizontal axis), the horizontal flip is the second argument (flip along vertical axis).
* See: WP_Image_Editor::flip()
*/
$result = $image_editor->flip( $args['flip']['vertical'], $args['flip']['horizontal'] );
if ( is_wp_error( $result ) ) {
return new WP_Error(
'rest_image_flip_failed',
__( 'Unable to flip this image.' ),
array( 'status' => 500 )
);
}
break;
case 'rotate':
// Rotation direction: clockwise vs. counterclockwise.
$rotate = 0 - $args['angle'];
if ( 0 !== $rotate ) {
$result = $image_editor->rotate( $rotate );
if ( is_wp_error( $result ) ) {
return new WP_Error(
'rest_image_rotation_failed',
__( 'Unable to rotate this image.' ),
array( 'status' => 500 )
);
}
}
break;
case 'crop':
$size = $image_editor->get_size();
$crop_x = (int) round( ( $size['width'] * $args['left'] ) / 100.0 );
$crop_y = (int) round( ( $size['height'] * $args['top'] ) / 100.0 );
$width = (int) round( ( $size['width'] * $args['width'] ) / 100.0 );
$height = (int) round( ( $size['height'] * $args['height'] ) / 100.0 );
if ( $size['width'] !== $width || $size['height'] !== $height ) {
$result = $image_editor->crop( $crop_x, $crop_y, $width, $height );
if ( is_wp_error( $result ) ) {
return new WP_Error(
'rest_image_crop_failed',
__( 'Unable to crop this image.' ),
array( 'status' => 500 )
);
}
}
break;
}
}
// Calculate the file name.
$image_ext = pathinfo( $image_file, PATHINFO_EXTENSION );
$image_name = wp_basename( $image_file, ".{$image_ext}" );
/*
* Do not append multiple `-edited` to the file name.
* The user may be editing a previously edited image.
*/
if ( preg_match( '/-edited(-\d+)?$/', $image_name ) ) {
// Remove any `-1`, `-2`, etc. `wp_unique_filename()` will add the proper number.
$image_name = preg_replace( '/-edited(-\d+)?$/', '-edited', $image_name );
} else {
// Append `-edited` before the extension.
$image_name .= '-edited';
}
$filename = "{$image_name}.{$image_ext}";
// Create the uploads subdirectory if needed.
$uploads = wp_upload_dir();
// Make the file name unique in the (new) upload directory.
$filename = wp_unique_filename( $uploads['path'], $filename );
// Save to disk.
$saved = $image_editor->save( $uploads['path'] . "/$filename" );
if ( is_wp_error( $saved ) ) {
return $saved;
}
// Grab original attachment post so we can use it to set defaults.
$original_attachment_post = get_post( $attachment_id );
// Check request fields and assign default values.
$new_attachment_post = $this->prepare_item_for_database( $request );
$new_attachment_post->post_mime_type = $saved['mime-type'];
$new_attachment_post->guid = $uploads['url'] . "/$filename";
// Unset ID so wp_insert_attachment generates a new ID.
unset( $new_attachment_post->ID );
// Set new attachment post title with fallbacks.
$new_attachment_post->post_title = $new_attachment_post->post_title ?? $original_attachment_post->post_title ?? $image_name;
// Set new attachment post caption (post_excerpt).
$new_attachment_post->post_excerpt = $new_attachment_post->post_excerpt ?? $original_attachment_post->post_excerpt ?? '';
// Set new attachment post description (post_content) with fallbacks.
$new_attachment_post->post_content = $new_attachment_post->post_content ?? $original_attachment_post->post_content ?? '';
// Set post parent if set in request, else the default of `0` (no parent).
$new_attachment_post->post_parent = $new_attachment_post->post_parent ?? 0;
// Insert the new attachment post.
$new_attachment_id = wp_insert_attachment( wp_slash( (array) $new_attachment_post ), $saved['path'], 0, true );
if ( is_wp_error( $new_attachment_id ) ) {
if ( 'db_update_error' === $new_attachment_id->get_error_code() ) {
$new_attachment_id->add_data( array( 'status' => 500 ) );
} else {
$new_attachment_id->add_data( array( 'status' => 400 ) );
}
return $new_attachment_id;
}
// First, try to use the alt text from the request. If not set, copy the image alt text from the original attachment.
$image_alt = isset( $request['alt_text'] ) ? sanitize_text_field( $request['alt_text'] ) : get_post_meta( $attachment_id, '_wp_attachment_image_alt', true );
if ( ! empty( $image_alt ) ) {
// update_post_meta() expects slashed.
update_post_meta( $new_attachment_id, '_wp_attachment_image_alt', wp_slash( $image_alt ) );
}
if ( wp_is_serving_rest_request() ) {
/*
* Set a custom header with the attachment_id.
* Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.
*/
header( 'X-WP-Upload-Attachment-ID: ' . $new_attachment_id );
}
// Generate image sub-sizes and meta.
$new_image_meta = wp_generate_attachment_metadata( $new_attachment_id, $saved['path'] );
// Copy the EXIF metadata from the original attachment if not generated for the edited image.
if ( isset( $image_meta['image_meta'] ) && isset( $new_image_meta['image_meta'] ) && is_array( $new_image_meta['image_meta'] ) ) {
// Merge but skip empty values.
foreach ( (array) $image_meta['image_meta'] as $key => $value ) {
if ( empty( $new_image_meta['image_meta'][ $key ] ) && ! empty( $value ) ) {
$new_image_meta['image_meta'][ $key ] = $value;
}
}
}
// Reset orientation. At this point the image is edited and orientation is correct.
if ( ! empty( $new_image_meta['image_meta']['orientation'] ) ) {
$new_image_meta['image_meta']['orientation'] = 1;
}
// The attachment_id may change if the site is exported and imported.
$new_image_meta['parent_image'] = array(
'attachment_id' => $attachment_id,
// Path to the originally uploaded image file relative to the uploads directory.
'file' => _wp_relative_upload_path( $image_file ),
);
/**
* Filters the meta data for the new image created by editing an existing image.
*
* @since 5.5.0
*
* @param array $new_image_meta Meta data for the new image.
* @param int $new_attachment_id Attachment post ID for the new image.
* @param int $attachment_id Attachment post ID for the edited (parent) image.
*/
$new_image_meta = apply_filters( 'wp_edited_image_metadata', $new_image_meta, $new_attachment_id, $attachment_id );
wp_update_attachment_metadata( $new_attachment_id, $new_image_meta );
$response = $this->prepare_item_for_response( get_post( $new_attachment_id ), $request );
$response->set_status( 201 );
$response->header( 'Location', rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $new_attachment_id ) ) );
return $response;
}
/**
* Prepares a single attachment for create or update.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Request object.
* @return stdClass|WP_Error Post object.
*/
protected function prepare_item_for_database( $request ) {
$prepared_attachment = parent::prepare_item_for_database( $request );
// Attachment caption (post_excerpt internally).
if ( isset( $request['caption'] ) ) {
if ( is_string( $request['caption'] ) ) {
$prepared_attachment->post_excerpt = $request['caption'];
} elseif ( isset( $request['caption']['raw'] ) ) {
$prepared_attachment->post_excerpt = $request['caption']['raw'];
}
}
// Attachment description (post_content internally).
if ( isset( $request['description'] ) ) {
if ( is_string( $request['description'] ) ) {
$prepared_attachment->post_content = $request['description'];
} elseif ( isset( $request['description']['raw'] ) ) {
$prepared_attachment->post_content = $request['description']['raw'];
}
}
if ( isset( $request['post'] ) ) {
$prepared_attachment->post_parent = (int) $request['post'];
}
return $prepared_attachment;
}
/**
* Prepares a single attachment output for response.
*
* @since 4.7.0
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
*
* @param WP_Post $item Attachment object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $item, $request ) {
// Restores the more descriptive, specific name for use within this method.
$post = $item;
$response = parent::prepare_item_for_response( $post, $request );
$fields = $this->get_fields_for_response( $request );
$data = $response->get_data();
if ( in_array( 'description', $fields, true ) ) {
$data['description'] = array(
'raw' => $post->post_content,
/** This filter is documented in wp-includes/post-template.php */
'rendered' => apply_filters( 'the_content', $post->post_content ),
);
}
if ( in_array( 'caption', $fields, true ) ) {
/** This filter is documented in wp-includes/post-template.php */
$caption = apply_filters( 'get_the_excerpt', $post->post_excerpt, $post );
/** This filter is documented in wp-includes/post-template.php */
$caption = apply_filters( 'the_excerpt', $caption );
$data['caption'] = array(
'raw' => $post->post_excerpt,
'rendered' => $caption,
);
}
if ( in_array( 'alt_text', $fields, true ) ) {
$data['alt_text'] = get_post_meta( $post->ID, '_wp_attachment_image_alt', true );
}
if ( in_array( 'media_type', $fields, true ) ) {
$data['media_type'] = wp_attachment_is_image( $post->ID ) ? 'image' : 'file';
}
if ( in_array( 'mime_type', $fields, true ) ) {
$data['mime_type'] = $post->post_mime_type;
}
if ( in_array( 'media_details', $fields, true ) ) {
$data['media_details'] = wp_get_attachment_metadata( $post->ID );
// Ensure empty details is an empty object.
if ( empty( $data['media_details'] ) ) {
$data['media_details'] = new stdClass();
} elseif ( ! empty( $data['media_details']['sizes'] ) ) {
foreach ( $data['media_details']['sizes'] as $size => &$size_data ) {
if ( isset( $size_data['mime-type'] ) ) {
$size_data['mime_type'] = $size_data['mime-type'];
unset( $size_data['mime-type'] );
}
// Use the same method image_downsize() does.
$image_src = wp_get_attachment_image_src( $post->ID, $size );
if ( ! $image_src ) {
continue;
}
$size_data['source_url'] = $image_src[0];
}
$full_src = wp_get_attachment_image_src( $post->ID, 'full' );
if ( ! empty( $full_src ) ) {
$data['media_details']['sizes']['full'] = array(
'file' => wp_basename( $full_src[0] ),
'width' => $full_src[1],
'height' => $full_src[2],
'mime_type' => $post->post_mime_type,
'source_url' => $full_src[0],
);
}
} else {
$data['media_details']['sizes'] = new stdClass();
}
}
if ( in_array( 'post', $fields, true ) ) {
$data['post'] = ! empty( $post->post_parent ) ? (int) $post->post_parent : null;
}
if ( in_array( 'source_url', $fields, true ) ) {
$data['source_url'] = wp_get_attachment_url( $post->ID );
}
if ( in_array( 'missing_image_sizes', $fields, true ) ) {
require_once ABSPATH . 'wp-admin/includes/image.php';
$data['missing_image_sizes'] = array_keys( wp_get_missing_image_subsizes( $post->ID ) );
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->filter_response_by_context( $data, $context );
$links = $response->get_links();
// Wrap the data in a response object.
$response = rest_ensure_response( $data );
foreach ( $links as $rel => $rel_links ) {
foreach ( $rel_links as $link ) {
$response->add_link( $rel, $link['href'], $link['attributes'] );
}
}
/**
* Filters an attachment returned from the REST API.
*
* Allows modification of the attachment right before it is returned.
*
* @since 4.7.0
*
* @param WP_REST_Response $response The response object.
* @param WP_Post $post The original attachment post.
* @param WP_REST_Request $request Request used to generate the response.
*/
return apply_filters( 'rest_prepare_attachment', $response, $post, $request );
}
/**
* Prepares attachment links for the request.
*
* @since 6.9.0
*
* @param WP_Post $post Post object.
* @return array Links for the given attachment.
*/
protected function prepare_links( $post ) {
$links = parent::prepare_links( $post );
if ( ! empty( $post->post_parent ) ) {
$post = get_post( $post->post_parent );
if ( ! empty( $post ) ) {
$links['https://api.w.org/attached-to'] = array(
'href' => rest_url( rest_get_route_for_post( $post ) ),
'embeddable' => true,
'post_type' => $post->post_type,
'id' => $post->ID,
);
}
}
return $links;
}
/**
* Retrieves the attachment's schema, conforming to JSON Schema.
*
* @since 4.7.0
*
* @return array Item schema as an array.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = parent::get_item_schema();
$schema['properties']['alt_text'] = array(
'description' => __( 'Alternative text to display when attachment is not displayed.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
);
$schema['properties']['caption'] = array(
'description' => __( 'The attachment caption.' ),
'type' => 'object',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
),
'properties' => array(
'raw' => array(
'description' => __( 'Caption for the attachment, as it exists in the database.' ),
'type' => 'string',
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'HTML caption for the attachment, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
),
);
$schema['properties']['description'] = array(
'description' => __( 'The attachment description.' ),
'type' => 'object',
'context' => array( 'view', 'edit' ),
'arg_options' => array(
'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
),
'properties' => array(
'raw' => array(
'description' => __( 'Description for the attachment, as it exists in the database.' ),
'type' => 'string',
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'HTML description for the attachment, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
),
);
$schema['properties']['media_type'] = array(
'description' => __( 'Attachment type.' ),
'type' => 'string',
'enum' => array( 'image', 'file' ),
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['mime_type'] = array(
'description' => __( 'The attachment MIME type.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['media_details'] = array(
'description' => __( 'Details about the media file, specific to its type.' ),
'type' => 'object',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['post'] = array(
'description' => __( 'The ID for the associated post of the attachment.' ),
'type' => 'integer',
'context' => array( 'view', 'edit' ),
);
$schema['properties']['source_url'] = array(
'description' => __( 'URL to the original attachment file.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
);
$schema['properties']['missing_image_sizes'] = array(
'description' => __( 'List of the missing image sizes of the attachment.' ),
'type' => 'array',
'items' => array( 'type' => 'string' ),
'context' => array( 'edit' ),
'readonly' => true,
);
unset( $schema['properties']['password'] );
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Handles an upload via raw POST data.
*
* @since 4.7.0
* @since 6.6.0 Added the `$time` parameter.
*
* @param string $data Supplied file data.
* @param array $headers HTTP headers from the request.
* @param string|null $time Optional. Time formatted in 'yyyy/mm'. Default null.
* @return array|WP_Error Data from wp_handle_sideload().
*/
protected function upload_from_data( $data, $headers, $time = null ) {
if ( empty( $data ) ) {
return new WP_Error(
'rest_upload_no_data',
__( 'No data supplied.' ),
array( 'status' => 400 )
);
}
if ( empty( $headers['content_type'] ) ) {
return new WP_Error(
'rest_upload_no_content_type',
__( 'No Content-Type supplied.' ),
array( 'status' => 400 )
);
}
if ( empty( $headers['content_disposition'] ) ) {
return new WP_Error(
'rest_upload_no_content_disposition',
__( 'No Content-Disposition supplied.' ),
array( 'status' => 400 )
);
}
$filename = self::get_filename_from_disposition( $headers['content_disposition'] );
if ( empty( $filename ) ) {
return new WP_Error(
'rest_upload_invalid_disposition',
__( 'Invalid Content-Disposition supplied. Content-Disposition needs to be formatted as `attachment; filename="image.png"` or similar.' ),
array( 'status' => 400 )
);
}
if ( ! empty( $headers['content_md5'] ) ) {
$content_md5 = array_shift( $headers['content_md5'] );
$expected = trim( $content_md5 );
$actual = md5( $data );
if ( $expected !== $actual ) {
return new WP_Error(
'rest_upload_hash_mismatch',
__( 'Content hash did not match expected.' ),
array( 'status' => 412 )
);
}
}
// Get the content-type.
$type = array_shift( $headers['content_type'] );
// Include filesystem functions to get access to wp_tempnam() and wp_handle_sideload().
require_once ABSPATH . 'wp-admin/includes/file.php';
// Save the file.
$tmpfname = wp_tempnam( $filename );
$fp = fopen( $tmpfname, 'w+' );
if ( ! $fp ) {
return new WP_Error(
'rest_upload_file_error',
__( 'Could not open file handle.' ),
array( 'status' => 500 )
);
}
fwrite( $fp, $data );
fclose( $fp );
// Now, sideload it in.
$file_data = array(
'error' => null,
'tmp_name' => $tmpfname,
'name' => $filename,
'type' => $type,
);
$size_check = self::check_upload_size( $file_data );
if ( is_wp_error( $size_check ) ) {
return $size_check;
}
$overrides = array(
'test_form' => false,
);
$sideloaded = wp_handle_sideload( $file_data, $overrides, $time );
if ( isset( $sideloaded['error'] ) ) {
@unlink( $tmpfname );
return new WP_Error(
'rest_upload_sideload_error',
$sideloaded['error'],
array( 'status' => 500 )
);
}
return $sideloaded;
}
/**
* Parses filename from a Content-Disposition header value.
*
* As per RFC6266:
*
* content-disposition = "Content-Disposition" ":"
* disposition-type *( ";" disposition-parm )
*
* disposition-type = "inline" | "attachment" | disp-ext-type
* ; case-insensitive
* disp-ext-type = token
*
* disposition-parm = filename-parm | disp-ext-parm
*
* filename-parm = "filename" "=" value
* | "filename*" "=" ext-value
*
* disp-ext-parm = token "=" value
* | ext-token "=" ext-value
* ext-token =
*
* @since 4.7.0
*
* @link https://tools.ietf.org/html/rfc2388
* @link https://tools.ietf.org/html/rfc6266
*
* @param string[] $disposition_header List of Content-Disposition header values.
* @return string|null Filename if available, or null if not found.
*/
public static function get_filename_from_disposition( $disposition_header ) {
// Get the filename.
$filename = null;
foreach ( $disposition_header as $value ) {
$value = trim( $value );
if ( ! str_contains( $value, ';' ) ) {
continue;
}
list( , $attr_parts ) = explode( ';', $value, 2 );
$attr_parts = explode( ';', $attr_parts );
$attributes = array();
foreach ( $attr_parts as $part ) {
if ( ! str_contains( $part, '=' ) ) {
continue;
}
list( $key, $value ) = explode( '=', $part, 2 );
$attributes[ trim( $key ) ] = trim( $value );
}
if ( empty( $attributes['filename'] ) ) {
continue;
}
$filename = trim( $attributes['filename'] );
// Unquote quoted filename, but after trimming.
if ( str_starts_with( $filename, '"' ) && str_ends_with( $filename, '"' ) ) {
$filename = substr( $filename, 1, -1 );
}
}
return $filename;
}
/**
* Retrieves the query params for collections of attachments.
*
* @since 4.7.0
* @since 6.9.0 Extends the `media_type` and `mime_type` request arguments to support array values.
*
* @return array Query parameters for the attachment collection as an array.
*/
public function get_collection_params() {
$params = parent::get_collection_params();
$params['status']['default'] = 'inherit';
$params['status']['items']['enum'] = array( 'inherit', 'private', 'trash' );
$media_types = array_keys( $this->get_media_types() );
$params['media_type'] = array(
'default' => null,
'description' => __( 'Limit result set to attachments of a particular media type or media types.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
'enum' => $media_types,
),
);
$params['mime_type'] = array(
'default' => null,
'description' => __( 'Limit result set to attachments of a particular MIME type or MIME types.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
);
return $params;
}
/**
* Handles an upload via multipart/form-data ($_FILES).
*
* @since 4.7.0
* @since 6.6.0 Added the `$time` parameter.
*
* @param array $files Data from the `$_FILES` superglobal.
* @param array $headers HTTP headers from the request.
* @param string|null $time Optional. Time formatted in 'yyyy/mm'. Default null.
* @return array|WP_Error Data from wp_handle_upload().
*/
protected function upload_from_file( $files, $headers, $time = null ) {
if ( empty( $files ) ) {
return new WP_Error(
'rest_upload_no_data',
__( 'No data supplied.' ),
array( 'status' => 400 )
);
}
// Verify hash, if given.
if ( ! empty( $headers['content_md5'] ) ) {
$content_md5 = array_shift( $headers['content_md5'] );
$expected = trim( $content_md5 );
$actual = md5_file( $files['file']['tmp_name'] );
if ( $expected !== $actual ) {
return new WP_Error(
'rest_upload_hash_mismatch',
__( 'Content hash did not match expected.' ),
array( 'status' => 412 )
);
}
}
// Pass off to WP to handle the actual upload.
$overrides = array(
'test_form' => false,
);
// Bypasses is_uploaded_file() when running unit tests.
if ( defined( 'DIR_TESTDATA' ) && DIR_TESTDATA ) {
$overrides['action'] = 'wp_handle_mock_upload';
}
$size_check = self::check_upload_size( $files['file'] );
if ( is_wp_error( $size_check ) ) {
return $size_check;
}
// Include filesystem functions to get access to wp_handle_upload().
require_once ABSPATH . 'wp-admin/includes/file.php';
$file = wp_handle_upload( $files['file'], $overrides, $time );
if ( isset( $file['error'] ) ) {
return new WP_Error(
'rest_upload_unknown_error',
$file['error'],
array( 'status' => 500 )
);
}
return $file;
}
/**
* Retrieves the supported media types.
*
* Media types are considered the MIME type category.
*
* @since 4.7.0
*
* @return array Array of supported media types.
*/
protected function get_media_types() {
$media_types = array();
foreach ( get_allowed_mime_types() as $mime_type ) {
$parts = explode( '/', $mime_type );
if ( ! isset( $media_types[ $parts[0] ] ) ) {
$media_types[ $parts[0] ] = array();
}
$media_types[ $parts[0] ][] = $mime_type;
}
return $media_types;
}
/**
* Determine if uploaded file exceeds space quota on multisite.
*
* Replicates check_upload_size().
*
* @since 4.9.8
*
* @param array $file $_FILES array for a given file.
* @return true|WP_Error True if can upload, error for errors.
*/
protected function check_upload_size( $file ) {
if ( ! is_multisite() ) {
return true;
}
if ( get_site_option( 'upload_space_check_disabled' ) ) {
return true;
}
$space_left = get_upload_space_available();
$file_size = filesize( $file['tmp_name'] );
if ( $space_left < $file_size ) {
return new WP_Error(
'rest_upload_limited_space',
/* translators: %s: Required disk space in kilobytes. */
sprintf( __( 'Not enough space to upload. %s KB needed.' ), number_format( ( $file_size - $space_left ) / KB_IN_BYTES ) ),
array( 'status' => 400 )
);
}
if ( $file_size > ( KB_IN_BYTES * get_site_option( 'fileupload_maxk', 1500 ) ) ) {
return new WP_Error(
'rest_upload_file_too_big',
/* translators: %s: Maximum allowed file size in kilobytes. */
sprintf( __( 'This file is too big. Files must be less than %s KB in size.' ), get_site_option( 'fileupload_maxk', 1500 ) ),
array( 'status' => 400 )
);
}
// Include multisite admin functions to get access to upload_is_user_over_quota().
require_once ABSPATH . 'wp-admin/includes/ms.php';
if ( upload_is_user_over_quota( false ) ) {
return new WP_Error(
'rest_upload_user_quota_exceeded',
__( 'You have used your space quota. Please delete files before uploading.' ),
array( 'status' => 400 )
);
}
return true;
}
/**
* Gets the request args for the edit item route.
*
* @since 5.5.0
* @since 6.9.0 Adds flips capability and editable fields for the newly-created attachment post.
*
* @return array
*/
protected function get_edit_media_item_args() {
$args = array(
'src' => array(
'description' => __( 'URL to the edited image file.' ),
'type' => 'string',
'format' => 'uri',
'required' => true,
),
// The `modifiers` param takes precedence over the older format.
'modifiers' => array(
'description' => __( 'Array of image edits.' ),
'type' => 'array',
'minItems' => 1,
'items' => array(
'description' => __( 'Image edit.' ),
'type' => 'object',
'required' => array(
'type',
'args',
),
'oneOf' => array(
array(
'title' => __( 'Flip' ),
'properties' => array(
'type' => array(
'description' => __( 'Flip type.' ),
'type' => 'string',
'enum' => array( 'flip' ),
),
'args' => array(
'description' => __( 'Flip arguments.' ),
'type' => 'object',
'required' => array(
'flip',
),
'properties' => array(
'flip' => array(
'description' => __( 'Flip direction.' ),
'type' => 'object',
'required' => array(
'horizontal',
'vertical',
),
'properties' => array(
'horizontal' => array(
'description' => __( 'Whether to flip in the horizontal direction.' ),
'type' => 'boolean',
),
'vertical' => array(
'description' => __( 'Whether to flip in the vertical direction.' ),
'type' => 'boolean',
),
),
),
),
),
),
),
array(
'title' => __( 'Rotation' ),
'properties' => array(
'type' => array(
'description' => __( 'Rotation type.' ),
'type' => 'string',
'enum' => array( 'rotate' ),
),
'args' => array(
'description' => __( 'Rotation arguments.' ),
'type' => 'object',
'required' => array(
'angle',
),
'properties' => array(
'angle' => array(
'description' => __( 'Angle to rotate clockwise in degrees.' ),
'type' => 'number',
),
),
),
),
),
array(
'title' => __( 'Crop' ),
'properties' => array(
'type' => array(
'description' => __( 'Crop type.' ),
'type' => 'string',
'enum' => array( 'crop' ),
),
'args' => array(
'description' => __( 'Crop arguments.' ),
'type' => 'object',
'required' => array(
'left',
'top',
'width',
'height',
),
'properties' => array(
'left' => array(
'description' => __( 'Horizontal position from the left to begin the crop as a percentage of the image width.' ),
'type' => 'number',
),
'top' => array(
'description' => __( 'Vertical position from the top to begin the crop as a percentage of the image height.' ),
'type' => 'number',
),
'width' => array(
'description' => __( 'Width of the crop as a percentage of the image width.' ),
'type' => 'number',
),
'height' => array(
'description' => __( 'Height of the crop as a percentage of the image height.' ),
'type' => 'number',
),
),
),
),
),
),
),
),
'rotation' => array(
'description' => __( 'The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.' ),
'type' => 'integer',
'minimum' => 0,
'exclusiveMinimum' => true,
'maximum' => 360,
'exclusiveMaximum' => true,
),
'x' => array(
'description' => __( 'As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.' ),
'type' => 'number',
'minimum' => 0,
'maximum' => 100,
),
'y' => array(
'description' => __( 'As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.' ),
'type' => 'number',
'minimum' => 0,
'maximum' => 100,
),
'width' => array(
'description' => __( 'As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.' ),
'type' => 'number',
'minimum' => 0,
'maximum' => 100,
),
'height' => array(
'description' => __( 'As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.' ),
'type' => 'number',
'minimum' => 0,
'maximum' => 100,
),
);
/*
* Get the args based on the post schema. This calls `rest_get_endpoint_args_for_schema()`,
* which also takes care of sanitization and validation.
*/
$update_item_args = $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE );
if ( isset( $update_item_args['caption'] ) ) {
$args['caption'] = $update_item_args['caption'];
}
if ( isset( $update_item_args['description'] ) ) {
$args['description'] = $update_item_args['description'];
}
if ( isset( $update_item_args['title'] ) ) {
$args['title'] = $update_item_args['title'];
}
if ( isset( $update_item_args['post'] ) ) {
$args['post'] = $update_item_args['post'];
}
if ( isset( $update_item_args['alt_text'] ) ) {
$args['alt_text'] = $update_item_args['alt_text'];
}
return $args;
}
}
PK \
) ) 7 endpoints/class-wp-rest-font-collections-controller.phpnu [ rest_base = 'font-collections';
$this->namespace = 'wp/v2';
}
/**
* Registers the routes for the objects of the controller.
*
* @since 6.5.0
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P[\/\w-]+)',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Gets the font collections available.
*
* @since 6.5.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
$collections_all = WP_Font_Library::get_instance()->get_font_collections();
$page = $request['page'];
$per_page = $request['per_page'];
$total_items = count( $collections_all );
$max_pages = (int) ceil( $total_items / $per_page );
if ( $page > $max_pages && $total_items > 0 ) {
return new WP_Error(
'rest_post_invalid_page_number',
__( 'The page number requested is larger than the number of pages available.' ),
array( 'status' => 400 )
);
}
$collections_page = array_slice( $collections_all, ( $page - 1 ) * $per_page, $per_page );
$is_head_request = $request->is_method( 'HEAD' );
$items = array();
foreach ( $collections_page as $collection ) {
$item = $this->prepare_item_for_response( $collection, $request );
// If there's an error loading a collection, skip it and continue loading valid collections.
if ( is_wp_error( $item ) ) {
continue;
}
/*
* Skip preparing the response body for HEAD requests.
* Cannot exit earlier due to backward compatibility reasons,
* as validation occurs in the prepare_item_for_response method.
*/
if ( $is_head_request ) {
continue;
}
$item = $this->prepare_response_for_collection( $item );
$items[] = $item;
}
$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $items );
$response->header( 'X-WP-Total', (int) $total_items );
$response->header( 'X-WP-TotalPages', $max_pages );
$request_params = $request->get_query_params();
$collection_url = rest_url( $this->namespace . '/' . $this->rest_base );
$base = add_query_arg( urlencode_deep( $request_params ), $collection_url );
if ( $page > 1 ) {
$prev_page = $page - 1;
if ( $prev_page > $max_pages ) {
$prev_page = $max_pages;
}
$prev_link = add_query_arg( 'page', $prev_page, $base );
$response->link_header( 'prev', $prev_link );
}
if ( $max_pages > $page ) {
$next_page = $page + 1;
$next_link = add_query_arg( 'page', $next_page, $base );
$response->link_header( 'next', $next_link );
}
return $response;
}
/**
* Gets a font collection.
*
* @since 6.5.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_item( $request ) {
$slug = $request->get_param( 'slug' );
$collection = WP_Font_Library::get_instance()->get_font_collection( $slug );
if ( ! $collection ) {
return new WP_Error( 'rest_font_collection_not_found', __( 'Font collection not found.' ), array( 'status' => 404 ) );
}
return $this->prepare_item_for_response( $collection, $request );
}
/**
* Prepare a single collection output for response.
*
* @since 6.5.0
*
* @param WP_Font_Collection $item Font collection object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function prepare_item_for_response( $item, $request ) {
$fields = $this->get_fields_for_response( $request );
$data = array();
if ( rest_is_field_included( 'slug', $fields ) ) {
$data['slug'] = $item->slug;
}
// If any data fields are requested, get the collection data.
$data_fields = array( 'name', 'description', 'font_families', 'categories' );
if ( ! empty( array_intersect( $fields, $data_fields ) ) ) {
$collection_data = $item->get_data();
if ( is_wp_error( $collection_data ) ) {
$collection_data->add_data( array( 'status' => 500 ) );
return $collection_data;
}
/**
* Don't prepare the response body for HEAD requests.
* Can't exit at the beginning of the method due to the potential need to return a WP_Error object.
*/
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php */
return apply_filters( 'rest_prepare_font_collection', new WP_REST_Response( array() ), $item, $request );
}
foreach ( $data_fields as $field ) {
if ( rest_is_field_included( $field, $fields ) ) {
$data[ $field ] = $collection_data[ $field ];
}
}
}
/**
* Don't prepare the response body for HEAD requests.
* Can't exit at the beginning of the method due to the potential need to return a WP_Error object.
*/
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php */
return apply_filters( 'rest_prepare_font_collection', new WP_REST_Response( array() ), $item, $request );
}
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) ) {
$links = $this->prepare_links( $item );
$response->add_links( $links );
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$response->data = $this->add_additional_fields_to_object( $response->data, $request );
$response->data = $this->filter_response_by_context( $response->data, $context );
/**
* Filters the font collection data for a REST API response.
*
* @since 6.5.0
*
* @param WP_REST_Response $response The response object.
* @param WP_Font_Collection $item The font collection object.
* @param WP_REST_Request $request Request used to generate the response.
*/
return apply_filters( 'rest_prepare_font_collection', $response, $item, $request );
}
/**
* Retrieves the font collection's schema, conforming to JSON Schema.
*
* @since 6.5.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'font-collection',
'type' => 'object',
'properties' => array(
'slug' => array(
'description' => __( 'Unique identifier for the font collection.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
'name' => array(
'description' => __( 'The name for the font collection.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
),
'description' => array(
'description' => __( 'The description for the font collection.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
),
'font_families' => array(
'description' => __( 'The font families for the font collection.' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
),
'categories' => array(
'description' => __( 'The categories for the font collection.' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
),
),
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Prepares links for the request.
*
* @since 6.5.0
*
* @param WP_Font_Collection $collection Font collection data
* @return array Links for the given font collection.
*/
protected function prepare_links( $collection ) {
return array(
'self' => array(
'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $collection->slug ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
),
);
}
/**
* Retrieves the search params for the font collections.
*
* @since 6.5.0
*
* @return array Collection parameters.
*/
public function get_collection_params() {
$query_params = parent::get_collection_params();
$query_params['context'] = $this->get_context_param( array( 'default' => 'view' ) );
unset( $query_params['search'] );
/**
* Filters REST API collection parameters for the font collections controller.
*
* @since 6.5.0
*
* @param array $query_params JSON Schema-formatted collection parameters.
*/
return apply_filters( 'rest_font_collections_collection_params', $query_params );
}
/**
* Checks whether the user has permissions to use the Fonts Collections.
*
* @since 6.5.0
*
* @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
if ( current_user_can( 'edit_theme_options' ) ) {
return true;
}
return new WP_Error(
'rest_cannot_read',
__( 'Sorry, you are not allowed to access font collections.' ),
array(
'status' => rest_authorization_required_code(),
)
);
}
}
PK \4{ { 7 endpoints/class-wp-rest-abilities-v1-run-controller.phpnu [ namespace,
'/' . $this->rest_base . '/(?P[a-zA-Z0-9\-\/]+?)/run',
array(
'args' => array(
'name' => array(
'description' => __( 'Unique identifier for the ability.' ),
'type' => 'string',
'pattern' => '^[a-zA-Z0-9\-\/]+$',
),
),
// TODO: We register ALLMETHODS because at route registration time, we don't know which abilities
// exist or their annotations (`destructive`, `idempotent`, `readonly`). This is due to WordPress
// load order - routes are registered early, before plugins have registered their abilities.
// This approach works but could be improved with lazy route registration or a different
// architecture that allows type-specific routes after abilities are registered.
// This was the same issue that we ended up seeing with the Feature API.
array(
'methods' => WP_REST_Server::ALLMETHODS,
'callback' => array( $this, 'execute_ability' ),
'permission_callback' => array( $this, 'check_ability_permissions' ),
'args' => $this->get_run_args(),
),
'schema' => array( $this, 'get_run_schema' ),
)
);
}
/**
* Executes an ability.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function execute_ability( $request ) {
$ability = wp_get_ability( $request['name'] );
if ( ! $ability ) {
return new WP_Error(
'rest_ability_not_found',
__( 'Ability not found.' ),
array( 'status' => 404 )
);
}
$input = $this->get_input_from_request( $request );
$result = $ability->execute( $input );
if ( is_wp_error( $result ) ) {
return $result;
}
return rest_ensure_response( $result );
}
/**
* Validates if the HTTP method matches the expected method for the ability based on its annotations.
*
* @since 6.9.0
*
* @param string $request_method The HTTP method of the request.
* @param array $annotations The ability annotations.
* @return true|WP_Error True on success, or WP_Error object on failure.
*/
public function validate_request_method( string $request_method, array $annotations ) {
$expected_method = 'POST';
if ( ! empty( $annotations['readonly'] ) ) {
$expected_method = 'GET';
} elseif ( ! empty( $annotations['destructive'] ) && ! empty( $annotations['idempotent'] ) ) {
$expected_method = 'DELETE';
}
if ( $expected_method === $request_method ) {
return true;
}
$error_message = __( 'Abilities that perform updates require POST method.' );
if ( 'GET' === $expected_method ) {
$error_message = __( 'Read-only abilities require GET method.' );
} elseif ( 'DELETE' === $expected_method ) {
$error_message = __( 'Abilities that perform destructive actions require DELETE method.' );
}
return new WP_Error(
'rest_ability_invalid_method',
$error_message,
array( 'status' => 405 )
);
}
/**
* Checks if a given request has permission to execute a specific ability.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has execution permission, WP_Error object otherwise.
*/
public function check_ability_permissions( $request ) {
$ability = wp_get_ability( $request['name'] );
if ( ! $ability || ! $ability->get_meta_item( 'show_in_rest' ) ) {
return new WP_Error(
'rest_ability_not_found',
__( 'Ability not found.' ),
array( 'status' => 404 )
);
}
$is_valid = $this->validate_request_method(
$request->get_method(),
$ability->get_meta_item( 'annotations' )
);
if ( is_wp_error( $is_valid ) ) {
return $is_valid;
}
$input = $this->get_input_from_request( $request );
$input = $ability->normalize_input( $input );
$is_valid = $ability->validate_input( $input );
if ( is_wp_error( $is_valid ) ) {
$is_valid->add_data( array( 'status' => 400 ) );
return $is_valid;
}
$result = $ability->check_permissions( $input );
if ( is_wp_error( $result ) ) {
$result->add_data( array( 'status' => rest_authorization_required_code() ) );
return $result;
}
if ( ! $result ) {
return new WP_Error(
'rest_ability_cannot_execute',
__( 'Sorry, you are not allowed to execute this ability.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Extracts input parameters from the request.
*
* @since 6.9.0
*
* @param WP_REST_Request $request The request object.
* @return mixed|null The input parameters.
*/
private function get_input_from_request( $request ) {
if ( in_array( $request->get_method(), array( 'GET', 'DELETE' ), true ) ) {
// For GET and DELETE requests, look for 'input' query parameter.
$query_params = $request->get_query_params();
return $query_params['input'] ?? null;
}
// For POST requests, look for 'input' in JSON body.
$json_params = $request->get_json_params();
return $json_params['input'] ?? null;
}
/**
* Retrieves the arguments for ability execution endpoint.
*
* @since 6.9.0
*
* @return array Arguments for the run endpoint.
*/
public function get_run_args(): array {
return array(
'input' => array(
'description' => __( 'Input parameters for the ability execution.' ),
'type' => array( 'integer', 'number', 'boolean', 'string', 'array', 'object', 'null' ),
'default' => null,
),
);
}
/**
* Retrieves the schema for ability execution endpoint.
*
* @since 6.9.0
*
* @return array Schema for the run endpoint.
*/
public function get_run_schema(): array {
return array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'ability-execution',
'type' => 'object',
'properties' => array(
'result' => array(
'description' => __( 'The result of the ability execution.' ),
'type' => array( 'integer', 'number', 'boolean', 'string', 'array', 'object', 'null' ),
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
),
);
}
}
PK \٫ > endpoints/class-wp-rest-abilities-v1-categories-controller.phpnu [ namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P[a-z0-9]+(?:-[a-z0-9]+)*)',
array(
'args' => array(
'slug' => array(
'description' => __( 'Unique identifier for the ability category.' ),
'type' => 'string',
'pattern' => '^[a-z0-9]+(?:-[a-z0-9]+)*$',
),
),
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Retrieves all ability categories.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response Response object on success.
*/
public function get_items( $request ) {
$categories = wp_get_ability_categories();
$page = $request['page'];
$per_page = $request['per_page'];
$offset = ( $page - 1 ) * $per_page;
$total_categories = count( $categories );
$max_pages = (int) ceil( $total_categories / $per_page );
if ( $request->get_method() === 'HEAD' ) {
$response = new WP_REST_Response( array() );
} else {
$categories = array_slice( $categories, $offset, $per_page );
$data = array();
foreach ( $categories as $category ) {
$item = $this->prepare_item_for_response( $category, $request );
$data[] = $this->prepare_response_for_collection( $item );
}
$response = rest_ensure_response( $data );
}
$response->header( 'X-WP-Total', (string) $total_categories );
$response->header( 'X-WP-TotalPages', (string) $max_pages );
$query_params = $request->get_query_params();
$base = add_query_arg(
urlencode_deep( $query_params ),
rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) )
);
if ( $page > 1 ) {
$prev_page = $page - 1;
$prev_link = add_query_arg( 'page', $prev_page, $base );
$response->link_header( 'prev', $prev_link );
}
if ( $page < $max_pages ) {
$next_page = $page + 1;
$next_link = add_query_arg( 'page', $next_page, $base );
$response->link_header( 'next', $next_link );
}
return $response;
}
/**
* Retrieves a specific ability category.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_item( $request ) {
$category = wp_get_ability_category( $request['slug'] );
if ( ! $category ) {
return new WP_Error(
'rest_ability_category_not_found',
__( 'Ability category not found.' ),
array( 'status' => 404 )
);
}
$data = $this->prepare_item_for_response( $category, $request );
return rest_ensure_response( $data );
}
/**
* Checks if a given request has access to read ability categories.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return bool True if the request has read access.
*/
public function get_items_permissions_check( $request ) {
return current_user_can( 'read' );
}
/**
* Checks if a given request has access to read an ability category.
*
* @since 6.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return bool True if the request has read access.
*/
public function get_item_permissions_check( $request ) {
return current_user_can( 'read' );
}
/**
* Prepares an ability category for response.
*
* @since 6.9.0
*
* @param WP_Ability_Category $category The ability category object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $category, $request ) {
$data = array(
'slug' => $category->get_slug(),
'label' => $category->get_label(),
'description' => $category->get_description(),
'meta' => $category->get_meta(),
);
$context = $request['context'] ?? 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
$fields = $this->get_fields_for_response( $request );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $category->get_slug() ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
),
'abilities' => array(
'href' => rest_url( sprintf( '%s/abilities?category=%s', $this->namespace, $category->get_slug() ) ),
),
);
$response->add_links( $links );
}
return $response;
}
/**
* Retrieves the ability category's schema, conforming to JSON Schema.
*
* @since 6.9.0
*
* @return array Item schema data.
*/
public function get_item_schema(): array {
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'ability-category',
'type' => 'object',
'properties' => array(
'slug' => array(
'description' => __( 'Unique identifier for the ability category.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
'label' => array(
'description' => __( 'Display label for the category.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
'description' => array(
'description' => __( 'Description of the category.' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'meta' => array(
'description' => __( 'Meta information about the category.' ),
'type' => 'object',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
),
);
return $this->add_additional_fields_schema( $schema );
}
/**
* Retrieves the query params for collections.
*
* @since 6.9.0
*
* @return array Collection parameters.
*/
public function get_collection_params(): array {
return array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
'page' => array(
'description' => __( 'Current page of the collection.' ),
'type' => 'integer',
'default' => 1,
'minimum' => 1,
),
'per_page' => array(
'description' => __( 'Maximum number of items to be returned in result set.' ),
'type' => 'integer',
'default' => 50,
'minimum' => 1,
'maximum' => 100,
),
);
}
}
PK \8' ? endpoints/class-wp-rest-block-pattern-categories-controller.phpnu [ namespace = 'wp/v2';
$this->rest_base = 'block-patterns/categories';
}
/**
* Registers the routes for the objects of the controller.
*
* @since 6.0.0
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Checks whether a given request has permission to read block patterns.
*
* @since 6.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) {
if ( current_user_can( 'edit_posts' ) ) {
return true;
}
foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
if ( current_user_can( $post_type->cap->edit_posts ) ) {
return true;
}
}
return new WP_Error(
'rest_cannot_view',
__( 'Sorry, you are not allowed to view the registered block pattern categories.' ),
array( 'status' => rest_authorization_required_code() )
);
}
/**
* Retrieves all block pattern categories.
*
* @since 6.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
if ( $request->is_method( 'HEAD' ) ) {
// Return early as this handler doesn't add any response headers.
return new WP_REST_Response( array() );
}
$response = array();
$categories = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered();
foreach ( $categories as $category ) {
$prepared_category = $this->prepare_item_for_response( $category, $request );
$response[] = $this->prepare_response_for_collection( $prepared_category );
}
return rest_ensure_response( $response );
}
/**
* Prepare a raw block pattern category before it gets output in a REST API response.
*
* @since 6.0.0
*
* @param array $item Raw category as registered, before any changes.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function prepare_item_for_response( $item, $request ) {
$fields = $this->get_fields_for_response( $request );
$keys = array( 'name', 'label', 'description' );
$data = array();
foreach ( $keys as $key ) {
if ( isset( $item[ $key ] ) && rest_is_field_included( $key, $fields ) ) {
$data[ $key ] = $item[ $key ];
}
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
return rest_ensure_response( $data );
}
/**
* Retrieves the block pattern category schema, conforming to JSON Schema.
*
* @since 6.0.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'block-pattern-category',
'type' => 'object',
'properties' => array(
'name' => array(
'description' => __( 'The category name.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'label' => array(
'description' => __( 'The category label, in human readable format.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'description' => array(
'description' => __( 'The category description, in human readable format.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
),
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
}
PK \H? H? / endpoints/class-wp-rest-sidebars-controller.phpnu [ namespace = 'wp/v2';
$this->rest_base = 'sidebars';
}
/**
* Registers the controllers routes.
*
* @since 5.8.0
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P[\w-]+)',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => array(
'id' => array(
'description' => __( 'The id of a registered sidebar' ),
'type' => 'string',
),
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this, 'update_item' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Checks if a given request has access to get sidebars.
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) {
$this->retrieve_widgets();
foreach ( wp_get_sidebars_widgets() as $id => $widgets ) {
$sidebar = $this->get_sidebar( $id );
if ( ! $sidebar ) {
continue;
}
if ( $this->check_read_permission( $sidebar ) ) {
return true;
}
}
return $this->do_permissions_check();
}
/**
* Retrieves the list of sidebars (active or inactive).
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response Response object on success.
*/
public function get_items( $request ) {
if ( $request->is_method( 'HEAD' ) ) {
// Return early as this handler doesn't add any response headers.
return new WP_REST_Response( array() );
}
$this->retrieve_widgets();
$data = array();
$permissions_check = $this->do_permissions_check();
foreach ( wp_get_sidebars_widgets() as $id => $widgets ) {
$sidebar = $this->get_sidebar( $id );
if ( ! $sidebar ) {
continue;
}
if ( is_wp_error( $permissions_check ) && ! $this->check_read_permission( $sidebar ) ) {
continue;
}
$data[] = $this->prepare_response_for_collection(
$this->prepare_item_for_response( $sidebar, $request )
);
}
return rest_ensure_response( $data );
}
/**
* Checks if a given request has access to get a single sidebar.
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_item_permissions_check( $request ) {
$this->retrieve_widgets();
$sidebar = $this->get_sidebar( $request['id'] );
if ( $sidebar && $this->check_read_permission( $sidebar ) ) {
return true;
}
return $this->do_permissions_check();
}
/**
* Checks if a sidebar can be read publicly.
*
* @since 5.9.0
*
* @param array $sidebar The registered sidebar configuration.
* @return bool Whether the side can be read.
*/
protected function check_read_permission( $sidebar ) {
return ! empty( $sidebar['show_in_rest'] );
}
/**
* Retrieves one sidebar from the collection.
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_item( $request ) {
$this->retrieve_widgets();
$sidebar = $this->get_sidebar( $request['id'] );
if ( ! $sidebar ) {
return new WP_Error( 'rest_sidebar_not_found', __( 'No sidebar exists with that id.' ), array( 'status' => 404 ) );
}
return $this->prepare_item_for_response( $sidebar, $request );
}
/**
* Checks if a given request has access to update sidebars.
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function update_item_permissions_check( $request ) {
return $this->do_permissions_check();
}
/**
* Updates a sidebar.
*
* @since 5.8.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response Response object on success, or WP_Error object on failure.
*/
public function update_item( $request ) {
if ( isset( $request['widgets'] ) ) {
$sidebars = wp_get_sidebars_widgets();
foreach ( $sidebars as $sidebar_id => $widgets ) {
foreach ( $widgets as $i => $widget_id ) {
// This automatically removes the passed widget IDs from any other sidebars in use.
if ( $sidebar_id !== $request['id'] && in_array( $widget_id, $request['widgets'], true ) ) {
unset( $sidebars[ $sidebar_id ][ $i ] );
}
// This automatically removes omitted widget IDs to the inactive sidebar.
if ( $sidebar_id === $request['id'] && ! in_array( $widget_id, $request['widgets'], true ) ) {
$sidebars['wp_inactive_widgets'][] = $widget_id;
}
}
}
$sidebars[ $request['id'] ] = $request['widgets'];
wp_set_sidebars_widgets( $sidebars );
}
$request['context'] = 'edit';
$sidebar = $this->get_sidebar( $request['id'] );
/**
* Fires after a sidebar is updated via the REST API.
*
* @since 5.8.0
*
* @param array $sidebar The updated sidebar.
* @param WP_REST_Request $request Request object.
*/
do_action( 'rest_save_sidebar', $sidebar, $request );
return $this->prepare_item_for_response( $sidebar, $request );
}
/**
* Checks if the user has permissions to make the request.
*
* @since 5.8.0
*
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
protected function do_permissions_check() {
/*
* Verify if the current user has edit_theme_options capability.
* This capability is required to access the widgets screen.
*/
if ( ! current_user_can( 'edit_theme_options' ) ) {
return new WP_Error(
'rest_cannot_manage_widgets',
__( 'Sorry, you are not allowed to manage widgets on this site.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Retrieves the registered sidebar with the given id.
*
* @since 5.8.0
*
* @param string|int $id ID of the sidebar.
* @return array|null The discovered sidebar, or null if it is not registered.
*/
protected function get_sidebar( $id ) {
return wp_get_sidebar( $id );
}
/**
* Looks for "lost" widgets once per request.
*
* @since 5.9.0
*
* @see retrieve_widgets()
*/
protected function retrieve_widgets() {
if ( ! $this->widgets_retrieved ) {
retrieve_widgets();
$this->widgets_retrieved = true;
}
}
/**
* Prepares a single sidebar output for response.
*
* @since 5.8.0
* @since 5.9.0 Renamed `$raw_sidebar` to `$item` to match parent class for PHP 8 named parameter support.
*
* @global array $wp_registered_sidebars The registered sidebars.
* @global array $wp_registered_widgets The registered widgets.
*
* @param array $item Sidebar instance.
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response Prepared response object.
*/
public function prepare_item_for_response( $item, $request ) {
global $wp_registered_sidebars, $wp_registered_widgets;
// Restores the more descriptive, specific name for use within this method.
$raw_sidebar = $item;
// Don't prepare the response body for HEAD requests.
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php */
return apply_filters( 'rest_prepare_sidebar', new WP_REST_Response( array() ), $raw_sidebar, $request );
}
$id = $raw_sidebar['id'];
$sidebar = array( 'id' => $id );
if ( isset( $wp_registered_sidebars[ $id ] ) ) {
$registered_sidebar = $wp_registered_sidebars[ $id ];
$sidebar['status'] = 'active';
$sidebar['name'] = isset( $registered_sidebar['name'] ) ? $registered_sidebar['name'] : '';
$sidebar['description'] = isset( $registered_sidebar['description'] ) ? wp_sidebar_description( $id ) : '';
$sidebar['class'] = isset( $registered_sidebar['class'] ) ? $registered_sidebar['class'] : '';
$sidebar['before_widget'] = isset( $registered_sidebar['before_widget'] ) ? $registered_sidebar['before_widget'] : '';
$sidebar['after_widget'] = isset( $registered_sidebar['after_widget'] ) ? $registered_sidebar['after_widget'] : '';
$sidebar['before_title'] = isset( $registered_sidebar['before_title'] ) ? $registered_sidebar['before_title'] : '';
$sidebar['after_title'] = isset( $registered_sidebar['after_title'] ) ? $registered_sidebar['after_title'] : '';
} else {
$sidebar['status'] = 'inactive';
$sidebar['name'] = $raw_sidebar['name'];
$sidebar['description'] = '';
$sidebar['class'] = '';
}
if ( wp_is_block_theme() ) {
$sidebar['status'] = 'inactive';
}
$fields = $this->get_fields_for_response( $request );
if ( rest_is_field_included( 'widgets', $fields ) ) {
$sidebars = wp_get_sidebars_widgets();
$widgets = array_filter(
isset( $sidebars[ $sidebar['id'] ] ) ? $sidebars[ $sidebar['id'] ] : array(),
static function ( $widget_id ) use ( $wp_registered_widgets ) {
return isset( $wp_registered_widgets[ $widget_id ] );
}
);
$sidebar['widgets'] = array_values( $widgets );
}
$schema = $this->get_item_schema();
$data = array();
foreach ( $schema['properties'] as $property_id => $property ) {
if ( isset( $sidebar[ $property_id ] ) && true === rest_validate_value_from_schema( $sidebar[ $property_id ], $property ) ) {
$data[ $property_id ] = $sidebar[ $property_id ];
} elseif ( isset( $property['default'] ) ) {
$data[ $property_id ] = $property['default'];
}
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$response->add_links( $this->prepare_links( $sidebar ) );
}
/**
* Filters the REST API response for a sidebar.
*
* @since 5.8.0
*
* @param WP_REST_Response $response The response object.
* @param array $raw_sidebar The raw sidebar data.
* @param WP_REST_Request $request The request object.
*/
return apply_filters( 'rest_prepare_sidebar', $response, $raw_sidebar, $request );
}
/**
* Prepares links for the sidebar.
*
* @since 5.8.0
*
* @param array $sidebar Sidebar.
* @return array Links for the given widget.
*/
protected function prepare_links( $sidebar ) {
return array(
'collection' => array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
),
'self' => array(
'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $sidebar['id'] ) ),
),
'https://api.w.org/widget' => array(
'href' => add_query_arg( 'sidebar', $sidebar['id'], rest_url( '/wp/v2/widgets' ) ),
'embeddable' => true,
),
);
}
/**
* Retrieves the block type' schema, conforming to JSON Schema.
*
* @since 5.8.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'sidebar',
'type' => 'object',
'properties' => array(
'id' => array(
'description' => __( 'ID of sidebar.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'name' => array(
'description' => __( 'Unique name identifying the sidebar.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'description' => array(
'description' => __( 'Description of sidebar.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'class' => array(
'description' => __( 'Extra CSS class to assign to the sidebar in the Widgets interface.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'before_widget' => array(
'description' => __( 'HTML content to prepend to each widget\'s HTML output when assigned to this sidebar. Default is an opening list item element.' ),
'type' => 'string',
'default' => '',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'after_widget' => array(
'description' => __( 'HTML content to append to each widget\'s HTML output when assigned to this sidebar. Default is a closing list item element.' ),
'type' => 'string',
'default' => '',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'before_title' => array(
'description' => __( 'HTML content to prepend to the sidebar title when displayed. Default is an opening h2 element.' ),
'type' => 'string',
'default' => '',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'after_title' => array(
'description' => __( 'HTML content to append to the sidebar title when displayed. Default is a closing h2 element.' ),
'type' => 'string',
'default' => '',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'status' => array(
'description' => __( 'Status of sidebar.' ),
'type' => 'string',
'enum' => array( 'active', 'inactive' ),
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'widgets' => array(
'description' => __( 'Nested widgets.' ),
'type' => 'array',
'items' => array(
'type' => array( 'object', 'string' ),
),
'default' => array(),
'context' => array( 'embed', 'view', 'edit' ),
),
),
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
}
PK \#ܚ
endpoints/error_lognu [ [17-Feb-2024 04:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Feb-2024 04:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Feb-2024 04:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Feb-2024 04:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Feb-2024 04:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Feb-2024 04:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Feb-2024 04:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Feb-2024 04:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Feb-2024 04:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Feb-2024 04:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Feb-2024 04:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Feb-2024 04:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Feb-2024 04:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Feb-2024 04:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Feb-2024 04:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Feb-2024 04:54:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Feb-2024 04:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Feb-2024 04:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Feb-2024 04:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[17-Feb-2024 04:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Feb-2024 04:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Feb-2024 04:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Feb-2024 04:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Feb-2024 04:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Feb-2024 04:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Feb-2024 04:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Feb-2024 04:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Feb-2024 04:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Feb-2024 04:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Feb-2024 04:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Feb-2024 04:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Feb-2024 04:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Feb-2024 04:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Feb-2024 04:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Feb-2024 04:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Feb-2024 04:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Feb-2024 04:57:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[17-Feb-2024 06:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Feb-2024 06:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Feb-2024 06:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Feb-2024 06:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Feb-2024 06:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Feb-2024 06:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Feb-2024 06:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Feb-2024 06:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Feb-2024 06:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Feb-2024 06:32:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Feb-2024 06:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Feb-2024 06:32:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Feb-2024 06:32:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Feb-2024 06:32:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Feb-2024 06:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Feb-2024 06:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Feb-2024 06:32:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Feb-2024 06:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Feb-2024 06:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[17-Feb-2024 06:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Feb-2024 06:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Feb-2024 06:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Feb-2024 06:33:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Feb-2024 06:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Feb-2024 06:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Feb-2024 06:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Feb-2024 06:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Feb-2024 06:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Feb-2024 06:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Feb-2024 06:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Feb-2024 06:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Feb-2024 06:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Feb-2024 06:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Feb-2024 06:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Feb-2024 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Feb-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Feb-2024 06:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:45:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:45:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:45:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:45:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:45:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:46:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:46:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:46:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:46:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:46:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:47:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:47:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:49:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:49:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:49:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:50:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:51:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:52:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:52:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[31-Mar-2024 19:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[31-Mar-2024 19:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[31-Mar-2024 19:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[31-Mar-2024 19:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[31-Mar-2024 19:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[31-Mar-2024 19:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[31-Mar-2024 19:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[31-Mar-2024 19:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[01-Apr-2024 16:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[01-Apr-2024 16:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[01-Apr-2024 16:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[01-Apr-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[01-Apr-2024 16:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[01-Apr-2024 16:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[01-Apr-2024 16:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Apr-2024 11:37:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[29-Apr-2024 11:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[29-Apr-2024 11:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[29-Apr-2024 11:37:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[29-Apr-2024 11:38:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[29-Apr-2024 11:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[29-Apr-2024 11:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[29-Apr-2024 11:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[29-Apr-2024 11:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[29-Apr-2024 11:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[29-Apr-2024 11:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[29-Apr-2024 11:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[29-Apr-2024 11:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[29-Apr-2024 11:38:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[29-Apr-2024 11:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[29-Apr-2024 11:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[29-Apr-2024 11:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[29-Apr-2024 11:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[29-Apr-2024 11:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[29-Apr-2024 11:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[29-Apr-2024 11:38:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[29-Apr-2024 11:38:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[29-Apr-2024 11:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[29-Apr-2024 11:38:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[29-Apr-2024 11:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[29-Apr-2024 11:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[29-Apr-2024 11:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[29-Apr-2024 11:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[29-Apr-2024 11:39:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[29-Apr-2024 11:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[29-Apr-2024 11:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[29-Apr-2024 11:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[29-Apr-2024 11:39:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[29-Apr-2024 11:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[29-Apr-2024 11:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[29-Apr-2024 11:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[29-Apr-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[29-Apr-2024 11:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[29-Apr-2024 11:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[29-Apr-2024 11:39:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-May-2024 20:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-May-2024 20:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-May-2024 20:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-May-2024 20:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-May-2024 20:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-May-2024 20:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-May-2024 20:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-May-2024 20:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-May-2024 20:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-May-2024 20:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-May-2024 20:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-May-2024 20:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-May-2024 20:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-May-2024 20:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-May-2024 20:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-May-2024 20:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-May-2024 20:58:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-May-2024 20:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-May-2024 20:58:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-May-2024 20:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-May-2024 20:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-May-2024 20:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-May-2024 20:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-May-2024 20:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-May-2024 20:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-May-2024 20:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-May-2024 20:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-May-2024 20:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-May-2024 20:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-May-2024 20:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-May-2024 20:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-May-2024 20:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-May-2024 20:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-May-2024 20:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-May-2024 20:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-May-2024 20:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-May-2024 20:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-May-2024 20:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-May-2024 20:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-May-2024 20:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-May-2024 05:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-May-2024 05:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-May-2024 05:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-May-2024 05:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-May-2024 05:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-May-2024 05:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-May-2024 05:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-May-2024 05:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-May-2024 05:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-May-2024 05:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-May-2024 05:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-May-2024 05:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-May-2024 05:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-May-2024 05:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-May-2024 06:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-May-2024 06:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-May-2024 06:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-May-2024 06:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-May-2024 06:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-May-2024 06:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-May-2024 06:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-May-2024 06:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-May-2024 06:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-May-2024 06:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-May-2024 06:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-May-2024 06:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-May-2024 06:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-May-2024 06:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-May-2024 06:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-May-2024 06:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-May-2024 06:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-May-2024 06:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-May-2024 06:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-May-2024 06:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-May-2024 06:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-May-2024 06:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-May-2024 06:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-May-2024 06:02:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-May-2024 06:02:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-May-2024 06:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-May-2024 18:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-May-2024 18:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-May-2024 18:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-May-2024 18:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-May-2024 18:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-May-2024 18:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-May-2024 18:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-May-2024 18:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-May-2024 18:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-May-2024 18:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-May-2024 18:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-May-2024 18:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-May-2024 18:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-May-2024 18:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-May-2024 18:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-May-2024 18:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-May-2024 18:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-May-2024 18:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-May-2024 18:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-May-2024 18:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-May-2024 18:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-May-2024 18:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-May-2024 18:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-May-2024 18:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-May-2024 18:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-May-2024 18:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-May-2024 18:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-May-2024 18:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-May-2024 18:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-May-2024 18:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-May-2024 18:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-May-2024 18:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-May-2024 18:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-May-2024 18:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-May-2024 18:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-May-2024 18:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-May-2024 18:32:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-May-2024 18:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-May-2024 18:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-May-2024 18:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[11-May-2024 09:42:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-May-2024 09:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-May-2024 09:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-May-2024 09:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-May-2024 09:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-May-2024 09:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-May-2024 09:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-May-2024 09:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-May-2024 09:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-May-2024 09:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-May-2024 09:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-May-2024 09:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-May-2024 09:43:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-May-2024 09:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-May-2024 09:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-May-2024 09:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-May-2024 09:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-May-2024 09:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-May-2024 09:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-May-2024 09:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-May-2024 09:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-May-2024 09:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-May-2024 09:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-May-2024 09:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-May-2024 09:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-May-2024 09:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-May-2024 09:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-May-2024 09:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-May-2024 09:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-May-2024 09:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-May-2024 09:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-May-2024 09:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-May-2024 09:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-May-2024 09:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-May-2024 09:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-May-2024 09:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-May-2024 09:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-May-2024 09:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-May-2024 09:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-May-2024 09:44:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[11-May-2024 16:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-May-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-May-2024 16:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-May-2024 16:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-May-2024 16:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-May-2024 16:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-May-2024 16:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-May-2024 16:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-May-2024 16:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-May-2024 16:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-May-2024 16:44:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-May-2024 16:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-May-2024 16:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-May-2024 16:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-May-2024 16:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-May-2024 16:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-May-2024 16:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-May-2024 16:46:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-May-2024 16:46:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-May-2024 16:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-May-2024 16:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-May-2024 16:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-May-2024 16:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-May-2024 16:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-May-2024 16:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-May-2024 16:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-May-2024 16:47:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-May-2024 16:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-May-2024 16:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-May-2024 16:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-May-2024 16:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-May-2024 16:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-May-2024 16:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-May-2024 16:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-May-2024 16:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-May-2024 16:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-May-2024 16:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-May-2024 16:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-May-2024 16:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-May-2024 16:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[12-Jul-2024 17:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[12-Jul-2024 17:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[12-Jul-2024 17:39:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[12-Jul-2024 17:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[12-Jul-2024 17:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[12-Jul-2024 17:39:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[12-Jul-2024 17:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[12-Jul-2024 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[12-Jul-2024 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[12-Jul-2024 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[12-Jul-2024 17:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[12-Jul-2024 17:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[12-Jul-2024 17:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[12-Jul-2024 17:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[12-Jul-2024 17:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[12-Jul-2024 17:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[12-Jul-2024 17:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[12-Jul-2024 17:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[12-Jul-2024 17:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[12-Jul-2024 17:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[12-Jul-2024 17:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[12-Jul-2024 17:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[12-Jul-2024 17:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[12-Jul-2024 17:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[12-Jul-2024 17:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[12-Jul-2024 17:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[12-Jul-2024 17:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[12-Jul-2024 17:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[12-Jul-2024 17:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[12-Jul-2024 17:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[12-Jul-2024 17:45:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[12-Jul-2024 17:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[12-Jul-2024 17:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[12-Jul-2024 17:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[12-Jul-2024 17:45:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[12-Jul-2024 17:46:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[12-Jul-2024 17:46:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[12-Jul-2024 17:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[12-Jul-2024 17:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[12-Jul-2024 17:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Jul-2024 16:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Jul-2024 16:51:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Jul-2024 16:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Jul-2024 16:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Jul-2024 16:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Jul-2024 16:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Jul-2024 16:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Jul-2024 16:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Jul-2024 16:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Jul-2024 16:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Jul-2024 16:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Jul-2024 16:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Jul-2024 16:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Jul-2024 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Jul-2024 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Jul-2024 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Jul-2024 16:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Jul-2024 16:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Jul-2024 16:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Jul-2024 16:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Jul-2024 16:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Jul-2024 16:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Jul-2024 16:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Jul-2024 16:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Jul-2024 16:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Jul-2024 16:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Jul-2024 16:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jul-2024 16:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Jul-2024 16:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Jul-2024 16:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Jul-2024 16:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Jul-2024 16:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Jul-2024 16:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Jul-2024 16:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Jul-2024 16:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Jul-2024 16:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Jul-2024 16:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Jul-2024 16:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Jul-2024 16:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Jul-2024 16:56:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Aug-2024 05:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[07-Aug-2024 05:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[07-Aug-2024 05:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[07-Aug-2024 05:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Aug-2024 05:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[07-Aug-2024 05:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[07-Aug-2024 05:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Aug-2024 05:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[07-Aug-2024 05:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Aug-2024 05:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Aug-2024 05:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[07-Aug-2024 05:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[07-Aug-2024 05:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[07-Aug-2024 05:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Aug-2024 05:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[07-Aug-2024 05:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[07-Aug-2024 05:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Aug-2024 05:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Aug-2024 05:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[07-Aug-2024 05:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Aug-2024 05:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[07-Aug-2024 05:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[07-Aug-2024 05:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Aug-2024 05:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[07-Aug-2024 05:27:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[07-Aug-2024 05:27:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Aug-2024 05:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[07-Aug-2024 05:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[07-Aug-2024 05:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[07-Aug-2024 05:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[07-Aug-2024 05:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Aug-2024 05:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Aug-2024 05:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Aug-2024 05:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[07-Aug-2024 05:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[07-Aug-2024 05:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[07-Aug-2024 05:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Aug-2024 05:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[07-Aug-2024 05:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[07-Aug-2024 05:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Aug-2024 21:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Aug-2024 21:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Aug-2024 21:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Aug-2024 21:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Aug-2024 21:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Aug-2024 21:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Aug-2024 21:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Aug-2024 21:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Aug-2024 21:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Aug-2024 21:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Aug-2024 21:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Aug-2024 21:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Aug-2024 21:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Aug-2024 21:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Aug-2024 21:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Aug-2024 21:24:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Aug-2024 21:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Aug-2024 21:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Aug-2024 21:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Aug-2024 21:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Aug-2024 21:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Aug-2024 21:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Aug-2024 21:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Aug-2024 21:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Aug-2024 21:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Aug-2024 21:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Aug-2024 21:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Aug-2024 21:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Aug-2024 21:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Aug-2024 21:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Aug-2024 21:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Aug-2024 21:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Aug-2024 21:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Aug-2024 21:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Aug-2024 21:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Aug-2024 21:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Aug-2024 21:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Aug-2024 21:28:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Aug-2024 21:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Aug-2024 21:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:04:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:04:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:05:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:05:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:05:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:05:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:06:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:06:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:06:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:07:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:07:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:07:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:07:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:07:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:07:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:07:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:07:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:07:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:08:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:08:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:08:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:08:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:08:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:08:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2024 20:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2024 20:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2024 20:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2024 20:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2024 20:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2024 20:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2024 20:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2024 20:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2024 20:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2024 20:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2024 20:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2024 20:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2024 20:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2024 20:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2024 20:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2024 20:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2024 20:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2024 20:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2024 20:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2024 20:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2024 20:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2024 20:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2024 20:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2024 20:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2024 20:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2024 20:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2024 20:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2024 20:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2024 20:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2024 20:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2024 20:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2024 20:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2024 20:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2024 20:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2024 20:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2024 20:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2024 20:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2024 20:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2024 20:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2024 20:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2024 20:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2024 20:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2024 20:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2024 20:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Nov-2024 10:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Nov-2024 10:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Nov-2024 10:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Nov-2024 10:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Nov-2024 10:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Nov-2024 10:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Nov-2024 10:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Nov-2024 10:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Nov-2024 10:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Nov-2024 10:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Nov-2024 10:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Nov-2024 10:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Nov-2024 10:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Nov-2024 10:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Nov-2024 10:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Nov-2024 10:18:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Nov-2024 10:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Nov-2024 10:19:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Nov-2024 10:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Nov-2024 10:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Nov-2024 10:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Nov-2024 10:19:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Nov-2024 10:19:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Nov-2024 10:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Nov-2024 10:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Nov-2024 10:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Nov-2024 10:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Nov-2024 10:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Nov-2024 10:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Nov-2024 10:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Nov-2024 10:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Nov-2024 10:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Nov-2024 10:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Nov-2024 10:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Nov-2024 10:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Nov-2024 10:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Nov-2024 10:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Nov-2024 10:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Nov-2024 10:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Nov-2024 10:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Nov-2024 11:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Nov-2024 11:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Nov-2024 11:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Nov-2024 11:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Nov-2024 11:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Nov-2024 11:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Nov-2024 11:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Nov-2024 11:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Nov-2024 11:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Nov-2024 11:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Nov-2024 11:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Nov-2024 11:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Nov-2024 11:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Nov-2024 11:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Nov-2024 11:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Nov-2024 11:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Nov-2024 11:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Nov-2024 11:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Nov-2024 11:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Nov-2024 11:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Nov-2024 11:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Nov-2024 11:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Nov-2024 11:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Nov-2024 11:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Nov-2024 11:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Nov-2024 11:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Nov-2024 11:34:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Nov-2024 11:34:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Nov-2024 11:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Nov-2024 11:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Nov-2024 11:34:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Nov-2024 11:34:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Nov-2024 11:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Nov-2024 11:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Nov-2024 11:34:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Nov-2024 11:34:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Nov-2024 11:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Nov-2024 11:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Nov-2024 11:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Nov-2024 11:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[16-Nov-2024 04:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[16-Nov-2024 04:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[16-Nov-2024 04:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[16-Nov-2024 04:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[16-Nov-2024 04:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[16-Nov-2024 04:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[16-Nov-2024 04:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[16-Nov-2024 04:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[16-Nov-2024 04:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[16-Nov-2024 04:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[16-Nov-2024 04:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[16-Nov-2024 04:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[16-Nov-2024 04:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[16-Nov-2024 04:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[16-Nov-2024 04:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[16-Nov-2024 04:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[16-Nov-2024 04:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Nov-2024 02:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Nov-2024 02:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Nov-2024 02:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Nov-2024 02:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Nov-2024 02:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Nov-2024 02:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Nov-2024 02:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Nov-2024 02:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Nov-2024 02:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Nov-2024 02:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Nov-2024 02:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Nov-2024 02:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Nov-2024 02:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Nov-2024 02:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Nov-2024 02:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Nov-2024 02:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Nov-2024 02:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Nov-2024 02:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Nov-2024 02:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Nov-2024 02:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Nov-2024 02:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Nov-2024 02:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[17-Nov-2024 02:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[17-Nov-2024 02:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Nov-2024 02:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Nov-2024 02:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[17-Nov-2024 02:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Nov-2024 02:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Nov-2024 02:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[17-Nov-2024 02:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Nov-2024 02:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Nov-2024 00:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Nov-2024 00:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Nov-2024 00:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Nov-2024 00:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Nov-2024 00:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Nov-2024 00:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Nov-2024 00:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Nov-2024 00:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Nov-2024 00:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Nov-2024 00:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Nov-2024 00:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Nov-2024 00:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Nov-2024 00:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Nov-2024 00:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Nov-2024 00:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Nov-2024 00:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Nov-2024 00:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Nov-2024 00:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Nov-2024 00:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Nov-2024 00:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Nov-2024 00:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Nov-2024 00:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Nov-2024 00:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Nov-2024 00:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Nov-2024 00:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Nov-2024 00:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Nov-2024 00:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Nov-2024 00:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Nov-2024 00:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Nov-2024 00:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Nov-2024 00:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Nov-2024 00:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Dec-2024 16:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Dec-2024 16:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Dec-2024 16:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Dec-2024 16:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Dec-2024 16:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Dec-2024 16:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Dec-2024 16:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Dec-2024 16:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Dec-2024 16:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Dec-2024 16:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Dec-2024 16:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Dec-2024 16:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Dec-2024 16:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Dec-2024 16:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Dec-2024 16:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Dec-2024 16:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Dec-2024 16:30:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Dec-2024 16:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Dec-2024 16:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Dec-2024 16:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Dec-2024 16:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Dec-2024 16:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Dec-2024 16:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Dec-2024 16:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Dec-2024 16:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Dec-2024 16:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Dec-2024 16:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Dec-2024 16:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Dec-2024 16:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Dec-2024 16:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Dec-2024 16:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Dec-2024 16:32:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Dec-2024 16:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Dec-2024 16:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Dec-2024 16:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Dec-2024 16:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Dec-2024 16:33:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Dec-2024 16:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Dec-2024 16:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Dec-2024 16:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Dec-2024 08:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Dec-2024 08:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Dec-2024 08:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Dec-2024 08:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Dec-2024 08:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Dec-2024 08:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Dec-2024 08:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Dec-2024 08:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Dec-2024 08:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Dec-2024 08:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Dec-2024 08:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Dec-2024 08:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Dec-2024 08:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Dec-2024 08:35:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Dec-2024 08:35:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Dec-2024 08:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Dec-2024 08:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Dec-2024 08:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Dec-2024 08:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Dec-2024 08:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Dec-2024 08:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Dec-2024 08:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Dec-2024 08:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Dec-2024 08:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Dec-2024 08:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Dec-2024 08:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Dec-2024 08:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Dec-2024 08:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Dec-2024 08:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Dec-2024 08:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Dec-2024 08:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Dec-2024 08:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Dec-2024 08:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Dec-2024 08:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Dec-2024 08:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Dec-2024 08:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Dec-2024 08:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Dec-2024 08:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Dec-2024 08:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Dec-2024 08:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[16-Jan-2025 07:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[16-Jan-2025 07:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[16-Jan-2025 07:47:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[16-Jan-2025 07:47:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[16-Jan-2025 07:47:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[16-Jan-2025 07:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[16-Jan-2025 07:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[16-Jan-2025 07:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[16-Jan-2025 07:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[16-Jan-2025 07:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[16-Jan-2025 07:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[16-Jan-2025 07:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[16-Jan-2025 07:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[16-Jan-2025 07:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[16-Jan-2025 07:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[16-Jan-2025 07:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[16-Jan-2025 07:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[16-Jan-2025 07:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[16-Jan-2025 07:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Feb-2025 02:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Feb-2025 02:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Feb-2025 02:11:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Feb-2025 02:11:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Feb-2025 02:11:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Feb-2025 02:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Feb-2025 02:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Feb-2025 02:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Feb-2025 02:11:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Feb-2025 02:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Feb-2025 02:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Feb-2025 02:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Feb-2025 02:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Feb-2025 02:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Feb-2025 02:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Feb-2025 02:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Feb-2025 02:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Feb-2025 02:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Feb-2025 02:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Feb-2025 02:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Feb-2025 02:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Feb-2025 02:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Feb-2025 02:11:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Feb-2025 02:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Feb-2025 02:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Feb-2025 02:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Feb-2025 02:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Feb-2025 02:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Feb-2025 02:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Feb-2025 02:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Feb-2025 02:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Feb-2025 02:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Feb-2025 02:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Feb-2025 02:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Feb-2025 02:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Feb-2025 02:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Feb-2025 02:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Feb-2025 02:35:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Feb-2025 02:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Feb-2025 02:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Feb-2025 02:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Feb-2025 02:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Feb-2025 02:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Feb-2025 02:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Feb-2025 02:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Feb-2025 02:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Feb-2025 02:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Feb-2025 02:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Feb-2025 02:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Feb-2025 02:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Feb-2025 02:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Feb-2025 02:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Feb-2025 02:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Feb-2025 06:15:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Feb-2025 06:15:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Feb-2025 06:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Feb-2025 06:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Feb-2025 06:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Feb-2025 06:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Feb-2025 06:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Feb-2025 06:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Feb-2025 06:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Feb-2025 06:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Feb-2025 06:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Feb-2025 06:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Feb-2025 06:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Feb-2025 06:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Feb-2025 06:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Feb-2025 06:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Feb-2025 06:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Feb-2025 06:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Feb-2025 06:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Feb-2025 06:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Feb-2025 06:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Feb-2025 06:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-Mar-2025 11:44:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-Mar-2025 11:44:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-Mar-2025 11:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-Mar-2025 11:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-Mar-2025 11:45:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-Mar-2025 11:46:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-Mar-2025 11:46:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-Mar-2025 11:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-Mar-2025 11:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-Mar-2025 11:46:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-Mar-2025 11:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-Mar-2025 11:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-Mar-2025 11:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-Mar-2025 11:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-Mar-2025 11:48:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-Mar-2025 11:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-Mar-2025 11:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-Mar-2025 11:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-Mar-2025 11:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-Mar-2025 11:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-Mar-2025 11:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-Mar-2025 11:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-Mar-2025 11:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-Mar-2025 11:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-Mar-2025 11:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-Mar-2025 11:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-Mar-2025 11:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-Mar-2025 11:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-Mar-2025 11:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-Mar-2025 11:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-Mar-2025 11:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-Mar-2025 11:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-Mar-2025 11:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-Mar-2025 11:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-Mar-2025 11:54:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-Mar-2025 11:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-Mar-2025 11:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-Mar-2025 11:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-Mar-2025 11:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-Mar-2025 11:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Mar-2025 10:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[29-Mar-2025 10:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[29-Mar-2025 10:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[29-Mar-2025 10:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[29-Mar-2025 10:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[29-Mar-2025 10:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[29-Mar-2025 10:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[29-Mar-2025 10:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[29-Mar-2025 10:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[29-Mar-2025 10:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[29-Mar-2025 10:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[29-Mar-2025 10:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[29-Mar-2025 10:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[29-Mar-2025 10:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[29-Mar-2025 10:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[29-Mar-2025 10:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[29-Mar-2025 10:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[29-Mar-2025 10:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[29-Mar-2025 10:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[29-Mar-2025 10:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[29-Mar-2025 10:05:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Mar-2025 10:05:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[29-Mar-2025 10:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[29-Mar-2025 10:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[29-Mar-2025 10:05:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[29-Mar-2025 10:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[29-Mar-2025 10:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[29-Mar-2025 10:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[29-Mar-2025 10:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[29-Mar-2025 10:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[29-Mar-2025 10:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[29-Mar-2025 10:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[29-Mar-2025 10:05:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[29-Mar-2025 10:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[29-Mar-2025 10:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[29-Mar-2025 10:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[29-Mar-2025 10:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[29-Mar-2025 10:05:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[29-Mar-2025 10:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[29-Mar-2025 10:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jun-2025 16:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Jun-2025 16:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Jun-2025 16:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Jun-2025 16:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Jun-2025 16:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Jun-2025 16:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Jun-2025 16:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Jun-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Jun-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Jun-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Jun-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Jun-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Jun-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Jun-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jun-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Jun-2025 16:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Jun-2025 16:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Jun-2025 16:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Jun-2025 16:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Jun-2025 16:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Jun-2025 16:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Jun-2025 16:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Jun-2025 16:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Jun-2025 16:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Jun-2025 16:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Jun-2025 16:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Jun-2025 16:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Jun-2025 16:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Jun-2025 16:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Jun-2025 16:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Jun-2025 16:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Jun-2025 16:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Jun-2025 16:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Jun-2025 16:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Jun-2025 16:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Jun-2025 16:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Jun-2025 16:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Jun-2025 16:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Jun-2025 16:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Jul-2025 14:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[01-Jul-2025 14:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[01-Jul-2025 14:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[01-Jul-2025 14:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[01-Jul-2025 14:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[01-Jul-2025 14:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[01-Jul-2025 14:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[01-Jul-2025 14:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[01-Jul-2025 14:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[01-Jul-2025 14:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[01-Jul-2025 14:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[01-Jul-2025 14:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[01-Jul-2025 14:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[01-Jul-2025 14:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[01-Jul-2025 14:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[01-Jul-2025 14:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Jul-2025 14:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[01-Jul-2025 14:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[01-Jul-2025 14:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[01-Jul-2025 14:22:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[01-Jul-2025 14:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[01-Jul-2025 14:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[01-Jul-2025 14:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[01-Jul-2025 14:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[01-Jul-2025 14:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[01-Jul-2025 14:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[01-Jul-2025 14:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[01-Jul-2025 14:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[01-Jul-2025 14:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[01-Jul-2025 14:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[01-Jul-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[01-Jul-2025 14:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[01-Jul-2025 14:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[01-Jul-2025 14:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[01-Jul-2025 14:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[01-Jul-2025 14:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[01-Jul-2025 14:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[01-Jul-2025 14:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[01-Jul-2025 14:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[01-Jul-2025 14:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Jul-2025 09:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Jul-2025 09:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Jul-2025 09:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Jul-2025 09:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Jul-2025 09:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Jul-2025 09:19:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Jul-2025 09:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Jul-2025 09:19:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Jul-2025 09:19:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Jul-2025 09:19:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Jul-2025 09:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Jul-2025 09:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Jul-2025 09:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Jul-2025 09:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Jul-2025 09:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Jul-2025 09:20:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Jul-2025 09:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Jul-2025 09:20:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Jul-2025 09:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Jul-2025 09:20:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Jul-2025 09:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Jul-2025 09:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Jul-2025 09:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Jul-2025 09:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Jul-2025 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Jul-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Jul-2025 09:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Jul-2025 09:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Jul-2025 09:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Jul-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Jul-2025 09:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Jul-2025 09:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Jul-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Jul-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Jul-2025 09:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Jul-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Jul-2025 09:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Jul-2025 09:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Jul-2025 09:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Jul-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 10:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Aug-2025 10:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Aug-2025 10:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Aug-2025 10:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Aug-2025 10:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Aug-2025 10:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Aug-2025 10:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Aug-2025 10:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Aug-2025 10:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Aug-2025 10:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Aug-2025 10:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Aug-2025 10:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Aug-2025 10:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Aug-2025 10:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Aug-2025 10:59:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Aug-2025 10:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Aug-2025 11:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Aug-2025 11:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Aug-2025 11:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Aug-2025 11:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Aug-2025 11:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Aug-2025 11:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Aug-2025 11:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Aug-2025 11:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Aug-2025 11:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Aug-2025 11:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Aug-2025 11:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Aug-2025 11:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Aug-2025 11:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 11:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 11:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Aug-2025 11:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Aug-2025 11:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Aug-2025 11:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Aug-2025 11:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Aug-2025 11:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Aug-2025 11:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Aug-2025 11:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Aug-2025 11:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Aug-2025 11:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Aug-2025 11:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Aug-2025 11:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Aug-2025 11:03:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Aug-2025 11:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Aug-2025 11:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Aug-2025 11:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Aug-2025 11:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Aug-2025 11:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Aug-2025 11:04:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Aug-2025 11:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Aug-2025 11:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Aug-2025 11:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Aug-2025 11:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Aug-2025 11:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Aug-2025 11:04:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Aug-2025 11:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Aug-2025 11:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Aug-2025 11:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Aug-2025 11:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Aug-2025 11:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Aug-2025 11:05:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Aug-2025 11:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Aug-2025 11:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Aug-2025 11:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Aug-2025 11:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Aug-2025 11:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Aug-2025 11:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Aug-2025 11:06:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Aug-2025 11:06:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Aug-2025 11:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Aug-2025 11:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Aug-2025 11:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Aug-2025 11:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Aug-2025 11:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Aug-2025 11:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Aug-2025 11:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Aug-2025 11:07:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Aug-2025 11:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Aug-2025 11:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[08-Aug-2025 11:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 05:12:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 05:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 05:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 05:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 05:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 05:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 05:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 05:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 05:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 05:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 05:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 05:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 05:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 05:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 05:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 05:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 05:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 05:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 05:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 05:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 05:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 05:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 05:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 05:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 05:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 05:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 05:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 05:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 05:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 05:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 05:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 05:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 05:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 05:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 05:14:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 05:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 05:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 05:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 05:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 05:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 05:15:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 05:15:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 05:15:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 05:15:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 05:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 05:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 05:15:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 05:15:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 05:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 05:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 05:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 05:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 05:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 05:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 05:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 05:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 05:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 05:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 05:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 05:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 05:16:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 05:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 05:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 05:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 05:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 05:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:59:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:59:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 06:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 06:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 06:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 06:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 06:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 06:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 06:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 06:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 06:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 06:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 06:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 06:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 06:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 06:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 06:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 06:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 06:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 06:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 06:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 06:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 06:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 06:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 06:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 06:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 06:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 06:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 06:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 06:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 06:02:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 06:02:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 06:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 06:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 06:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 06:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 06:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 06:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 06:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 06:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 06:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 06:03:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 06:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 06:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 06:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 06:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 06:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 06:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 06:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 06:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 06:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 06:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 06:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 06:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 06:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 06:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 06:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 06:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 06:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 06:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 06:04:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 06:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 06:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 06:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 06:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 06:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 06:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 06:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 06:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 06:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[20-Aug-2025 23:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[20-Aug-2025 23:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[20-Aug-2025 23:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[20-Aug-2025 23:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[20-Aug-2025 23:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[20-Aug-2025 23:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[20-Aug-2025 23:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[20-Aug-2025 23:23:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[20-Aug-2025 23:23:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[20-Aug-2025 23:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[20-Aug-2025 23:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[20-Aug-2025 23:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[20-Aug-2025 23:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[20-Aug-2025 23:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[20-Aug-2025 23:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[20-Aug-2025 23:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[20-Aug-2025 23:23:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[20-Aug-2025 23:23:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[20-Aug-2025 23:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[20-Aug-2025 23:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[20-Aug-2025 23:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[20-Aug-2025 23:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[20-Aug-2025 23:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[20-Aug-2025 23:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[20-Aug-2025 23:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[20-Aug-2025 23:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[20-Aug-2025 23:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[20-Aug-2025 23:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[20-Aug-2025 23:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[20-Aug-2025 23:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[20-Aug-2025 23:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[20-Aug-2025 23:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[20-Aug-2025 23:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[20-Aug-2025 23:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[20-Aug-2025 23:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[20-Aug-2025 23:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[20-Aug-2025 23:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Aug-2025 20:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[21-Aug-2025 20:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[21-Aug-2025 20:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[21-Aug-2025 20:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[21-Aug-2025 20:52:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[21-Aug-2025 20:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[21-Aug-2025 20:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[21-Aug-2025 20:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[21-Aug-2025 20:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[21-Aug-2025 20:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[21-Aug-2025 20:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[21-Aug-2025 20:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[21-Aug-2025 20:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[21-Aug-2025 20:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[21-Aug-2025 20:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[21-Aug-2025 20:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Aug-2025 20:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[21-Aug-2025 20:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[21-Aug-2025 20:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[21-Aug-2025 20:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[21-Aug-2025 20:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[21-Aug-2025 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[21-Aug-2025 20:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[21-Aug-2025 20:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[21-Aug-2025 20:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[21-Aug-2025 20:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[21-Aug-2025 20:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[21-Aug-2025 20:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[21-Aug-2025 20:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[21-Aug-2025 20:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[21-Aug-2025 20:57:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[21-Aug-2025 20:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[21-Aug-2025 20:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[21-Aug-2025 20:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[21-Aug-2025 20:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[21-Aug-2025 20:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[21-Aug-2025 20:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[21-Aug-2025 20:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[21-Aug-2025 20:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[21-Aug-2025 20:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 20:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 20:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 20:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 20:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 20:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 20:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 20:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 20:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 20:44:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 20:44:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 20:44:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 20:44:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 20:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 20:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 20:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 20:44:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 20:44:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 20:44:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 20:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 20:44:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 20:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 20:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 20:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 20:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 20:45:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 20:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 20:45:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 20:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 20:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 20:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 20:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 20:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 20:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 20:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 20:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 20:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 20:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 20:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 20:45:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 20:45:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 20:45:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 20:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 20:45:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 20:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 20:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 20:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 20:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 20:45:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 20:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 20:45:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 20:45:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 20:45:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 20:46:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 20:46:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 20:46:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 20:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 20:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 20:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 20:46:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 20:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 20:46:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 20:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 20:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 20:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 20:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 20:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 20:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 20:46:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 20:46:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 20:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 20:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 20:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 20:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 20:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 20:46:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 20:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 20:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 21:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 21:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 21:09:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 21:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 21:09:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 21:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 21:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 21:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 21:09:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 21:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 21:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 21:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 21:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 21:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 21:09:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 21:09:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 21:10:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 21:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 21:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 21:10:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 21:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 21:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 21:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 21:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 21:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 21:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 21:10:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 21:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 21:10:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 21:10:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 21:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 21:10:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 21:10:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 21:10:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 21:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 21:10:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 21:10:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 21:11:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 21:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 21:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 21:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 21:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 21:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 21:11:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 21:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 21:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 21:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 21:11:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 21:11:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 21:11:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 21:11:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 21:11:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 21:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 21:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 21:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 21:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 21:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 21:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 21:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 21:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 21:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 21:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 21:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 21:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 21:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 21:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 21:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 21:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 21:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 21:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 21:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 21:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 21:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 21:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 21:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 21:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 21:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 21:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 21:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 21:12:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[26-Aug-2025 06:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[26-Aug-2025 06:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[26-Aug-2025 06:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[26-Aug-2025 06:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[26-Aug-2025 06:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[26-Aug-2025 06:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[26-Aug-2025 06:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[26-Aug-2025 06:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[26-Aug-2025 06:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[26-Aug-2025 06:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[26-Aug-2025 06:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[26-Aug-2025 06:25:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[26-Aug-2025 06:25:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[26-Aug-2025 06:25:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[26-Aug-2025 06:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[26-Aug-2025 06:25:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[26-Aug-2025 06:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[26-Aug-2025 06:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[26-Aug-2025 06:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[26-Aug-2025 06:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[26-Aug-2025 06:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[26-Aug-2025 06:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[26-Aug-2025 06:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[26-Aug-2025 06:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[26-Aug-2025 06:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[26-Aug-2025 06:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[26-Aug-2025 06:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[26-Aug-2025 06:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[26-Aug-2025 06:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[26-Aug-2025 06:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[26-Aug-2025 06:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[26-Aug-2025 06:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[26-Aug-2025 06:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[26-Aug-2025 06:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[26-Aug-2025 06:35:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[26-Aug-2025 06:35:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[26-Aug-2025 06:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[26-Aug-2025 06:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[26-Aug-2025 06:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[26-Aug-2025 06:35:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[26-Aug-2025 06:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[26-Aug-2025 06:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[26-Aug-2025 06:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[26-Aug-2025 06:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[26-Aug-2025 06:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[26-Aug-2025 06:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[26-Aug-2025 06:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[26-Aug-2025 06:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[26-Aug-2025 06:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[26-Aug-2025 06:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[26-Aug-2025 06:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[26-Aug-2025 06:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[26-Aug-2025 06:35:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[26-Aug-2025 06:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[26-Aug-2025 06:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[26-Aug-2025 06:35:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[26-Aug-2025 06:35:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[26-Aug-2025 06:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[26-Aug-2025 06:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[26-Aug-2025 06:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[26-Aug-2025 06:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[26-Aug-2025 06:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[26-Aug-2025 06:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[26-Aug-2025 06:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[26-Aug-2025 06:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[27-Aug-2025 12:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[27-Aug-2025 12:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[27-Aug-2025 12:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[27-Aug-2025 12:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[27-Aug-2025 12:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[27-Aug-2025 13:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[27-Aug-2025 13:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[27-Aug-2025 13:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[27-Aug-2025 13:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[27-Aug-2025 13:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[27-Aug-2025 13:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[27-Aug-2025 13:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[27-Aug-2025 13:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[27-Aug-2025 13:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[27-Aug-2025 13:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[27-Aug-2025 13:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[27-Aug-2025 13:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[27-Aug-2025 13:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[27-Aug-2025 13:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[27-Aug-2025 13:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[27-Aug-2025 13:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[27-Aug-2025 13:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[27-Aug-2025 13:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[27-Aug-2025 13:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[27-Aug-2025 13:05:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[27-Aug-2025 13:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[27-Aug-2025 13:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[27-Aug-2025 13:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[27-Aug-2025 13:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[27-Aug-2025 13:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[27-Aug-2025 13:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[27-Aug-2025 13:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[27-Aug-2025 13:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[27-Aug-2025 13:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[27-Aug-2025 13:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[27-Aug-2025 13:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[27-Aug-2025 13:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[27-Aug-2025 13:08:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[27-Aug-2025 13:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[27-Aug-2025 13:09:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[27-Aug-2025 15:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[27-Aug-2025 15:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[27-Aug-2025 15:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[27-Aug-2025 15:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[27-Aug-2025 15:06:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[27-Aug-2025 15:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[27-Aug-2025 15:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[27-Aug-2025 15:07:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[27-Aug-2025 15:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[27-Aug-2025 15:07:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[27-Aug-2025 15:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[27-Aug-2025 15:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[27-Aug-2025 15:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[27-Aug-2025 15:09:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[27-Aug-2025 15:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[27-Aug-2025 15:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[27-Aug-2025 15:10:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[27-Aug-2025 15:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[27-Aug-2025 15:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[27-Aug-2025 15:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[27-Aug-2025 15:10:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[27-Aug-2025 15:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[27-Aug-2025 15:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[27-Aug-2025 15:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[27-Aug-2025 15:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[27-Aug-2025 15:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[27-Aug-2025 15:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[27-Aug-2025 15:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[27-Aug-2025 15:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[27-Aug-2025 15:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[27-Aug-2025 15:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[27-Aug-2025 15:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[27-Aug-2025 15:15:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[27-Aug-2025 15:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[27-Aug-2025 15:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[27-Aug-2025 15:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[27-Aug-2025 15:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[27-Aug-2025 15:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[27-Aug-2025 15:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[27-Aug-2025 15:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Sep-2025 00:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Sep-2025 00:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Sep-2025 00:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Sep-2025 00:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Sep-2025 00:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Sep-2025 00:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Sep-2025 00:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Sep-2025 00:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Sep-2025 00:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Sep-2025 00:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Sep-2025 00:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Sep-2025 00:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Sep-2025 00:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Sep-2025 00:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Sep-2025 00:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Sep-2025 00:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Sep-2025 00:42:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Sep-2025 00:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Sep-2025 00:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Sep-2025 00:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Sep-2025 00:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Sep-2025 00:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Sep-2025 00:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Sep-2025 00:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Sep-2025 00:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Sep-2025 00:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Sep-2025 00:42:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Sep-2025 00:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Sep-2025 00:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Sep-2025 00:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Sep-2025 00:42:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Sep-2025 00:42:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Sep-2025 00:42:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Sep-2025 00:42:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Sep-2025 00:42:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Sep-2025 00:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Sep-2025 00:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Sep-2025 00:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Sep-2025 00:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Sep-2025 00:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Sep-2025 00:59:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Sep-2025 00:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Sep-2025 01:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Sep-2025 01:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Sep-2025 01:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Sep-2025 01:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Sep-2025 01:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Sep-2025 01:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Sep-2025 01:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Sep-2025 01:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Sep-2025 01:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Sep-2025 01:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Sep-2025 01:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Sep-2025 01:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Sep-2025 01:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Sep-2025 01:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Sep-2025 01:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Sep-2025 01:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Sep-2025 01:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Sep-2025 01:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Sep-2025 01:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Sep-2025 01:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Sep-2025 01:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Sep-2025 01:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Sep-2025 01:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Sep-2025 01:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Sep-2025 01:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Sep-2025 01:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Sep-2025 01:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Sep-2025 01:55:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Sep-2025 01:55:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Sep-2025 01:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Sep-2025 01:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Sep-2025 01:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Sep-2025 01:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Sep-2025 01:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Sep-2025 01:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Sep-2025 01:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Sep-2025 01:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Sep-2025 01:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Sep-2025 01:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Sep-2025 01:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Sep-2025 01:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Sep-2025 01:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Sep-2025 01:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Sep-2025 01:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Sep-2025 01:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Sep-2025 01:55:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Sep-2025 01:55:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Sep-2025 01:55:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Sep-2025 02:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Sep-2025 02:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Sep-2025 02:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Sep-2025 02:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Sep-2025 02:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Sep-2025 02:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Sep-2025 02:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Sep-2025 02:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Sep-2025 02:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Sep-2025 02:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Sep-2025 02:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Sep-2025 02:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Sep-2025 02:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Sep-2025 02:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Sep-2025 02:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Sep-2025 02:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Sep-2025 02:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Sep-2025 02:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Sep-2025 02:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Sep-2025 02:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Sep-2025 02:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Sep-2025 02:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Sep-2025 02:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Sep-2025 02:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Sep-2025 02:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[09-Sep-2025 17:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[09-Sep-2025 17:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[09-Sep-2025 17:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[09-Sep-2025 17:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[09-Sep-2025 17:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[09-Sep-2025 17:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[09-Sep-2025 17:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[09-Sep-2025 17:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[09-Sep-2025 17:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[09-Sep-2025 17:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[09-Sep-2025 17:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[09-Sep-2025 17:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[09-Sep-2025 17:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[09-Sep-2025 17:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[09-Sep-2025 17:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[09-Sep-2025 17:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[09-Sep-2025 17:44:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[09-Sep-2025 17:44:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[09-Sep-2025 17:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[09-Sep-2025 17:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[09-Sep-2025 17:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[09-Sep-2025 17:44:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[09-Sep-2025 17:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[09-Sep-2025 17:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[09-Sep-2025 17:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[09-Sep-2025 17:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[09-Sep-2025 17:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[09-Sep-2025 17:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[09-Sep-2025 17:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[09-Sep-2025 17:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[09-Sep-2025 17:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[09-Sep-2025 17:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[09-Sep-2025 17:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[09-Sep-2025 17:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[09-Sep-2025 17:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[09-Sep-2025 17:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[09-Sep-2025 17:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[09-Sep-2025 17:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[09-Sep-2025 17:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[09-Sep-2025 17:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[09-Sep-2025 17:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[09-Sep-2025 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[09-Sep-2025 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[09-Sep-2025 17:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[09-Sep-2025 17:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[09-Sep-2025 17:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[09-Sep-2025 17:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[09-Sep-2025 17:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[09-Sep-2025 17:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[09-Sep-2025 17:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[09-Sep-2025 17:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[09-Sep-2025 17:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[09-Sep-2025 17:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[09-Sep-2025 17:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[09-Sep-2025 17:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[09-Sep-2025 17:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[09-Sep-2025 17:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[09-Sep-2025 17:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[09-Sep-2025 17:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[09-Sep-2025 17:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[09-Sep-2025 17:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[09-Sep-2025 17:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[09-Sep-2025 17:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[09-Sep-2025 17:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[09-Sep-2025 17:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[09-Sep-2025 17:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[09-Sep-2025 17:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[09-Sep-2025 17:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[09-Sep-2025 17:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[09-Sep-2025 17:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Sep-2025 15:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Sep-2025 15:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Sep-2025 15:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Sep-2025 15:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Sep-2025 15:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Sep-2025 15:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Sep-2025 15:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Sep-2025 15:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Sep-2025 15:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Sep-2025 15:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Sep-2025 15:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Sep-2025 15:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Sep-2025 15:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Sep-2025 15:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Sep-2025 15:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Sep-2025 15:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Sep-2025 15:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Sep-2025 15:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Sep-2025 15:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Sep-2025 15:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Sep-2025 15:16:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Sep-2025 15:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Sep-2025 15:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Sep-2025 15:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Sep-2025 15:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Sep-2025 15:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Sep-2025 15:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Sep-2025 15:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Sep-2025 15:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Sep-2025 15:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Sep-2025 15:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Sep-2025 15:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Sep-2025 15:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Sep-2025 15:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Sep-2025 15:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Sep-2025 15:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Sep-2025 15:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Sep-2025 15:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Sep-2025 15:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Sep-2025 15:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Sep-2025 15:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Sep-2025 15:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Sep-2025 15:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Sep-2025 15:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Sep-2025 15:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Sep-2025 15:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Sep-2025 15:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Sep-2025 17:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Sep-2025 17:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Sep-2025 17:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Sep-2025 17:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Sep-2025 17:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Sep-2025 17:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Sep-2025 17:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Sep-2025 17:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Sep-2025 17:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Sep-2025 17:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Sep-2025 17:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Sep-2025 17:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Sep-2025 17:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Sep-2025 17:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Sep-2025 17:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Sep-2025 17:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Sep-2025 17:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Sep-2025 17:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Sep-2025 17:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Sep-2025 17:03:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Sep-2025 17:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Sep-2025 17:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Sep-2025 17:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Sep-2025 17:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Sep-2025 17:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Sep-2025 17:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Sep-2025 17:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Sep-2025 17:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Sep-2025 17:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Sep-2025 17:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Sep-2025 17:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Sep-2025 17:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Sep-2025 17:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Sep-2025 17:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Sep-2025 17:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Sep-2025 17:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Sep-2025 17:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Sep-2025 17:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Sep-2025 17:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Sep-2025 17:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Sep-2025 17:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Sep-2025 17:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Sep-2025 17:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Sep-2025 17:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Sep-2025 17:14:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Sep-2025 17:14:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Sep-2025 17:14:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Sep-2025 17:14:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Sep-2025 17:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Sep-2025 17:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Sep-2025 17:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Sep-2025 17:14:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Sep-2025 17:14:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Sep-2025 17:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Sep-2025 17:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Sep-2025 17:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Sep-2025 17:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Sep-2025 17:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Sep-2025 17:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Sep-2025 17:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Sep-2025 17:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Sep-2025 17:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Sep-2025 17:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Sep-2025 17:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2025 06:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2025 06:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2025 06:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2025 06:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2025 06:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2025 06:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2025 06:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2025 06:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2025 06:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2025 06:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2025 06:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2025 06:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2025 06:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2025 06:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2025 06:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2025 06:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2025 06:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2025 06:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2025 06:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2025 06:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2025 06:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2025 06:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2025 06:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2025 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2025 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2025 06:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2025 06:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2025 06:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2025 06:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2025 06:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2025 06:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2025 06:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2025 06:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2025 06:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2025 06:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2025 06:46:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2025 06:46:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2025 06:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2025 06:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2025 06:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2025 06:46:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2025 06:46:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2025 06:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2025 06:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2025 06:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2025 06:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2025 06:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2025 06:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2025 06:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2025 06:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2025 06:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2025 06:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2025 06:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2025 06:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2025 06:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2025 06:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2025 06:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2025 06:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2025 06:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2025 06:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2025 06:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2025 06:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2025 06:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2025 06:46:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2025 06:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2025 06:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2025 06:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Sep-2025 12:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Sep-2025 12:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Sep-2025 12:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Sep-2025 12:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Sep-2025 12:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Sep-2025 12:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Sep-2025 12:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Sep-2025 12:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Sep-2025 12:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Sep-2025 12:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Sep-2025 12:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Sep-2025 12:42:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Sep-2025 12:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Sep-2025 12:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Sep-2025 12:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Sep-2025 12:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Sep-2025 12:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Sep-2025 12:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Sep-2025 12:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Sep-2025 12:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Sep-2025 12:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Sep-2025 12:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Sep-2025 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Sep-2025 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Sep-2025 12:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Sep-2025 12:42:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Sep-2025 12:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Sep-2025 12:42:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Sep-2025 12:42:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Sep-2025 12:42:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Sep-2025 12:42:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Sep-2025 12:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Sep-2025 12:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Sep-2025 12:42:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Sep-2025 12:42:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Sep-2025 12:42:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Sep-2025 12:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Sep-2025 12:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Sep-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Sep-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Sep-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Sep-2025 12:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Sep-2025 12:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Sep-2025 12:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Sep-2025 12:56:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Sep-2025 12:56:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Sep-2025 12:57:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Sep-2025 12:57:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Sep-2025 12:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Sep-2025 12:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Sep-2025 12:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Sep-2025 12:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Sep-2025 12:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Sep-2025 12:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Sep-2025 12:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Sep-2025 12:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Sep-2025 12:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Sep-2025 12:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Sep-2025 12:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Sep-2025 12:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Sep-2025 12:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Sep-2025 12:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Sep-2025 12:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Sep-2025 12:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Sep-2025 12:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Sep-2025 12:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Sep-2025 12:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Sep-2025 12:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Sep-2025 12:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Sep-2025 12:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Sep-2025 12:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Sep-2025 12:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Sep-2025 12:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[25-Sep-2025 21:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[25-Sep-2025 21:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[25-Sep-2025 21:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[25-Sep-2025 21:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[25-Sep-2025 21:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[25-Sep-2025 21:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[25-Sep-2025 21:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[25-Sep-2025 21:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[25-Sep-2025 21:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[25-Sep-2025 21:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[25-Sep-2025 21:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[25-Sep-2025 21:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[25-Sep-2025 21:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[25-Sep-2025 21:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[25-Sep-2025 21:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[25-Sep-2025 21:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[25-Sep-2025 21:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[25-Sep-2025 21:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[25-Sep-2025 21:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[25-Sep-2025 21:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[25-Sep-2025 21:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[25-Sep-2025 21:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[25-Sep-2025 21:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[25-Sep-2025 21:59:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[25-Sep-2025 21:59:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[25-Sep-2025 21:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[25-Sep-2025 21:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[25-Sep-2025 21:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[25-Sep-2025 21:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[25-Sep-2025 21:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[25-Sep-2025 21:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[25-Sep-2025 21:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[25-Sep-2025 21:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[25-Sep-2025 21:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[25-Sep-2025 21:59:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[25-Sep-2025 21:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[25-Sep-2025 21:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[25-Sep-2025 21:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[25-Sep-2025 21:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[25-Sep-2025 21:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[25-Sep-2025 22:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[25-Sep-2025 22:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[25-Sep-2025 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[25-Sep-2025 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[25-Sep-2025 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[25-Sep-2025 22:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[25-Sep-2025 22:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[25-Sep-2025 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[25-Sep-2025 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[25-Sep-2025 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[25-Sep-2025 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[25-Sep-2025 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[25-Sep-2025 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[25-Sep-2025 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[25-Sep-2025 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[25-Sep-2025 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[25-Sep-2025 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[25-Sep-2025 22:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[25-Sep-2025 22:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[25-Sep-2025 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[25-Sep-2025 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[25-Sep-2025 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[25-Sep-2025 22:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[25-Sep-2025 22:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[25-Sep-2025 22:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[25-Sep-2025 22:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[25-Sep-2025 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[25-Sep-2025 22:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[25-Sep-2025 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[25-Sep-2025 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[25-Sep-2025 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[25-Sep-2025 22:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[25-Sep-2025 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[25-Sep-2025 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[25-Sep-2025 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[25-Sep-2025 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[25-Sep-2025 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Oct-2025 10:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Oct-2025 10:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Oct-2025 10:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Oct-2025 10:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Oct-2025 10:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Oct-2025 10:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Oct-2025 10:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Oct-2025 10:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Oct-2025 10:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Oct-2025 10:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Oct-2025 10:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Oct-2025 10:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Oct-2025 10:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Oct-2025 10:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Oct-2025 10:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Oct-2025 10:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Oct-2025 10:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Oct-2025 10:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Oct-2025 10:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Oct-2025 10:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Oct-2025 10:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Oct-2025 10:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Oct-2025 10:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Oct-2025 10:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Oct-2025 10:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Oct-2025 10:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Oct-2025 10:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Oct-2025 10:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Oct-2025 10:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Oct-2025 10:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Oct-2025 10:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Oct-2025 10:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Oct-2025 10:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Oct-2025 10:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Oct-2025 02:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Oct-2025 03:09:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Oct-2025 03:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Oct-2025 03:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Oct-2025 03:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Oct-2025 03:48:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Oct-2025 03:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Oct-2025 04:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Oct-2025 04:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Oct-2025 04:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Oct-2025 04:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[07-Oct-2025 04:37:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Oct-2025 04:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Oct-2025 04:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Oct-2025 04:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Oct-2025 05:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Nov-2025 08:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Nov-2025 08:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Nov-2025 08:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Nov-2025 08:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Nov-2025 08:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Nov-2025 08:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Nov-2025 08:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Nov-2025 08:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Nov-2025 08:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Nov-2025 08:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Nov-2025 08:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Nov-2025 08:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Nov-2025 08:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Nov-2025 08:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Nov-2025 08:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Nov-2025 08:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Nov-2025 08:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Nov-2025 08:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Nov-2025 08:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Nov-2025 08:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Nov-2025 08:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Nov-2025 08:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Nov-2025 08:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Nov-2025 08:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Nov-2025 08:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Nov-2025 08:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Nov-2025 08:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Nov-2025 08:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Nov-2025 08:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Nov-2025 08:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Nov-2025 08:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Nov-2025 08:39:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Nov-2025 08:39:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Nov-2025 08:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Nov-2025 08:39:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Nov-2025 08:39:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Nov-2025 08:39:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Nov-2025 08:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Nov-2025 08:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Nov-2025 08:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Nov-2025 08:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Nov-2025 08:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Nov-2025 08:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Nov-2025 08:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Nov-2025 08:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Nov-2025 08:39:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Nov-2025 08:39:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Nov-2025 08:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Nov-2025 08:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Nov-2025 08:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Nov-2025 08:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Nov-2025 08:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Nov-2025 08:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Nov-2025 08:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Nov-2025 08:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Nov-2025 08:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Nov-2025 08:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Nov-2025 08:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Nov-2025 08:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Nov-2025 08:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Nov-2025 08:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Nov-2025 08:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Nov-2025 08:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Dec-2025 18:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Dec-2025 18:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Dec-2025 18:47:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Dec-2025 18:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Dec-2025 18:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Dec-2025 18:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Dec-2025 18:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Dec-2025 18:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Dec-2025 18:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Dec-2025 18:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Dec-2025 18:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Dec-2025 18:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Dec-2025 18:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Dec-2025 18:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Dec-2025 18:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Dec-2025 18:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Dec-2025 18:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Dec-2025 18:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Dec-2025 18:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Dec-2025 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Dec-2025 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Dec-2025 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Dec-2025 18:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Dec-2025 18:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Dec-2025 18:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Dec-2025 18:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Dec-2025 18:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Dec-2025 18:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Dec-2025 18:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Dec-2025 18:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Dec-2025 18:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Dec-2025 18:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Dec-2025 18:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Dec-2025 18:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Dec-2025 18:47:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Dec-2025 18:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Dec-2025 18:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Dec-2025 18:47:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Dec-2025 18:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Dec-2025 18:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Dec-2025 18:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Dec-2025 18:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Dec-2025 18:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Dec-2025 18:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Dec-2025 18:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Dec-2025 18:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Dec-2025 18:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Dec-2025 18:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Dec-2025 18:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Dec-2025 18:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Dec-2025 18:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Dec-2025 18:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Dec-2025 18:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Dec-2025 18:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Dec-2025 18:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Dec-2025 18:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Dec-2025 18:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Dec-2025 18:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Dec-2025 18:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Dec-2025 18:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Dec-2025 18:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Dec-2025 18:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Dec-2025 18:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Dec-2025 18:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Dec-2025 18:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Dec-2025 18:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Dec-2025 18:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Dec-2025 18:58:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Dec-2025 18:58:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Dec-2025 18:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Dec-2025 18:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Dec-2025 18:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Dec-2025 18:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Dec-2025 18:58:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Dec-2025 18:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Dec-2025 18:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Dec-2025 18:58:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[23-Dec-2025 11:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[23-Dec-2025 11:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[23-Dec-2025 11:43:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[23-Dec-2025 11:43:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[23-Dec-2025 11:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[23-Dec-2025 11:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[23-Dec-2025 11:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[23-Dec-2025 11:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[23-Dec-2025 11:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[23-Dec-2025 11:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[23-Dec-2025 11:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[23-Dec-2025 11:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[23-Dec-2025 11:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[23-Dec-2025 11:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[23-Dec-2025 11:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[23-Dec-2025 11:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[23-Dec-2025 11:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[23-Dec-2025 11:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[23-Dec-2025 11:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[23-Dec-2025 11:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[23-Dec-2025 11:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[23-Dec-2025 11:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[23-Dec-2025 11:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[23-Dec-2025 11:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[23-Dec-2025 11:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[23-Dec-2025 11:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[23-Dec-2025 11:44:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[23-Dec-2025 11:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[23-Dec-2025 11:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[23-Dec-2025 11:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[23-Dec-2025 11:44:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[23-Dec-2025 11:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[23-Dec-2025 11:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[23-Dec-2025 11:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[23-Dec-2025 11:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[23-Dec-2025 11:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[23-Dec-2025 11:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[23-Dec-2025 11:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[23-Dec-2025 11:44:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[23-Dec-2025 11:44:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[23-Dec-2025 11:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[23-Dec-2025 11:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[23-Dec-2025 11:44:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[23-Dec-2025 11:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[23-Dec-2025 11:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[23-Dec-2025 11:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[23-Dec-2025 12:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[23-Dec-2025 12:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[23-Dec-2025 12:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[23-Dec-2025 12:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[23-Dec-2025 12:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[23-Dec-2025 12:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[23-Dec-2025 12:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[23-Dec-2025 12:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[23-Dec-2025 12:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[23-Dec-2025 12:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[23-Dec-2025 12:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[23-Dec-2025 12:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[23-Dec-2025 12:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[23-Dec-2025 12:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[23-Dec-2025 12:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[23-Dec-2025 12:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[23-Dec-2025 12:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[23-Dec-2025 12:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[23-Dec-2025 12:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[23-Dec-2025 12:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[23-Dec-2025 12:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[23-Dec-2025 12:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[23-Dec-2025 12:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[23-Dec-2025 12:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[23-Dec-2025 12:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[23-Dec-2025 12:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[23-Dec-2025 12:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[23-Dec-2025 12:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[23-Dec-2025 12:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[23-Dec-2025 12:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[23-Dec-2025 12:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[23-Dec-2025 12:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[23-Dec-2025 12:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[23-Dec-2025 12:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[23-Dec-2025 12:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[23-Dec-2025 12:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[23-Dec-2025 12:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[23-Dec-2025 12:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[23-Dec-2025 12:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[23-Dec-2025 12:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Dec-2025 14:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[24-Dec-2025 14:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[24-Dec-2025 14:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[24-Dec-2025 14:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Dec-2025 14:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Dec-2025 14:57:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Dec-2025 14:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Dec-2025 14:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Dec-2025 14:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Dec-2025 14:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Dec-2025 14:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Dec-2025 14:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Dec-2025 14:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Dec-2025 14:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Dec-2025 14:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[24-Dec-2025 14:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[24-Dec-2025 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[24-Dec-2025 14:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Dec-2025 14:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Dec-2025 14:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Dec-2025 14:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Dec-2025 14:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Dec-2025 14:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Dec-2025 14:58:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Dec-2025 14:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Dec-2025 14:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Dec-2025 14:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Dec-2025 14:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Dec-2025 14:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Dec-2025 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Dec-2025 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Dec-2025 14:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Dec-2025 14:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Dec-2025 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Dec-2025 14:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Dec-2025 14:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Dec-2025 14:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Dec-2025 14:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Dec-2025 14:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Dec-2025 14:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Dec-2025 14:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Dec-2025 14:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Dec-2025 14:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Dec-2025 15:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[24-Dec-2025 15:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[24-Dec-2025 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[24-Dec-2025 15:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Dec-2025 15:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Dec-2025 15:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Dec-2025 15:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Dec-2025 15:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Dec-2025 15:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Dec-2025 15:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Dec-2025 15:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Dec-2025 15:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Dec-2025 15:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Dec-2025 15:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Dec-2025 15:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[24-Dec-2025 15:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[24-Dec-2025 15:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[24-Dec-2025 15:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Dec-2025 15:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Dec-2025 15:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Dec-2025 15:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Dec-2025 15:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Dec-2025 15:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Dec-2025 15:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Dec-2025 15:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Dec-2025 15:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Dec-2025 15:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Dec-2025 15:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Dec-2025 15:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Dec-2025 15:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Dec-2025 15:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Dec-2025 15:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Dec-2025 15:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Dec-2025 15:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Dec-2025 15:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Dec-2025 15:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Dec-2025 15:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Dec-2025 15:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Dec-2025 15:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Dec-2025 15:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Dec-2025 15:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Dec-2025 15:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Dec-2025 15:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Jan-2026 10:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[04-Jan-2026 10:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[04-Jan-2026 10:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[04-Jan-2026 10:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Jan-2026 10:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Jan-2026 10:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Jan-2026 10:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Jan-2026 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Jan-2026 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Jan-2026 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Jan-2026 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Jan-2026 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Jan-2026 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Jan-2026 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Jan-2026 10:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Jan-2026 10:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Jan-2026 10:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Jan-2026 10:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Jan-2026 10:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Jan-2026 10:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Jan-2026 10:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Jan-2026 10:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[04-Jan-2026 10:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[04-Jan-2026 10:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[04-Jan-2026 10:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Jan-2026 10:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Jan-2026 10:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Jan-2026 10:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Jan-2026 10:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Jan-2026 10:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Jan-2026 10:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Jan-2026 10:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Jan-2026 10:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Jan-2026 10:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Jan-2026 10:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Jan-2026 10:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Jan-2026 10:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Jan-2026 10:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Jan-2026 10:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Jan-2026 10:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Jan-2026 10:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Jan-2026 10:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Jan-2026 10:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Jan-2026 10:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[05-Jan-2026 18:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[05-Jan-2026 18:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[05-Jan-2026 18:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[05-Jan-2026 18:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[05-Jan-2026 18:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[05-Jan-2026 18:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[05-Jan-2026 18:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[05-Jan-2026 18:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[05-Jan-2026 18:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[05-Jan-2026 18:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[05-Jan-2026 18:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[05-Jan-2026 18:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[05-Jan-2026 18:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[05-Jan-2026 18:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[05-Jan-2026 18:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[05-Jan-2026 18:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[05-Jan-2026 18:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[05-Jan-2026 18:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[05-Jan-2026 18:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[05-Jan-2026 18:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[05-Jan-2026 18:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[05-Jan-2026 18:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[05-Jan-2026 18:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[05-Jan-2026 18:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[05-Jan-2026 18:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[05-Jan-2026 18:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[05-Jan-2026 18:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[05-Jan-2026 18:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[05-Jan-2026 18:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[05-Jan-2026 18:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[05-Jan-2026 18:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[05-Jan-2026 18:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[05-Jan-2026 18:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[05-Jan-2026 18:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[05-Jan-2026 18:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[05-Jan-2026 18:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[05-Jan-2026 18:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[05-Jan-2026 18:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[05-Jan-2026 18:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[05-Jan-2026 18:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[05-Jan-2026 18:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[05-Jan-2026 18:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[05-Jan-2026 18:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[06-Jan-2026 01:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[06-Jan-2026 01:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[06-Jan-2026 01:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Jan-2026 01:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Jan-2026 01:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Jan-2026 01:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Jan-2026 01:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Jan-2026 01:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Jan-2026 01:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Jan-2026 01:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Jan-2026 01:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Jan-2026 01:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Jan-2026 01:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Jan-2026 01:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Jan-2026 01:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Jan-2026 01:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Jan-2026 01:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Jan-2026 01:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Jan-2026 01:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Jan-2026 01:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Jan-2026 01:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Jan-2026 01:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Jan-2026 01:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Jan-2026 01:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Jan-2026 01:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Jan-2026 01:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Jan-2026 01:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Jan-2026 01:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Jan-2026 01:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Jan-2026 01:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Jan-2026 01:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Jan-2026 01:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Jan-2026 01:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Jan-2026 01:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Jan-2026 01:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Jan-2026 01:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[06-Jan-2026 01:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[06-Jan-2026 01:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[06-Jan-2026 01:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Jan-2026 01:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Jan-2026 01:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Jan-2026 01:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Jan-2026 01:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Jan-2026 01:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Jan-2026 01:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Jan-2026 01:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Jan-2026 01:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Jan-2026 01:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Jan-2026 01:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Jan-2026 01:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Jan-2026 01:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Jan-2026 01:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Jan-2026 01:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Jan-2026 01:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Jan-2026 01:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Jan-2026 01:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Jan-2026 01:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Jan-2026 01:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Jan-2026 01:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Jan-2026 01:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Jan-2026 01:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Jan-2026 01:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Jan-2026 01:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Jan-2026 01:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Jan-2026 01:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Jan-2026 01:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Jan-2026 01:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Jan-2026 01:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Jan-2026 01:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Jan-2026 01:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Jan-2026 01:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Jan-2026 01:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Jan-2026 01:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Jan-2026 01:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Jan-2026 01:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Jan-2026 01:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Jan-2026 01:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Jan-2026 04:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[07-Jan-2026 04:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[07-Jan-2026 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[07-Jan-2026 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Jan-2026 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[07-Jan-2026 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[07-Jan-2026 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[07-Jan-2026 04:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[07-Jan-2026 04:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Jan-2026 04:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[07-Jan-2026 04:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Jan-2026 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[07-Jan-2026 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Jan-2026 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Jan-2026 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Jan-2026 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[07-Jan-2026 04:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[07-Jan-2026 04:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[07-Jan-2026 04:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[07-Jan-2026 04:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[07-Jan-2026 04:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Jan-2026 04:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 06:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-Jan-2026 06:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-Jan-2026 06:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-Jan-2026 06:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-Jan-2026 06:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-Jan-2026 06:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-Jan-2026 06:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-Jan-2026 06:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-Jan-2026 06:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-Jan-2026 06:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-Jan-2026 06:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-Jan-2026 06:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-Jan-2026 06:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 06:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-Jan-2026 06:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-Jan-2026 06:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-Jan-2026 06:29:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-Jan-2026 06:29:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-Jan-2026 06:29:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-Jan-2026 23:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[13-Jan-2026 23:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[13-Jan-2026 23:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[13-Jan-2026 23:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-Jan-2026 23:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-Jan-2026 23:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-Jan-2026 23:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-Jan-2026 23:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-Jan-2026 23:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-Jan-2026 23:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-Jan-2026 23:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-Jan-2026 23:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-Jan-2026 23:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-Jan-2026 23:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-Jan-2026 23:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-Jan-2026 23:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-Jan-2026 23:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-Jan-2026 23:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-Jan-2026 23:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-Jan-2026 23:58:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-Jan-2026 23:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-Jan-2026 23:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-Jan-2026 23:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-Jan-2026 23:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-Jan-2026 23:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-Jan-2026 23:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-Jan-2026 23:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-Jan-2026 23:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-Jan-2026 23:58:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-Jan-2026 23:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-Jan-2026 23:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 23:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-Jan-2026 23:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-Jan-2026 23:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-Jan-2026 23:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-Jan-2026 23:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-Jan-2026 23:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-Jan-2026 23:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-Jan-2026 23:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-Jan-2026 23:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-Jan-2026 23:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-Jan-2026 23:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-Jan-2026 23:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Jan-2026 00:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[14-Jan-2026 00:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[14-Jan-2026 00:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[14-Jan-2026 00:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Jan-2026 00:15:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Jan-2026 00:15:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Jan-2026 00:15:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Jan-2026 00:15:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Jan-2026 00:15:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Jan-2026 00:15:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Jan-2026 00:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Jan-2026 00:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Jan-2026 00:15:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Jan-2026 00:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Jan-2026 00:15:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Jan-2026 00:15:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Jan-2026 00:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Jan-2026 00:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Jan-2026 00:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Jan-2026 00:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Jan-2026 00:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Jan-2026 00:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Jan-2026 00:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Jan-2026 00:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Jan-2026 00:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Jan-2026 00:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Jan-2026 00:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Jan-2026 00:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Jan-2026 00:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Jan-2026 00:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Jan-2026 00:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Jan-2026 00:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Jan-2026 00:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Jan-2026 00:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Jan-2026 00:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Jan-2026 00:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Jan-2026 00:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Jan-2026 00:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Jan-2026 00:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Jan-2026 00:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Jan-2026 00:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Jan-2026 00:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Jan-2026 00:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[21-Feb-2026 02:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[21-Feb-2026 02:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[21-Feb-2026 02:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[21-Feb-2026 02:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[21-Feb-2026 02:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[21-Feb-2026 02:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[21-Feb-2026 02:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[21-Feb-2026 02:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[21-Feb-2026 02:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[21-Feb-2026 02:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[21-Feb-2026 02:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[21-Feb-2026 02:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[21-Feb-2026 02:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[21-Feb-2026 02:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[21-Feb-2026 02:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[21-Feb-2026 02:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[21-Feb-2026 02:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
PK \%P$ P$ 5 endpoints/class-wp-rest-block-patterns-controller.phpnu [ 'call-to-action',
'columns' => 'text',
'query' => 'posts',
);
/**
* Constructs the controller.
*
* @since 6.0.0
*/
public function __construct() {
$this->namespace = 'wp/v2';
$this->rest_base = 'block-patterns/patterns';
}
/**
* Registers the routes for the objects of the controller.
*
* @since 6.0.0
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Checks whether a given request has permission to read block patterns.
*
* @since 6.0.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_items_permissions_check( $request ) {
if ( current_user_can( 'edit_posts' ) ) {
return true;
}
foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
if ( current_user_can( $post_type->cap->edit_posts ) ) {
return true;
}
}
return new WP_Error(
'rest_cannot_view',
__( 'Sorry, you are not allowed to view the registered block patterns.' ),
array( 'status' => rest_authorization_required_code() )
);
}
/**
* Retrieves all block patterns.
*
* @since 6.0.0
* @since 6.2.0 Added migration for old core pattern categories to the new ones.
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
if ( ! $this->remote_patterns_loaded ) {
// Load block patterns from w.org.
_load_remote_block_patterns(); // Patterns with the `core` keyword.
_load_remote_featured_patterns(); // Patterns in the `featured` category.
_register_remote_theme_patterns(); // Patterns requested by current theme.
$this->remote_patterns_loaded = true;
}
$response = array();
$patterns = WP_Block_Patterns_Registry::get_instance()->get_all_registered();
foreach ( $patterns as $pattern ) {
$migrated_pattern = $this->migrate_pattern_categories( $pattern );
$prepared_pattern = $this->prepare_item_for_response( $migrated_pattern, $request );
$response[] = $this->prepare_response_for_collection( $prepared_pattern );
}
return rest_ensure_response( $response );
}
/**
* Migrates old core pattern categories to the new categories.
*
* Core pattern categories are revamped. Migration is needed to ensure
* backwards compatibility.
*
* @since 6.2.0
*
* @param array $pattern Raw pattern as registered, before applying any changes.
* @return array Migrated pattern.
*/
protected function migrate_pattern_categories( $pattern ) {
// No categories to migrate.
if (
! isset( $pattern['categories'] ) ||
! is_array( $pattern['categories'] )
) {
return $pattern;
}
foreach ( $pattern['categories'] as $index => $category ) {
// If the category exists as a key, then it needs migration.
if ( isset( static::$categories_migration[ $category ] ) ) {
$pattern['categories'][ $index ] = static::$categories_migration[ $category ];
}
}
return $pattern;
}
/**
* Prepare a raw block pattern before it gets output in a REST API response.
*
* @since 6.0.0
* @since 6.3.0 Added `source` property.
*
* @param array $item Raw pattern as registered, before any changes.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function prepare_item_for_response( $item, $request ) {
// Resolve pattern blocks so they don't need to be resolved client-side
// in the editor, improving performance.
$blocks = parse_blocks( $item['content'] );
$blocks = resolve_pattern_blocks( $blocks );
$item['content'] = serialize_blocks( $blocks );
$fields = $this->get_fields_for_response( $request );
$keys = array(
'name' => 'name',
'title' => 'title',
'content' => 'content',
'description' => 'description',
'viewportWidth' => 'viewport_width',
'inserter' => 'inserter',
'categories' => 'categories',
'keywords' => 'keywords',
'blockTypes' => 'block_types',
'postTypes' => 'post_types',
'templateTypes' => 'template_types',
'source' => 'source',
);
$data = array();
foreach ( $keys as $item_key => $rest_key ) {
if ( isset( $item[ $item_key ] ) && rest_is_field_included( $rest_key, $fields ) ) {
$data[ $rest_key ] = $item[ $item_key ];
}
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
return rest_ensure_response( $data );
}
/**
* Retrieves the block pattern schema, conforming to JSON Schema.
*
* @since 6.0.0
* @since 6.3.0 Added `source` property.
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'block-pattern',
'type' => 'object',
'properties' => array(
'name' => array(
'description' => __( 'The pattern name.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'title' => array(
'description' => __( 'The pattern title, in human readable format.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'content' => array(
'description' => __( 'The pattern content.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'description' => array(
'description' => __( 'The pattern detailed description.' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'viewport_width' => array(
'description' => __( 'The pattern viewport width for inserter preview.' ),
'type' => 'number',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'inserter' => array(
'description' => __( 'Determines whether the pattern is visible in inserter.' ),
'type' => 'boolean',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'categories' => array(
'description' => __( 'The pattern category slugs.' ),
'type' => 'array',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'keywords' => array(
'description' => __( 'The pattern keywords.' ),
'type' => 'array',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'block_types' => array(
'description' => __( 'Block types that the pattern is intended to be used with.' ),
'type' => 'array',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'post_types' => array(
'description' => __( 'An array of post types that the pattern is restricted to be used with.' ),
'type' => 'array',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'template_types' => array(
'description' => __( 'An array of template types where the pattern fits.' ),
'type' => 'array',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
),
'source' => array(
'description' => __( 'Where the pattern comes from e.g. core' ),
'type' => 'string',
'readonly' => true,
'context' => array( 'view', 'edit', 'embed' ),
'enum' => array(
'core',
'plugin',
'theme',
'pattern-directory/core',
'pattern-directory/theme',
'pattern-directory/featured',
),
),
),
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
}
PK \d} , endpoints/class-wp-rest-users-controller.phpnu [ true );
/**
* Constructor.
*
* @since 4.7.0
*/
public function __construct() {
$this->namespace = 'wp/v2';
$this->rest_base = 'users';
$this->meta = new WP_REST_User_Meta_Fields();
}
/**
* Registers the routes for users.
*
* @since 4.7.0
*
* @see register_rest_route()
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'create_item' ),
'permission_callback' => array( $this, 'create_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
),
'allow_batch' => $this->allow_batch,
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P[\d]+)',
array(
'args' => array(
'id' => array(
'description' => __( 'Unique identifier for the user.' ),
'type' => 'integer',
),
),
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this, 'update_item' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this, 'delete_item' ),
'permission_callback' => array( $this, 'delete_item_permissions_check' ),
'args' => array(
'force' => array(
'type' => 'boolean',
'default' => false,
'description' => __( 'Required to be true, as users do not support trashing.' ),
),
'reassign' => array(
'type' => 'integer',
'description' => __( 'Reassign the deleted user\'s posts and links to this user ID.' ),
'required' => true,
'sanitize_callback' => array( $this, 'check_reassign' ),
),
),
),
'allow_batch' => $this->allow_batch,
'schema' => array( $this, 'get_public_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/me',
array(
array(
'methods' => WP_REST_Server::READABLE,
'permission_callback' => '__return_true',
'callback' => array( $this, 'get_current_item' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this, 'update_current_item' ),
'permission_callback' => array( $this, 'update_current_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this, 'delete_current_item' ),
'permission_callback' => array( $this, 'delete_current_item_permissions_check' ),
'args' => array(
'force' => array(
'type' => 'boolean',
'default' => false,
'description' => __( 'Required to be true, as users do not support trashing.' ),
),
'reassign' => array(
'type' => 'integer',
'description' => __( 'Reassign the deleted user\'s posts and links to this user ID.' ),
'required' => true,
'sanitize_callback' => array( $this, 'check_reassign' ),
),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}
/**
* Checks for a valid value for the reassign parameter when deleting users.
*
* The value can be an integer, 'false', false, or ''.
*
* @since 4.7.0
*
* @param int|bool $value The value passed to the reassign parameter.
* @param WP_REST_Request $request Full details about the request.
* @param string $param The parameter that is being sanitized.
* @return int|bool|WP_Error
*/
public function check_reassign( $value, $request, $param ) {
if ( is_numeric( $value ) ) {
return $value;
}
if ( empty( $value ) || false === $value || 'false' === $value ) {
return false;
}
return new WP_Error(
'rest_invalid_param',
__( 'Invalid user parameter(s).' ),
array( 'status' => 400 )
);
}
/**
* Permissions check for getting all users.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, otherwise WP_Error object.
*/
public function get_items_permissions_check( $request ) {
// Check if roles is specified in GET request and if user can list users.
if ( ! empty( $request['roles'] ) && ! current_user_can( 'list_users' ) ) {
return new WP_Error(
'rest_user_cannot_view',
__( 'Sorry, you are not allowed to filter users by role.' ),
array( 'status' => rest_authorization_required_code() )
);
}
// Check if capabilities is specified in GET request and if user can list users.
if ( ! empty( $request['capabilities'] ) && ! current_user_can( 'list_users' ) ) {
return new WP_Error(
'rest_user_cannot_view',
__( 'Sorry, you are not allowed to filter users by capability.' ),
array( 'status' => rest_authorization_required_code() )
);
}
if ( 'edit' === $request['context'] && ! current_user_can( 'list_users' ) ) {
return new WP_Error(
'rest_forbidden_context',
__( 'Sorry, you are not allowed to edit users.' ),
array( 'status' => rest_authorization_required_code() )
);
}
if ( in_array( $request['orderby'], array( 'email', 'registered_date' ), true ) && ! current_user_can( 'list_users' ) ) {
return new WP_Error(
'rest_forbidden_orderby',
__( 'Sorry, you are not allowed to order users by this parameter.' ),
array( 'status' => rest_authorization_required_code() )
);
}
if ( 'authors' === $request['who'] ) {
$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );
foreach ( $types as $type ) {
if ( post_type_supports( $type->name, 'author' )
&& current_user_can( $type->cap->edit_posts ) ) {
return true;
}
}
return new WP_Error(
'rest_forbidden_who',
__( 'Sorry, you are not allowed to query users by this parameter.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Retrieves all users.
*
* @since 4.7.0
* @since 6.8.0 Added support for the search_columns query param.
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_items( $request ) {
// Retrieve the list of registered collection query parameters.
$registered = $this->get_collection_params();
/*
* This array defines mappings between public API query parameters whose
* values are accepted as-passed, and their internal WP_Query parameter
* name equivalents (some are the same). Only values which are also
* present in $registered will be set.
*/
$parameter_mappings = array(
'exclude' => 'exclude',
'include' => 'include',
'order' => 'order',
'per_page' => 'number',
'search' => 'search',
'roles' => 'role__in',
'capabilities' => 'capability__in',
'slug' => 'nicename__in',
);
$prepared_args = array();
/*
* For each known parameter which is both registered and present in the request,
* set the parameter's value on the query $prepared_args.
*/
foreach ( $parameter_mappings as $api_param => $wp_param ) {
if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
$prepared_args[ $wp_param ] = $request[ $api_param ];
}
}
if ( isset( $registered['offset'] ) && ! empty( $request['offset'] ) ) {
$prepared_args['offset'] = $request['offset'];
} else {
$prepared_args['offset'] = ( $request['page'] - 1 ) * $prepared_args['number'];
}
if ( isset( $registered['orderby'] ) ) {
$orderby_possibles = array(
'id' => 'ID',
'include' => 'include',
'name' => 'display_name',
'registered_date' => 'registered',
'slug' => 'user_nicename',
'include_slugs' => 'nicename__in',
'email' => 'user_email',
'url' => 'user_url',
);
$prepared_args['orderby'] = $orderby_possibles[ $request['orderby'] ];
}
if ( isset( $registered['who'] ) && ! empty( $request['who'] ) && 'authors' === $request['who'] ) {
$prepared_args['who'] = 'authors';
} elseif ( ! current_user_can( 'list_users' ) ) {
$prepared_args['has_published_posts'] = get_post_types( array( 'show_in_rest' => true ), 'names' );
}
if ( ! empty( $request['has_published_posts'] ) ) {
$prepared_args['has_published_posts'] = ( true === $request['has_published_posts'] )
? get_post_types( array( 'show_in_rest' => true ), 'names' )
: (array) $request['has_published_posts'];
}
if ( ! empty( $prepared_args['search'] ) ) {
if ( ! current_user_can( 'list_users' ) ) {
$prepared_args['search_columns'] = array( 'ID', 'user_login', 'user_nicename', 'display_name' );
}
$search_columns = $request->get_param( 'search_columns' );
$valid_columns = isset( $prepared_args['search_columns'] )
? $prepared_args['search_columns']
: array( 'ID', 'user_login', 'user_nicename', 'user_email', 'display_name' );
$search_columns_mapping = array(
'id' => 'ID',
'username' => 'user_login',
'slug' => 'user_nicename',
'email' => 'user_email',
'name' => 'display_name',
);
$search_columns = array_map(
static function ( $column ) use ( $search_columns_mapping ) {
return $search_columns_mapping[ $column ];
},
$search_columns
);
$search_columns = array_intersect( $search_columns, $valid_columns );
if ( ! empty( $search_columns ) ) {
$prepared_args['search_columns'] = $search_columns;
}
$prepared_args['search'] = '*' . $prepared_args['search'] . '*';
}
$is_head_request = $request->is_method( 'HEAD' );
if ( $is_head_request ) {
// Force the 'fields' argument. For HEAD requests, only user IDs are required.
$prepared_args['fields'] = 'id';
}
/**
* Filters WP_User_Query arguments when querying users via the REST API.
*
* @link https://developer.wordpress.org/reference/classes/wp_user_query/
*
* @since 4.7.0
*
* @param array $prepared_args Array of arguments for WP_User_Query.
* @param WP_REST_Request $request The REST API request.
*/
$prepared_args = apply_filters( 'rest_user_query', $prepared_args, $request );
$query = new WP_User_Query( $prepared_args );
if ( ! $is_head_request ) {
$users = array();
foreach ( $query->get_results() as $user ) {
if ( 'edit' === $request['context'] && ! current_user_can( 'edit_user', $user->ID ) ) {
continue;
}
$data = $this->prepare_item_for_response( $user, $request );
$users[] = $this->prepare_response_for_collection( $data );
}
}
$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $users );
// Store pagination values for headers then unset for count query.
$per_page = (int) $prepared_args['number'];
$page = (int) ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );
$prepared_args['fields'] = 'ID';
$total_users = $query->get_total();
if ( $total_users < 1 ) {
// Out-of-bounds, run the query without pagination/offset to get the total count.
unset( $prepared_args['number'], $prepared_args['offset'] );
$prepared_args['number'] = 1;
$prepared_args['fields'] = 'ID';
$count_query = new WP_User_Query( $prepared_args );
$total_users = $count_query->get_total();
}
$response->header( 'X-WP-Total', (int) $total_users );
$max_pages = (int) ceil( $total_users / $per_page );
$response->header( 'X-WP-TotalPages', $max_pages );
$base = add_query_arg( urlencode_deep( $request->get_query_params() ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );
if ( $page > 1 ) {
$prev_page = $page - 1;
if ( $prev_page > $max_pages ) {
$prev_page = $max_pages;
}
$prev_link = add_query_arg( 'page', $prev_page, $base );
$response->link_header( 'prev', $prev_link );
}
if ( $max_pages > $page ) {
$next_page = $page + 1;
$next_link = add_query_arg( 'page', $next_page, $base );
$response->link_header( 'next', $next_link );
}
return $response;
}
/**
* Get the user, if the ID is valid.
*
* @since 4.7.2
*
* @param int $id Supplied ID.
* @return WP_User|WP_Error True if ID is valid, WP_Error otherwise.
*/
protected function get_user( $id ) {
$error = new WP_Error(
'rest_user_invalid_id',
__( 'Invalid user ID.' ),
array( 'status' => 404 )
);
if ( (int) $id <= 0 ) {
return $error;
}
$user = get_userdata( (int) $id );
if ( empty( $user ) || ! $user->exists() ) {
return $error;
}
if ( is_multisite() && ! is_user_member_of_blog( $user->ID ) ) {
return $error;
}
return $user;
}
/**
* Checks if a given request has access to read a user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
*/
public function get_item_permissions_check( $request ) {
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
$types = get_post_types( array( 'show_in_rest' => true ), 'names' );
if ( get_current_user_id() === $user->ID ) {
return true;
}
if ( 'edit' === $request['context'] && ! current_user_can( 'edit_user', $user->ID ) ) {
return new WP_Error(
'rest_forbidden_context',
__( 'Sorry, you are not allowed to edit this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
if ( ! current_user_can( 'edit_user', $user->ID ) && ! current_user_can( 'list_users' ) && ! count_user_posts( $user->ID, $types ) ) {
return new WP_Error(
'rest_user_cannot_view',
__( 'Sorry, you are not allowed to list users.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Retrieves a single user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_item( $request ) {
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
$user = $this->prepare_item_for_response( $user, $request );
$response = rest_ensure_response( $user );
return $response;
}
/**
* Retrieves the current user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function get_current_item( $request ) {
$current_user_id = get_current_user_id();
if ( empty( $current_user_id ) ) {
return new WP_Error(
'rest_not_logged_in',
__( 'You are not currently logged in.' ),
array( 'status' => 401 )
);
}
$user = wp_get_current_user();
$response = $this->prepare_item_for_response( $user, $request );
$response = rest_ensure_response( $response );
return $response;
}
/**
* Checks if a given request has access create users.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
*/
public function create_item_permissions_check( $request ) {
if ( ! current_user_can( 'create_users' ) ) {
return new WP_Error(
'rest_cannot_create_user',
__( 'Sorry, you are not allowed to create new users.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Creates a single user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function create_item( $request ) {
if ( ! empty( $request['id'] ) ) {
return new WP_Error(
'rest_user_exists',
__( 'Cannot create existing user.' ),
array( 'status' => 400 )
);
}
$schema = $this->get_item_schema();
if ( ! empty( $request['roles'] ) && ! empty( $schema['properties']['roles'] ) ) {
$check_permission = $this->check_role_update( $request['id'], $request['roles'] );
if ( is_wp_error( $check_permission ) ) {
return $check_permission;
}
}
$user = $this->prepare_item_for_database( $request );
if ( is_multisite() ) {
$ret = wpmu_validate_user_signup( $user->user_login, $user->user_email );
if ( is_wp_error( $ret['errors'] ) && $ret['errors']->has_errors() ) {
$error = new WP_Error(
'rest_invalid_param',
__( 'Invalid user parameter(s).' ),
array( 'status' => 400 )
);
foreach ( $ret['errors']->errors as $code => $messages ) {
foreach ( $messages as $message ) {
$error->add( $code, $message );
}
$error_data = $error->get_error_data( $code );
if ( $error_data ) {
$error->add_data( $error_data, $code );
}
}
return $error;
}
}
if ( is_multisite() ) {
$user_id = wpmu_create_user( $user->user_login, $user->user_pass, $user->user_email );
if ( ! $user_id ) {
return new WP_Error(
'rest_user_create',
__( 'Error creating new user.' ),
array( 'status' => 500 )
);
}
$user->ID = $user_id;
$user_id = wp_update_user( wp_slash( (array) $user ) );
if ( is_wp_error( $user_id ) ) {
return $user_id;
}
$result = add_user_to_blog( get_site()->id, $user_id, '' );
if ( is_wp_error( $result ) ) {
return $result;
}
} else {
$user_id = wp_insert_user( wp_slash( (array) $user ) );
if ( is_wp_error( $user_id ) ) {
return $user_id;
}
}
$user = get_user_by( 'id', $user_id );
/**
* Fires immediately after a user is created or updated via the REST API.
*
* @since 4.7.0
*
* @param WP_User $user Inserted or updated user object.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating a user, false when updating.
*/
do_action( 'rest_insert_user', $user, $request, true );
if ( ! empty( $request['roles'] ) && ! empty( $schema['properties']['roles'] ) ) {
array_map( array( $user, 'add_role' ), $request['roles'] );
}
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $user_id );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$user = get_user_by( 'id', $user_id );
$fields_update = $this->update_additional_fields_for_object( $user, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'edit' );
/**
* Fires after a user is completely created or updated via the REST API.
*
* @since 5.0.0
*
* @param WP_User $user Inserted or updated user object.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating a user, false when updating.
*/
do_action( 'rest_after_insert_user', $user, $request, true );
$response = $this->prepare_item_for_response( $user, $request );
$response = rest_ensure_response( $response );
$response->set_status( 201 );
$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user_id ) ) );
return $response;
}
/**
* Checks if a given request has access to update a user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
*/
public function update_item_permissions_check( $request ) {
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
if ( ! empty( $request['roles'] ) ) {
if ( ! current_user_can( 'promote_user', $user->ID ) ) {
return new WP_Error(
'rest_cannot_edit_roles',
__( 'Sorry, you are not allowed to edit roles of this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
$request_params = array_keys( $request->get_params() );
sort( $request_params );
/*
* If only 'id' and 'roles' are specified (we are only trying to
* edit roles), then only the 'promote_user' cap is required.
*/
if ( array( 'id', 'roles' ) === $request_params ) {
return true;
}
}
if ( ! current_user_can( 'edit_user', $user->ID ) ) {
return new WP_Error(
'rest_cannot_edit',
__( 'Sorry, you are not allowed to edit this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Updates a single user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function update_item( $request ) {
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
$id = $user->ID;
$owner_id = false;
if ( is_string( $request['email'] ) ) {
$owner_id = email_exists( $request['email'] );
}
if ( $owner_id && $owner_id !== $id ) {
return new WP_Error(
'rest_user_invalid_email',
__( 'Invalid email address.' ),
array( 'status' => 400 )
);
}
if ( ! empty( $request['username'] ) && $request['username'] !== $user->user_login ) {
return new WP_Error(
'rest_user_invalid_argument',
__( 'Username is not editable.' ),
array( 'status' => 400 )
);
}
if ( ! empty( $request['slug'] ) && $request['slug'] !== $user->user_nicename && get_user_by( 'slug', $request['slug'] ) ) {
return new WP_Error(
'rest_user_invalid_slug',
__( 'Invalid slug.' ),
array( 'status' => 400 )
);
}
if ( ! empty( $request['roles'] ) ) {
$check_permission = $this->check_role_update( $id, $request['roles'] );
if ( is_wp_error( $check_permission ) ) {
return $check_permission;
}
}
$user = $this->prepare_item_for_database( $request );
// Ensure we're operating on the same user we already checked.
$user->ID = $id;
$user_id = wp_update_user( wp_slash( (array) $user ) );
if ( is_wp_error( $user_id ) ) {
return $user_id;
}
$user = get_user_by( 'id', $user_id );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
do_action( 'rest_insert_user', $user, $request, false );
if ( ! empty( $request['roles'] ) ) {
array_map( array( $user, 'add_role' ), $request['roles'] );
}
$schema = $this->get_item_schema();
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $id );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$user = get_user_by( 'id', $user_id );
$fields_update = $this->update_additional_fields_for_object( $user, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'edit' );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
do_action( 'rest_after_insert_user', $user, $request, false );
$response = $this->prepare_item_for_response( $user, $request );
$response = rest_ensure_response( $response );
return $response;
}
/**
* Checks if a given request has access to update the current user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
*/
public function update_current_item_permissions_check( $request ) {
$request['id'] = get_current_user_id();
return $this->update_item_permissions_check( $request );
}
/**
* Updates the current user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function update_current_item( $request ) {
$request['id'] = get_current_user_id();
return $this->update_item( $request );
}
/**
* Checks if a given request has access delete a user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
*/
public function delete_item_permissions_check( $request ) {
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
if ( ! current_user_can( 'delete_user', $user->ID ) ) {
return new WP_Error(
'rest_user_cannot_delete',
__( 'Sorry, you are not allowed to delete this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Deletes a single user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function delete_item( $request ) {
// We don't support delete requests in multisite.
if ( is_multisite() ) {
return new WP_Error(
'rest_cannot_delete',
__( 'The user cannot be deleted.' ),
array( 'status' => 501 )
);
}
$user = $this->get_user( $request['id'] );
if ( is_wp_error( $user ) ) {
return $user;
}
$id = $user->ID;
$reassign = false === $request['reassign'] ? null : absint( $request['reassign'] );
$force = isset( $request['force'] ) ? (bool) $request['force'] : false;
// We don't support trashing for users.
if ( ! $force ) {
return new WP_Error(
'rest_trash_not_supported',
/* translators: %s: force=true */
sprintf( __( "Users do not support trashing. Set '%s' to delete." ), 'force=true' ),
array( 'status' => 501 )
);
}
if ( ! empty( $reassign ) ) {
if ( $reassign === $id || ! get_userdata( $reassign ) ) {
return new WP_Error(
'rest_user_invalid_reassign',
__( 'Invalid user ID for reassignment.' ),
array( 'status' => 400 )
);
}
}
$request->set_param( 'context', 'edit' );
$previous = $this->prepare_item_for_response( $user, $request );
// Include user admin functions to get access to wp_delete_user().
require_once ABSPATH . 'wp-admin/includes/user.php';
$result = wp_delete_user( $id, $reassign );
if ( ! $result ) {
return new WP_Error(
'rest_cannot_delete',
__( 'The user cannot be deleted.' ),
array( 'status' => 500 )
);
}
$response = new WP_REST_Response();
$response->set_data(
array(
'deleted' => true,
'previous' => $previous->get_data(),
)
);
/**
* Fires immediately after a user is deleted via the REST API.
*
* @since 4.7.0
*
* @param WP_User $user The user data.
* @param WP_REST_Response $response The response returned from the API.
* @param WP_REST_Request $request The request sent to the API.
*/
do_action( 'rest_delete_user', $user, $response, $request );
return $response;
}
/**
* Checks if a given request has access to delete the current user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
*/
public function delete_current_item_permissions_check( $request ) {
$request['id'] = get_current_user_id();
return $this->delete_item_permissions_check( $request );
}
/**
* Deletes the current user.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function delete_current_item( $request ) {
$request['id'] = get_current_user_id();
return $this->delete_item( $request );
}
/**
* Prepares a single user output for response.
*
* @since 4.7.0
* @since 5.9.0 Renamed `$user` to `$item` to match parent class for PHP 8 named parameter support.
*
* @param WP_User $item User object.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response Response object.
*/
public function prepare_item_for_response( $item, $request ) {
// Restores the more descriptive, specific name for use within this method.
$user = $item;
// Don't prepare the response body for HEAD requests.
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
return apply_filters( 'rest_prepare_user', new WP_REST_Response( array() ), $user, $request );
}
$fields = $this->get_fields_for_response( $request );
$data = array();
if ( in_array( 'id', $fields, true ) ) {
$data['id'] = $user->ID;
}
if ( in_array( 'username', $fields, true ) ) {
$data['username'] = $user->user_login;
}
if ( in_array( 'name', $fields, true ) ) {
$data['name'] = $user->display_name;
}
if ( in_array( 'first_name', $fields, true ) ) {
$data['first_name'] = $user->first_name;
}
if ( in_array( 'last_name', $fields, true ) ) {
$data['last_name'] = $user->last_name;
}
if ( in_array( 'email', $fields, true ) ) {
$data['email'] = $user->user_email;
}
if ( in_array( 'url', $fields, true ) ) {
$data['url'] = $user->user_url;
}
if ( in_array( 'description', $fields, true ) ) {
$data['description'] = $user->description;
}
if ( in_array( 'link', $fields, true ) ) {
$data['link'] = get_author_posts_url( $user->ID, $user->user_nicename );
}
if ( in_array( 'locale', $fields, true ) ) {
$data['locale'] = get_user_locale( $user );
}
if ( in_array( 'nickname', $fields, true ) ) {
$data['nickname'] = $user->nickname;
}
if ( in_array( 'slug', $fields, true ) ) {
$data['slug'] = $user->user_nicename;
}
if ( in_array( 'roles', $fields, true ) && ( current_user_can( 'list_users' ) || current_user_can( 'edit_user', $user->ID ) ) ) {
// Defensively call array_values() to ensure an array is returned.
$data['roles'] = array_values( $user->roles );
}
if ( in_array( 'registered_date', $fields, true ) ) {
$data['registered_date'] = gmdate( 'c', strtotime( $user->user_registered ) );
}
if ( in_array( 'capabilities', $fields, true ) ) {
$data['capabilities'] = (object) $user->allcaps;
}
if ( in_array( 'extra_capabilities', $fields, true ) ) {
$data['extra_capabilities'] = (object) $user->caps;
}
if ( in_array( 'avatar_urls', $fields, true ) ) {
$data['avatar_urls'] = rest_get_avatar_urls( $user );
}
if ( in_array( 'meta', $fields, true ) ) {
$data['meta'] = $this->meta->get_value( $user->ID, $request );
}
$context = ! empty( $request['context'] ) ? $request['context'] : 'embed';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
// Wrap the data in a response object.
$response = rest_ensure_response( $data );
if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
$response->add_links( $this->prepare_links( $user ) );
}
/**
* Filters user data returned from the REST API.
*
* @since 4.7.0
*
* @param WP_REST_Response $response The response object.
* @param WP_User $user User object used to create response.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( 'rest_prepare_user', $response, $user, $request );
}
/**
* Prepares links for the user request.
*
* @since 4.7.0
*
* @param WP_User $user User object.
* @return array Links for the given user.
*/
protected function prepare_links( $user ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user->ID ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
),
);
return $links;
}
/**
* Prepares a single user for creation or update.
*
* @since 4.7.0
*
* @param WP_REST_Request $request Request object.
* @return object User object.
*/
protected function prepare_item_for_database( $request ) {
$prepared_user = new stdClass();
$schema = $this->get_item_schema();
// Required arguments.
if ( isset( $request['email'] ) && ! empty( $schema['properties']['email'] ) ) {
$prepared_user->user_email = $request['email'];
}
if ( isset( $request['username'] ) && ! empty( $schema['properties']['username'] ) ) {
$prepared_user->user_login = $request['username'];
}
if ( isset( $request['password'] ) && ! empty( $schema['properties']['password'] ) ) {
$prepared_user->user_pass = $request['password'];
}
// Optional arguments.
if ( isset( $request['id'] ) ) {
$prepared_user->ID = absint( $request['id'] );
}
if ( isset( $request['name'] ) && ! empty( $schema['properties']['name'] ) ) {
$prepared_user->display_name = $request['name'];
}
if ( isset( $request['first_name'] ) && ! empty( $schema['properties']['first_name'] ) ) {
$prepared_user->first_name = $request['first_name'];
}
if ( isset( $request['last_name'] ) && ! empty( $schema['properties']['last_name'] ) ) {
$prepared_user->last_name = $request['last_name'];
}
if ( isset( $request['nickname'] ) && ! empty( $schema['properties']['nickname'] ) ) {
$prepared_user->nickname = $request['nickname'];
}
if ( isset( $request['slug'] ) && ! empty( $schema['properties']['slug'] ) ) {
$prepared_user->user_nicename = $request['slug'];
}
if ( isset( $request['description'] ) && ! empty( $schema['properties']['description'] ) ) {
$prepared_user->description = $request['description'];
}
if ( isset( $request['url'] ) && ! empty( $schema['properties']['url'] ) ) {
$prepared_user->user_url = $request['url'];
}
if ( isset( $request['locale'] ) && ! empty( $schema['properties']['locale'] ) ) {
$prepared_user->locale = $request['locale'];
}
// Setting roles will be handled outside of this function.
if ( isset( $request['roles'] ) ) {
$prepared_user->role = false;
}
/**
* Filters user data before insertion via the REST API.
*
* @since 4.7.0
*
* @param object $prepared_user User object.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( 'rest_pre_insert_user', $prepared_user, $request );
}
/**
* Determines if the current user is allowed to make the desired roles change.
*
* @since 4.7.0
*
* @global WP_Roles $wp_roles WordPress role management object.
*
* @param int $user_id User ID.
* @param array $roles New user roles.
* @return true|WP_Error True if the current user is allowed to make the role change,
* otherwise a WP_Error object.
*/
protected function check_role_update( $user_id, $roles ) {
global $wp_roles;
foreach ( $roles as $role ) {
if ( ! isset( $wp_roles->role_objects[ $role ] ) ) {
return new WP_Error(
'rest_user_invalid_role',
/* translators: %s: Role key. */
sprintf( __( 'The role %s does not exist.' ), $role ),
array( 'status' => 400 )
);
}
$potential_role = $wp_roles->role_objects[ $role ];
/*
* Don't let anyone with 'edit_users' (admins) edit their own role to something without it.
* Multisite super admins can freely edit their blog roles -- they possess all caps.
*/
if ( ! ( is_multisite()
&& current_user_can( 'manage_sites' ) )
&& get_current_user_id() === $user_id
&& ! $potential_role->has_cap( 'edit_users' )
) {
return new WP_Error(
'rest_user_invalid_role',
__( 'Sorry, you are not allowed to give users that role.' ),
array( 'status' => rest_authorization_required_code() )
);
}
// Include user admin functions to get access to get_editable_roles().
require_once ABSPATH . 'wp-admin/includes/user.php';
// The new role must be editable by the logged-in user.
$editable_roles = get_editable_roles();
if ( empty( $editable_roles[ $role ] ) ) {
return new WP_Error(
'rest_user_invalid_role',
__( 'Sorry, you are not allowed to give users that role.' ),
array( 'status' => 403 )
);
}
}
return true;
}
/**
* Check a username for the REST API.
*
* Performs a couple of checks like edit_user() in wp-admin/includes/user.php.
*
* @since 4.7.0
*
* @param string $value The username submitted in the request.
* @param WP_REST_Request $request Full details about the request.
* @param string $param The parameter name.
* @return string|WP_Error The sanitized username, if valid, otherwise an error.
*/
public function check_username( $value, $request, $param ) {
$username = (string) $value;
if ( ! validate_username( $username ) ) {
return new WP_Error(
'rest_user_invalid_username',
__( 'This username is invalid because it uses illegal characters. Please enter a valid username.' ),
array( 'status' => 400 )
);
}
/** This filter is documented in wp-includes/user.php */
$illegal_logins = (array) apply_filters( 'illegal_user_logins', array() );
if ( in_array( strtolower( $username ), array_map( 'strtolower', $illegal_logins ), true ) ) {
return new WP_Error(
'rest_user_invalid_username',
__( 'Sorry, that username is not allowed.' ),
array( 'status' => 400 )
);
}
return $username;
}
/**
* Check a user password for the REST API.
*
* Performs a couple of checks like edit_user() in wp-admin/includes/user.php.
*
* @since 4.7.0
*
* @param string $value The password submitted in the request.
* @param WP_REST_Request $request Full details about the request.
* @param string $param The parameter name.
* @return string|WP_Error The sanitized password, if valid, otherwise an error.
*/
public function check_user_password(
#[\SensitiveParameter]
$value,
$request,
$param
) {
$password = (string) $value;
if ( empty( $password ) ) {
return new WP_Error(
'rest_user_invalid_password',
__( 'Passwords cannot be empty.' ),
array( 'status' => 400 )
);
}
if ( str_contains( $password, '\\' ) ) {
return new WP_Error(
'rest_user_invalid_password',
sprintf(
/* translators: %s: The '\' character. */
__( 'Passwords cannot contain the "%s" character.' ),
'\\'
),
array( 'status' => 400 )
);
}
return $password;
}
/**
* Retrieves the user's schema, conforming to JSON Schema.
*
* @since 4.7.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'user',
'type' => 'object',
'properties' => array(
'id' => array(
'description' => __( 'Unique identifier for the user.' ),
'type' => 'integer',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'username' => array(
'description' => __( 'Login name for the user.' ),
'type' => 'string',
'context' => array( 'edit' ),
'required' => true,
'arg_options' => array(
'sanitize_callback' => array( $this, 'check_username' ),
),
),
'name' => array(
'description' => __( 'Display name for the user.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'first_name' => array(
'description' => __( 'First name for the user.' ),
'type' => 'string',
'context' => array( 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'last_name' => array(
'description' => __( 'Last name for the user.' ),
'type' => 'string',
'context' => array( 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'email' => array(
'description' => __( 'The email address for the user.' ),
'type' => 'string',
'format' => 'email',
'context' => array( 'edit' ),
'required' => true,
),
'url' => array(
'description' => __( 'URL of the user.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'embed', 'view', 'edit' ),
),
'description' => array(
'description' => __( 'Description of the user.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
),
'link' => array(
'description' => __( 'Author URL of the user.' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'locale' => array(
'description' => __( 'Locale for the user.' ),
'type' => 'string',
'enum' => array_merge( array( '', 'en_US' ), get_available_languages() ),
'context' => array( 'edit' ),
),
'nickname' => array(
'description' => __( 'The nickname for the user.' ),
'type' => 'string',
'context' => array( 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'slug' => array(
'description' => __( 'An alphanumeric identifier for the user.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'arg_options' => array(
'sanitize_callback' => array( $this, 'sanitize_slug' ),
),
),
'registered_date' => array(
'description' => __( 'Registration date for the user.' ),
'type' => 'string',
'format' => 'date-time',
'context' => array( 'edit' ),
'readonly' => true,
),
'roles' => array(
'description' => __( 'Roles assigned to the user.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
'context' => array( 'edit' ),
),
'password' => array(
'description' => __( 'Password for the user (never included).' ),
'type' => 'string',
'context' => array(), // Password is never displayed.
'required' => true,
'arg_options' => array(
'sanitize_callback' => array( $this, 'check_user_password' ),
),
),
'capabilities' => array(
'description' => __( 'All capabilities assigned to the user.' ),
'type' => 'object',
'context' => array( 'edit' ),
'readonly' => true,
),
'extra_capabilities' => array(
'description' => __( 'Any extra capabilities assigned to the user.' ),
'type' => 'object',
'context' => array( 'edit' ),
'readonly' => true,
),
),
);
if ( get_option( 'show_avatars' ) ) {
$avatar_properties = array();
$avatar_sizes = rest_get_avatar_sizes();
foreach ( $avatar_sizes as $size ) {
$avatar_properties[ $size ] = array(
/* translators: %d: Avatar image size in pixels. */
'description' => sprintf( __( 'Avatar URL with image size of %d pixels.' ), $size ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'embed', 'view', 'edit' ),
);
}
$schema['properties']['avatar_urls'] = array(
'description' => __( 'Avatar URLs for the user.' ),
'type' => 'object',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
'properties' => $avatar_properties,
);
}
$schema['properties']['meta'] = $this->meta->get_field_schema();
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
/**
* Retrieves the query params for collections.
*
* @since 4.7.0
*
* @return array Collection parameters.
*/
public function get_collection_params() {
$query_params = parent::get_collection_params();
$query_params['context']['default'] = 'view';
$query_params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
),
'default' => array(),
);
$query_params['include'] = array(
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
),
'default' => array(),
);
$query_params['offset'] = array(
'description' => __( 'Offset the result set by a specific number of items.' ),
'type' => 'integer',
);
$query_params['order'] = array(
'default' => 'asc',
'description' => __( 'Order sort attribute ascending or descending.' ),
'enum' => array( 'asc', 'desc' ),
'type' => 'string',
);
$query_params['orderby'] = array(
'default' => 'name',
'description' => __( 'Sort collection by user attribute.' ),
'enum' => array(
'id',
'include',
'name',
'registered_date',
'slug',
'include_slugs',
'email',
'url',
),
'type' => 'string',
);
$query_params['slug'] = array(
'description' => __( 'Limit result set to users with one or more specific slugs.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
);
$query_params['roles'] = array(
'description' => __( 'Limit result set to users matching at least one specific role provided. Accepts csv list or single role.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
);
$query_params['capabilities'] = array(
'description' => __( 'Limit result set to users matching at least one specific capability provided. Accepts csv list or single capability.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
);
$query_params['who'] = array(
'description' => __( 'Limit result set to users who are considered authors.' ),
'type' => 'string',
'enum' => array(
'authors',
),
);
$query_params['has_published_posts'] = array(
'description' => __( 'Limit result set to users who have published posts.' ),
'type' => array( 'boolean', 'array' ),
'items' => array(
'type' => 'string',
'enum' => get_post_types( array( 'show_in_rest' => true ), 'names' ),
),
);
$query_params['search_columns'] = array(
'default' => array(),
'description' => __( 'Array of column names to be searched.' ),
'type' => 'array',
'items' => array(
'enum' => array( 'email', 'name', 'id', 'username', 'slug' ),
'type' => 'string',
),
);
/**
* Filters REST API collection parameters for the users controller.
*
* This filter registers the collection parameter, but does not map the
* collection parameter to an internal WP_User_Query parameter. Use the
* `rest_user_query` filter to set WP_User_Query arguments.
*
* @since 4.7.0
*
* @param array $query_params JSON Schema-formatted collection parameters.
*/
return apply_filters( 'rest_user_collection_params', $query_params );
}
}
PK \~J ~J &